diff --git a/.github/workflows/deploy_hosted.yml b/.github/workflows/deploy_hosted.yml
new file mode 100644
index 0000000000..f71225bf07
--- /dev/null
+++ b/.github/workflows/deploy_hosted.yml
@@ -0,0 +1,65 @@
+name: Deploy develop on dev.mapcomplete.org
+on:
+ - push
+ - pull_request
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+
+ - name: Set up Node.js
+ uses: actions/setup-node@v3
+ with:
+ node-version: "20"
+ cache: "npm"
+ cache-dependency-path: package-lock.json
+
+ - name: install deps
+ run: npm ci
+ shell: bash
+
+ - name: create generated dir
+ run: mkdir ./assets/generated
+ shell: bash
+
+ - name: create dependencies
+ run: npm run generate:licenses; npm run generate:images; npm run generate:charging-stations; npm run generate:service-worker; npm run download:editor-layer-index
+ shell: bash
+
+ - name: sync translations
+ run: npm run generate:translations
+ shell: bash
+
+
+ - name: Prepare deploy
+ run: npm run prepare-deploy
+ shell: bash
+
+ - name: run tests
+ run: |
+ pwd
+ ls
+ # This is the same as `npm run test`, but `vitest` doesn't want to run within npm :shrug:
+ export NODE_OPTIONS="--max-old-space-size=8192"
+ npm run clean:tests
+ npm run generate:doctests 2>&1 | grep -v "No doctests found in"
+ if which vitest
+ then
+ vitest --run test
+ else
+ npm run test
+ fi
+
+ npm run clean:tests
+ shell: bash
+
+ - name: Upload artefact
+ run: |
+ ssh hetzner "mkdir -p /root/staging/${{ github.ref_name }}"
+ scp -r dist/* hetzner:/root/staging/${{ github.ref_name }}/
+ ssh hetzner "rm -rf /root/public/${{ github.ref_name }} && mv /root/staging/${{ github.ref_name }}/ /root/public/"
+
+
+
diff --git a/.github/workflows/validate-pr.yml b/.github/workflows/validate-pr.yml
deleted file mode 100644
index c1724ca9bc..0000000000
--- a/.github/workflows/validate-pr.yml
+++ /dev/null
@@ -1,40 +0,0 @@
-name: Build and validate PR (but don't deploy)
-on:
- pull_request:
-
-jobs:
- build:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
-
- - name: Set up Node.js
- uses: actions/setup-node@v3
- with:
- node-version: "20"
- cache: "npm"
- cache-dependency-path: package-lock.json
-
- - name: install deps
- run: npm ci
- shell: bash
-
- - name: create generated dir
- run: mkdir ./assets/generated
- shell: bash
-
- - name: create dependencies
- run: npm run generate:licenses; npm run generate:images; npm run generate:charging-stations; npm run generate:service-worker
- shell: bash
-
- - name: sync translations
- run: npm run generate:translations
- shell: bash
-
- - name: generate layeroverview
- run: npm run reset:layeroverview
- shell: bash
-
- - name: run tests
- run: npm run test
- shell: bash
diff --git a/.gitignore b/.gitignore
index 3ddbb46525..2dd4cffb60 100644
--- a/.gitignore
+++ b/.gitignore
@@ -46,9 +46,9 @@ error_changeset_*
# Built Visual Studio Code Extensions
*.vsix
-public/*.webmanifest
public/assets/generated/
public/assets/langs/*
android/
dist-full/
public/assets/icons/*.webp
+uploaded_images.json
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 0eedd13233..aa73d8edf8 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -53,8 +53,5 @@
"[svelte]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
- "editor.formatOnSave": true,
- "files.associations": {
- "*.protojson": "json"
- }
+ "editor.formatOnSave": true
}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fbd4b7cb5b..84d77cf9a8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,77 @@
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.47.11](https://github.com/pietervdvn/mapcomplete/compare/v0.47.10...v0.47.11) (2024-11-28)
+
+
+### Features
+
+* allow to disable questions (and to enable them again), fix [#256](https://github.com/pietervdvn/MapComplete/issues/256) ([93ebdd8](https://github.com/pietervdvn/mapcomplete/commits93ebdd8e1688d2424f0e67d03271d46b4c6640b9))
+
+
+### Bug Fixes
+
+* add prevent-defaults ([afce4cb](https://github.com/pietervdvn/mapcomplete/commitsafce4cb5ba6c77c3e076b5390640eb5ed505cf64))
+* allow to move items more then 50 meter if relocated ([f63f886](https://github.com/pietervdvn/mapcomplete/commitsf63f886ea57d5ca2fca352b455a4d833537422a5))
+* apply refactoring ([140e966](https://github.com/pietervdvn/mapcomplete/commits140e966de12689b374acc1ec7feaf69065bb1250))
+* attempt to fix image upload on stripped coordinates, see [#2202](https://github.com/pietervdvn/MapComplete/issues/2202) ([a94a7ec](https://github.com/pietervdvn/mapcomplete/commitsa94a7ecd7162b5f49f689d77c5e40219ae7fda05))
+* don't show all items if favourites is shown ([3292307](https://github.com/pietervdvn/mapcomplete/commits32923072081961b5ef9b899267be99b354265d59))
+* fix [#2254](https://github.com/pietervdvn/MapComplete/issues/2254); an image carousel with a different key would not show up due to caching ([c0b11a8](https://github.com/pietervdvn/mapcomplete/commitsc0b11a81e91db1c4eb130db1a722e20211f4ba5e))
+* fix [#2272](https://github.com/pietervdvn/MapComplete/issues/2272) : correct link ([44355f5](https://github.com/pietervdvn/mapcomplete/commits44355f566762a234942b678a21b8686341b2087b))
+* fix [#2278](https://github.com/pietervdvn/MapComplete/issues/2278) ([540e2c2](https://github.com/pietervdvn/mapcomplete/commits540e2c227e5327a501c8ab46fc8c56d0d4bc27bc))
+* fix [#2281](https://github.com/pietervdvn/MapComplete/issues/2281) ([8ef7af6](https://github.com/pietervdvn/mapcomplete/commits8ef7af613f20f265386ccb3d301c43ff49108cb1))
+
+
+### Theme improvements
+
+* **maps:** add tactile maps and tactile models to map theme, fix [#2277](https://github.com/pietervdvn/MapComplete/issues/2277) ([12926e1](https://github.com/pietervdvn/mapcomplete/commits12926e1e9cc3fef81811b6df011f83e2013d3ad5))
+* **stairs:** fix [#2248](https://github.com/pietervdvn/MapComplete/issues/2248) ([a0c63b2](https://github.com/pietervdvn/mapcomplete/commitsa0c63b273423bef6a3aba1106880015b135e4542))
+* **surveillance:** fix tagging ([208d7ec](https://github.com/pietervdvn/mapcomplete/commits208d7ecf4e4386ddbd9d58a71a0b6e4fcb26beaa))
+
+### [0.47.10](https://github.com/pietervdvn/mapcomplete/compare/v0.47.9...v0.47.10) (2024-11-14)
+
+
+### Bug Fixes
+
+* actually download all OSM-data when downloading as geojson or CSV ([05298c2](https://github.com/pietervdvn/mapcomplete/commits05298c2498bb908860f49f057b7466f4a8feb5ba))
+* don't show `maxstay=30 days` in velopark, this is actually 'unknown' ([d2237cf](https://github.com/pietervdvn/mapcomplete/commitsd2237cf26c1e3af034f0c3b72bd5ffa878ef1c64))
+* fix image upload ([f1106ad](https://github.com/pietervdvn/mapcomplete/commitsf1106ad4a816c9fb84a92974cb7d88e9aae7633b))
+
+
+### Theme improvements
+
+* **surveillance:** add doorbell as option ([88a4bd5](https://github.com/pietervdvn/mapcomplete/commits88a4bd561952b3d9d0cd8e4ebaab123b739909e8))
+
+### [0.47.9](https://github.com/pietervdvn/mapcomplete/compare/v0.47.8...v0.47.9) (2024-11-07)
+
+
+### Features
+
+* **filters:** show tags that are filtered on, deal with multi-answer tags to allow having this option with auto-filters ([69a6ec6](https://github.com/pietervdvn/mapcomplete/commits69a6ec6b0291bf1a5ec0bdcece605c7cf9f6ea0a))
+
+
+### Bug Fixes
+
+* better support for complicated regex tags ([b4817f7](https://github.com/pietervdvn/mapcomplete/commitsb4817f7a7faafffe716619a4d6908c013d58efd6))
+* build ([70612f1](https://github.com/pietervdvn/mapcomplete/commits70612f1c12ef69209205a29828694c16a9bbc177))
+* build by fixing licenses ([62936b9](https://github.com/pietervdvn/mapcomplete/commits62936b916b238f7ddf4edb841383d4e2cb1bf3da))
+* deal with dashes in the path ([5127609](https://github.com/pietervdvn/mapcomplete/commits51276091203d48cecb154271e69be0ce784ed01d))
+* fix build by having correct regextag.asJson() ([0dd96f4](https://github.com/pietervdvn/mapcomplete/commits0dd96f469b8ed7fd83da4543998b0b473bcc2206))
+* fix fediverse link ([3683780](https://github.com/pietervdvn/mapcomplete/commits3683780f9d19016ee0972cffb6ee55997a0b60c5))
+* hide items if the layer is disabled and favourites is enabled ([7bdd308](https://github.com/pietervdvn/mapcomplete/commits7bdd30879b870406cf5ebf3a23edfc3fbeb52a47))
+* increase timeout when opening a new POI ([e8e4ae1](https://github.com/pietervdvn/mapcomplete/commitse8e4ae1f47514b1b7769e701bdf5a7581c231aa8))
+* show favourites in loaded layers if favourites are enabled ([e65f61d](https://github.com/pietervdvn/mapcomplete/commitse65f61d2962eba8301afa51e27f0e085e8db2ff7))
+* when using Chronic, check the `aslong` condition before actually running instead of using it to reset the clock. ([10e9416](https://github.com/pietervdvn/mapcomplete/commits10e9416f8f1abe4cda334242821157bd7c486986))
+
+
+### Theme improvements
+
+* **education:** add images, move contact information up ([d77bb7e](https://github.com/pietervdvn/mapcomplete/commitsd77bb7e22525aef3b64ce3a9aa57a39351ebb441))
+* **memorial:** add filter on type of memorial, remove obsolete 'memorial:type=stolperstein' ([1415fcd](https://github.com/pietervdvn/mapcomplete/commits1415fcdfecb4be757ea9611b08a1b473e5d50be7))
+* **playgrounds:** don't show counts for small POI, only for playgrounds; make icons smaller ([f3335c9](https://github.com/pietervdvn/mapcomplete/commitsf3335c93711bd224ad3dfa611b95a40039596746))
+* **postboxes:** add contact info, add condition for post partner ([8fcc747](https://github.com/pietervdvn/mapcomplete/commits8fcc747370fab69e93fac2e00c1886261cb6e08f))
+* **postboxes:** add option to snap to wall and rendering, add "operator" to post boxes ([f7b5db9](https://github.com/pietervdvn/mapcomplete/commitsf7b5db9ec34676f834a3b2d8966649f09b34c1b1))
+
### [0.47.8](https://github.com/pietervdvn/mapcomplete/compare/v0.47.7...v0.47.8) (2024-11-01)
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 14fa619a67..97c6f4c4c1 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -6,7 +6,7 @@ Hi! Thanks for checking out how to contribute to MapComplete!
There are multiple ways to contribute:
- Translating MapComplete to your own language can be done
- on [the Weblate website](https://hosted.weblate.org/projects/mapcomplete/)
+ on [the Weblate website](https://translate.mapcomplete.org/projects/mapcomplete/)
- If you encounter a bug, the [issue tracker](https://github.com/pietervdvn/MapComplete/issues) is the place to be
- A good start to contribute is to create a single map layer showing features which interest you. Read more about [making your own theme](/Docs/Making_Your_Own_Theme.md).
- Feel free to hop in [our chat channel on matrix](https://app.element.io/#/room/#MapComplete:matrix.org)
diff --git a/Docs/BuiltinIndex.md b/Docs/BuiltinIndex.md
index ae9c4cfb7d..b3e1681976 100644
--- a/Docs/BuiltinIndex.md
+++ b/Docs/BuiltinIndex.md
@@ -40,6 +40,7 @@
- clock
- crossings
- cycleways_and_roads
+ - cyclist_waiting_aid
- defibrillator
- dentist
- disaster_response
@@ -94,6 +95,7 @@
- reception_desk
- recycling
- route_marker
+ - school
- shelter
- shops
- shower
@@ -108,6 +110,8 @@
- street_lamps
- stripclub
- surveillance_camera
+ - tactile_map
+ - tactile_model
- ticket_machine
- ticket_validator
- toilet
@@ -211,11 +215,12 @@
- physiotherapist
- playground
- recycling
- - school
- shops
- souvenir_coin
- souvenir_note
- sports_centre
+ - tactile_map
+ - tactile_model
- tertiary_education
- vending_machine
- veterinary
@@ -241,7 +246,6 @@
- kindergarten_childcare
- physiotherapist
- recycling
- - school
- shops
- sports_centre
- tertiary_education
@@ -268,7 +272,6 @@
- kindergarten_childcare
- physiotherapist
- recycling
- - school
- shops
- sports_centre
- tertiary_education
@@ -319,6 +322,8 @@
- love_hotel
- pharmacy
- police
+ - postoffices
+ - school
- stripclub
- tool_library
- tourism_accomodation
@@ -527,6 +532,10 @@
- climbing_gym
+ ### indoor
+
+ - clock
+
### all_tags
- cycle_highways
@@ -635,6 +644,10 @@
- ticket_machine
- vending_machine
+ ### wheelchair
+
+ - pharmacy
+
### {preset_type_select()}
- police
diff --git a/Docs/BuiltinQuestions.md b/Docs/BuiltinQuestions.md
index 429cd7b166..bd5bd9bfc4 100644
--- a/Docs/BuiltinQuestions.md
+++ b/Docs/BuiltinQuestions.md
@@ -67,6 +67,7 @@ This is a special layer - data is not sourced from OpenStreetMap
- [shower](#shower)
- [preset_description](#preset_description)
- [brand](#brand)
+ - [indoor](#indoor)
2. [Filters](#filters)
## Supported attributes
@@ -107,6 +108,7 @@ This is a special layer - data is not sourced from OpenStreetMap
| The map contains contour lines. The streets are mostly named; the angles, distances etc. are accurate A sketched map with only important ways and POIs. The angles, distances etc. are merely illustrative, not accurate. 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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "region"
- },
- {
- "key": "map_source",
- "description": "Layer 'Maps' shows and asks freeform values for key 'map_source' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme') 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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$ | map_source=osm | map_source=OSM)",
- "value": "no"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag",
- "value": "residential"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag",
- "value": "living_street"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag",
- "value": "motorway"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag",
- "value": "tertiary"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag",
- "value": "unclassified"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag",
- "value": "secondary"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag",
- "value": "primary"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag",
- "value": "trunk"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag",
- "value": "motorway"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag",
- "value": "tertiary_link"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag",
- "value": "secondary_link"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag",
- "value": "primary_link"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag",
- "value": "trunk_link"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Maxspeed showing features with this tag",
- "value": "motorway_link"
- },
- {
- "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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "key": "maxspeed",
- "description": "Layer 'Maxspeed' shows and asks freeform values for key 'maxspeed' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "living_street"
- },
- {
- "key": "memorial",
- "description": "The MapComplete theme Personal theme has a layer Memorials showing features with this tag"
- },
- {
- "key": "historic",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "tree"
- },
- {
- "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 'Personal theme')",
- "value": "tomb"
- },
- {
- "key": "inscription",
- "description": "Layer 'Memorials' shows and asks freeform values for key 'inscription' (in the mapcomplete.org theme 'Personal theme') (This is only shown if memorial!=bench)"
- },
- {
- "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 'Personal theme') (This is only shown if memorial!=bench)",
- "value": "yes"
- },
- {
- "key": "wikidata",
- "description": "Layer 'Memorials' shows and asks freeform values for key 'wikidata' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "subject:wikidata",
- "description": "Layer 'Memorials' shows and asks freeform values for key 'subject:wikidata' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "start_date",
- "description": "Layer 'Memorials' shows and asks freeform values for key 'start_date' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') 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 'Personal theme') (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 'Personal theme') (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 'Personal theme') 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 'Personal theme') (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 'Personal theme') 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 'Personal theme') (This is only shown if amenity=bench & (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork))",
- "value": "memorial"
- },
- {
- "key": "emergency",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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": "leisure",
- "description": "The MapComplete theme Personal theme has a layer Nature reserve showing features with this tag",
- "value": "nature_reserve"
- },
- {
- "key": "boundary",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "key": "access:description",
- "description": "Layer 'Nature reserve' shows and asks freeform values for key 'access:description' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key fee.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key fee.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "private"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key fee.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "permissive"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key fee.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "guided"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key fee.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "operator",
- "description": "Layer 'Nature reserve' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "Natuurpunt"
- },
- {
- "key": "operator",
- "description": "Layer 'Nature reserve' shows operator~^((n|N)atuurpunt.*)$ with a fixed text, namely 'Operated by {operator}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "Agentschap Natuur en Bos"
- },
- {
- "key": "name",
- "description": "Layer 'Nature reserve' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme') (This is only shown if name:nl=)"
- },
- {
- "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 'Personal theme') (This is only shown if name:nl=)",
- "value": "yes"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key name. (This is only shown if name:nl=)",
- "value": ""
- },
- {
- "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 'Personal theme') (This is only shown if access=yes | access=permissive | access=guided)",
- "value": "leashed"
- },
- {
- "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 'Personal theme') (This is only shown if access=yes | access=permissive | access=guided)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if access=yes | access=permissive | access=guided)",
- "value": "yes"
- },
- {
- "key": "website",
- "description": "Layer 'Nature reserve' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Nature reserve' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "curator",
- "description": "Layer 'Nature reserve' shows and asks freeform values for key 'curator' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Nature reserve' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Nature reserve' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "description",
- "description": "Layer 'Nature reserve' shows values with key 'description' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "description:0",
- "description": "Layer 'Nature reserve' shows and asks freeform values for key 'description:0' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "wikidata",
- "description": "Layer 'Nature reserve' shows and asks freeform values for key 'wikidata' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "wikipedia",
- "description": "Layer 'Nature reserve' shows wikipedia~.+ with a fixed text, namely '{wikipedia():max-height:25rem}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key wikidata.",
- "value": ""
- },
- {
- "key": "tower:type",
- "description": "The MapComplete theme Personal theme has a layer Observation towers showing features with this tag",
- "value": "observation"
- },
- {
- "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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "key": "name",
- "description": "Layer 'Observation towers' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "height",
- "description": "Layer 'Observation towers' shows and asks freeform values for key 'height' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "guided"
- },
- {
- "key": "charge",
- "description": "Layer 'Observation towers' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Personal theme') (This is only shown if access=yes | access=guided)"
- },
- {
- "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 'Personal theme') (This is only shown if access=yes | access=guided)",
- "value": "no"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key charge. (This is only shown if access=yes | access=guided)",
- "value": ""
- },
- {
- "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 'Personal theme') (This is only shown if fee=yes | charge~.+)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if fee=yes | charge~.+)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if fee=yes | charge~.+)",
- "value": "yes"
- },
- {
- "key": "website",
- "description": "Layer 'Observation towers' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Observation towers' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "step_count",
- "description": "Layer 'Observation towers' shows and asks freeform values for key 'step_count' (in the mapcomplete.org theme 'Personal theme') (This is only shown if access=yes | access=guided)"
- },
- {
- "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 'Personal theme') (This is only shown if access=yes | access=guided)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if access=yes | access=guided)",
- "value": "no"
- },
- {
- "key": "operator",
- "description": "Layer 'Observation towers' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme') (This is only shown if elevator=yes & (access=yes | access=guided))",
- "value": "designated"
- },
- {
- "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 'Personal theme') (This is only shown if elevator=yes & (access=yes | access=guided))",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if elevator=yes & (access=yes | access=guided))",
- "value": "limited"
- },
- {
- "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 'Personal theme') (This is only shown if elevator=yes & (access=yes | access=guided))",
- "value": "no"
- },
- {
- "key": "wikidata",
- "description": "Layer 'Observation towers' shows and asks freeform values for key 'wikidata' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "wikipedia",
- "description": "Layer 'Observation towers' shows wikipedia~.+ with a fixed text, namely '{wikipedia():max-height:25rem}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key wikidata.",
- "value": ""
- },
- {
- "key": "leisure",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "customers"
- },
- {
- "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 'Personal theme')",
- "value": "private"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "spring"
- },
- {
- "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 'Personal theme')",
- "value": "summer"
- },
- {
- "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 'Personal theme')",
- "value": "autumn"
- },
- {
- "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 'Personal theme')",
- "value": "winter"
- },
- {
- "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 'Personal theme')",
- "value": "dry_season"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Outdoor Seating' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "key": "website",
- "description": "Layer 'Outdoor Seating' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Outdoor Seating' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (This is only shown if _country!~^(al|be)$)",
- "value": "outside"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Parcel Lockers showing features with this tag",
- "value": "parcel_locker"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Parcel Lockers showing features with this tag",
- "value": "vending_machine"
- },
- {
- "key": "vending",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "key": "brand",
- "description": "Layer 'Parcel Lockers' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator",
- "description": "Layer 'Parcel Lockers' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Parcel Lockers' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "key": "ref",
- "description": "Layer 'Parcel Lockers' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=parcel_locker)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=parcel_locker)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=parcel_locker)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=parcel_locker)",
- "value": "no"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') 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 'Personal theme') (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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "-1"
- },
- {
- "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 'Personal theme')",
- "value": "surface"
- },
- {
- "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 'Personal theme')",
- "value": "street_side"
- },
- {
- "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 'Personal theme')",
- "value": "underground"
- },
- {
- "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 'Personal theme')",
- "value": "multi-storey"
- },
- {
- "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 'Personal theme')",
- "value": "rooftop"
- },
- {
- "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 'Personal theme')",
- "value": "lane"
- },
- {
- "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 'Personal theme')",
- "value": "carports"
- },
- {
- "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 'Personal theme')",
- "value": "garage_boxes"
- },
- {
- "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 'Personal theme')",
- "value": "layby"
- },
- {
- "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 'Personal theme')",
- "value": "sheds"
- },
- {
- "key": "capacity:disabled",
- "description": "Layer 'Parking' shows and asks freeform values for key 'capacity:disabled' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "0"
- },
- {
- "key": "capacity",
- "description": "Layer 'Parking' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key parking_space.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "normal"
- },
- {
- "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 'Personal theme')",
- "value": "disabled"
- },
- {
- "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 'Personal theme')",
- "value": "charging"
- },
- {
- "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 'Personal theme')",
- "value": "delivery"
- },
- {
- "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 'Personal theme')",
- "value": "hgv"
- },
- {
- "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 'Personal theme')",
- "value": "caravan"
- },
- {
- "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 'Personal theme')",
- "value": "bus"
- },
- {
- "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 'Personal theme')",
- "value": "motorcycle"
- },
- {
- "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 'Personal theme')",
- "value": "parent"
- },
- {
- "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 'Personal theme')",
- "value": "staff"
- },
- {
- "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 'Personal theme')",
- "value": "taxi"
- },
- {
- "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 'Personal theme')",
- "value": "trailer"
- },
- {
- "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 'Personal theme')",
- "value": "car_sharing"
- },
- {
- "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 'Personal theme')",
- "value": "1"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Parking Ticket Machines showing features with this tag",
- "value": "vending_machine"
- },
- {
- "key": "vending",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
- "value": "1 EUR"
- },
- {
- "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 'Personal theme') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
- "value": "2 EUR"
- },
- {
- "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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
- "value": "1 CHF"
- },
- {
- "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 'Personal theme') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
- "value": "2 CHF"
- },
- {
- "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 'Personal theme') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
- "value": "5 CHF"
- },
- {
- "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 'Personal theme') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
- "value": "5 EUR"
- },
- {
- "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 'Personal theme') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
- "value": "10 EUR"
- },
- {
- "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 'Personal theme') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
- "value": "20 EUR"
- },
- {
- "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 'Personal theme') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
- "value": "50 EUR"
- },
- {
- "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 'Personal theme') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
- "value": "100 EUR"
- },
- {
- "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 'Personal theme') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
- "value": "200 EUR"
- },
- {
- "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 'Personal theme') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
- "value": "500 EUR"
- },
- {
- "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 'Personal theme') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
- "value": "10 CHF"
- },
- {
- "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 'Personal theme') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
- "value": "20 CHF"
- },
- {
- "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 'Personal theme') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
- "value": "50 CHF"
- },
- {
- "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 'Personal theme') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
- "value": "100 CHF"
- },
- {
- "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 'Personal theme') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
- "value": "200 CHF"
- },
- {
- "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 'Personal theme') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
- "value": "1000 CHF"
- },
- {
- "key": "ref",
- "description": "Layer 'Parking Ticket Machines' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Pedestrian paths showing features with this tag",
- "value": "footway"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Pedestrian paths showing features with this tag",
- "value": "path"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Pedestrian paths showing features with this tag",
- "value": "corridor"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Pedestrian paths showing features with this tag",
- "value": "steps"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "key": "name",
- "description": "Layer 'Pharmacies' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Pharmacies' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "key": "phone",
- "description": "Layer 'Pharmacies' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Pharmacies' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Pharmacies' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:email",
- "description": "Layer 'Pharmacies' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Pharmacies' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Pharmacies' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Pharmacies' shows wheelchair=yes with a fixed text, namely 'This pharmacy is easy to access on a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Pharmacies' shows wheelchair=no with a fixed text, namely 'This pharmacy is hard to access on a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Pharmacies' shows wheelchair=limited with a fixed text, namely 'This pharmacy has limited access for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme')",
- "value": "limited"
- },
- {
- "key": "healthcare",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "key": "name",
- "description": "Layer 'Physiotherapist' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Physiotherapist' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "key": "phone",
- "description": "Layer 'Physiotherapist' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Physiotherapist' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Physiotherapist' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:email",
- "description": "Layer 'Physiotherapist' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Physiotherapist' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Physiotherapist' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "leisure",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "key": "level",
- "description": "Layer 'Picnic tables' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Personal theme') (This is only shown if repeat_on=)"
- },
- {
- "key": "location",
- "description": "Layer 'Picnic tables' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Personal theme') (This is only shown if repeat_on=)",
- "value": "underground"
- },
- {
- "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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Picnic tables' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Personal theme') Picking this answer will delete the key level. (This is only shown if repeat_on=)",
- "value": ""
- },
- {
- "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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "1"
- },
- {
- "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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "-1"
- },
- {
- "key": "material",
- "description": "Layer 'Picnic tables' shows and asks freeform values for key 'material' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "wood"
- },
- {
- "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 'Personal theme')",
- "value": "concrete"
- },
- {
- "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 'Personal theme')",
- "value": "plastic"
- },
- {
- "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 'Personal theme')",
- "value": "metal"
- },
- {
- "key": "leisure",
- "description": "The MapComplete theme Personal theme has a layer Playgrounds showing features with this tag",
- "value": "playground"
- },
- {
- "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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "surface",
- "description": "Layer 'Playgrounds' shows and asks freeform values for key 'surface' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "grass"
- },
- {
- "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 'Personal theme')",
- "value": "sand"
- },
- {
- "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 'Personal theme')",
- "value": "woodchips"
- },
- {
- "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 'Personal theme')",
- "value": "paving_stones"
- },
- {
- "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 'Personal theme')",
- "value": "asphalt"
- },
- {
- "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 'Personal theme')",
- "value": "concrete"
- },
- {
- "key": "surface",
- "description": "Layer 'Playgrounds' shows surface=unpaved with a fixed text, namely 'The surface is unpaved' (in the mapcomplete.org theme 'Personal theme')",
- "value": "unpaved"
- },
- {
- "key": "surface",
- "description": "Layer 'Playgrounds' shows surface=paved with a fixed text, namely 'The surface is paved' (in the mapcomplete.org theme 'Personal theme')",
- "value": "paved"
- },
- {
- "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 'Personal theme')",
- "value": "tartan"
- },
- {
- "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 'Personal theme')",
- "value": "rubber"
- },
- {
- "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 'Personal theme')",
- "value": "fine_gravel"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "min_age",
- "description": "Layer 'Playgrounds' shows and asks freeform values for key 'min_age' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "max_age",
- "description": "Layer 'Playgrounds' shows and asks freeform values for key 'max_age' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator",
- "description": "Layer 'Playgrounds' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "customers"
- },
- {
- "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 'Personal theme')",
- "value": "students"
- },
- {
- "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 'Personal theme')",
- "value": "private"
- },
- {
- "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 'Personal theme')",
- "value": "schoolyard"
- },
- {
- "key": "website",
- "description": "Layer 'Playgrounds' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Playgrounds' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Playgrounds' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Playgrounds' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "limited"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Playgrounds' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "sunrise-sunset"
- },
- {
- "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 'Personal theme')",
- "value": "24/7"
- },
- {
- "key": "check_date",
- "description": "Layer 'Playgrounds' shows and asks freeform values for key 'check_date' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key check_date.",
- "value": ""
- },
- {
- "key": "playground",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "key": "playground",
- "description": "Layer 'Playground equipment' shows and asks freeform values for key 'playground' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "swing"
- },
- {
- "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 'Personal theme')",
- "value": "structure"
- },
- {
- "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 'Personal theme')",
- "value": "slide"
- },
- {
- "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 'Personal theme')",
- "value": "sandpit"
- },
- {
- "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 'Personal theme')",
- "value": "springy"
- },
- {
- "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 'Personal theme')",
- "value": "climbingframe"
- },
- {
- "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 'Personal theme')",
- "value": "seesaw"
- },
- {
- "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 'Personal theme')",
- "value": "playhouse"
- },
- {
- "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 'Personal theme')",
- "value": "roundabout"
- },
- {
- "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 'Personal theme')",
- "value": "basketswing"
- },
- {
- "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 'Personal theme')",
- "value": "zipwire"
- },
- {
- "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 'Personal theme')",
- "value": "horizontal_bar"
- },
- {
- "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 'Personal theme')",
- "value": "hopscotch"
- },
- {
- "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 'Personal theme')",
- "value": "splash_pad"
- },
- {
- "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 'Personal theme')",
- "value": "climbingwall"
- },
- {
- "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 'Personal theme')",
- "value": "map"
- },
- {
- "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 'Personal theme')",
- "value": "bridge"
- },
- {
- "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 'Personal theme')",
- "value": "cushion"
- },
- {
- "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 'Personal theme')",
- "value": "activitypanel"
- },
- {
- "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 'Personal theme')",
- "value": "teenshelter"
- },
- {
- "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 'Personal theme')",
- "value": "funnel_ball"
- },
- {
- "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 'Personal theme')",
- "value": "spinning_circle"
- },
- {
- "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 'Personal theme')",
- "value": "designated"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "limited"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Police stations showing features with this tag",
- "value": "police"
- },
- {
- "key": "police",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "key": "name",
- "description": "Layer 'Police stations' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Police stations' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Police stations' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Police stations' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:email",
- "description": "Layer 'Police stations' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Police stations' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Police stations' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Police stations' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=police)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=police)",
- "value": "no"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Postboxes showing features with this tag",
- "value": "post_box"
- },
- {
- "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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Post offices showing features with this tag",
- "value": "post_office"
- },
- {
- "key": "post_office",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "key": "phone",
- "description": "Layer 'Post offices' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Post offices' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Post offices' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:email",
- "description": "Layer 'Post offices' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Post offices' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Post offices' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Post offices' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "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 'Personal theme') (This is only shown if amenity!=post_office)",
- "value": "post_partner"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key post_office. (This is only shown if amenity!=post_office)",
- "value": ""
- },
- {
- "key": "brand",
- "description": "Layer 'Post offices' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Personal theme') (This is only shown if amenity=post_office)"
- },
- {
- "key": "post_office:brand",
- "description": "Layer 'Post offices' shows and asks freeform values for key 'post_office:brand' (in the mapcomplete.org theme 'Personal theme') (This is only shown if post_office=post_partner)"
- },
- {
- "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 'Personal theme') (This is only shown if post_office=post_partner)",
- "value": "DHL"
- },
- {
- "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 'Personal theme') (This is only shown if post_office=post_partner)",
- "value": "DPD"
- },
- {
- "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 'Personal theme') (This is only shown if post_office=post_partner)",
- "value": "GLS"
- },
- {
- "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 'Personal theme') (This is only shown if post_office=post_partner)",
- "value": "UPS"
- },
- {
- "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 'Personal theme') (This is only shown if post_office=post_partner)",
- "value": "DHL Paketshop"
- },
- {
- "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 'Personal theme') (This is only shown if post_office=post_partner)",
- "value": "Hermes PaketShop"
- },
- {
- "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 'Personal theme') (This is only shown if post_office=post_partner)",
- "value": "PostNL"
- },
- {
- "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 'Personal theme') (This is only shown if post_office=post_partner)",
- "value": "bpost"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "post_office:stamps",
- "description": "Layer 'Post offices' shows and asks freeform values for key 'post_office:stamps' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "separate"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Bookcases showing features with this tag",
- "value": "public_bookcase"
- },
- {
- "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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "key": "name",
- "description": "Layer 'Bookcases' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key name.",
- "value": ""
- },
- {
- "key": "capacity",
- "description": "Layer 'Bookcases' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "books",
- "description": "Layer 'Bookcases' shows and asks freeform values for key 'books' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "children"
- },
- {
- "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 'Personal theme')",
- "value": "adults"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "indoor",
- "description": "Layer 'Bookcases' shows indoor= with a fixed text, namely 'This bookcase is located outdoors' (in the mapcomplete.org theme 'Personal theme') Picking this answer will delete the key indoor.",
- "value": ""
- },
- {
- "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 'Personal theme') (This is only shown if indoor=yes)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if indoor=yes)",
- "value": "customers"
- },
- {
- "key": "operator",
- "description": "Layer 'Bookcases' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "brand",
- "description": "Layer 'Bookcases' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Personal theme') (This is only shown if ref=)"
- },
- {
- "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 'Personal theme') (This is only shown if ref=)",
- "value": "yes"
- },
- {
- "key": "ref",
- "description": "Layer 'Bookcases' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Personal theme') (This is only shown if brand~.+)"
- },
- {
- "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 'Personal theme') (This is only shown if brand~.+)",
- "value": "yes"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key brand. (This is only shown if brand~.+)",
- "value": ""
- },
- {
- "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 'Personal theme') Picking this answer will delete the key ref. (This is only shown if brand~.+)",
- "value": ""
- },
- {
- "key": "start_date",
- "description": "Layer 'Bookcases' shows and asks freeform values for key 'start_date' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Bookcases' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "surface:colour",
- "description": "The MapComplete theme Personal theme has a layer Crossings with rainbow paintings showing features with this tag",
- "value": "rainbow"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Crossings with rainbow paintings showing features with this tag",
- "value": "crossing"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Crossings with rainbow paintings showing features with this tag",
- "value": "footway"
- },
- {
- "key": "footway",
- "description": "The MapComplete theme Personal theme has a layer Crossings with rainbow paintings showing features with this tag",
- "value": "crossing"
- },
- {
- "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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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 'Personal theme')",
- "value": "rainbow"
- },
- {
- "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 'Personal theme')",
- "value": "rainbow"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') 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 'Personal theme') (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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "-1"
- },
- {
- "key": "desk:height",
- "description": "Layer 'Reception desks' shows and asks freeform values for key 'desk:height' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "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 'Personal theme')",
- "value": "container"
- },
- {
- "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 'Personal theme')",
- "value": "centre"
- },
- {
- "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 'Personal theme')",
- "value": "waste_disposal"
- },
- {
- "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 'Personal theme')",
- "value": "pickup_point"
- },
- {
- "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 'Personal theme')",
- "value": "dump"
- },
- {
- "key": "name",
- "description": "Layer 'Recycling' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme') (This is only shown if recycling_type=centre)"
- },
- {
- "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 'Personal theme') (This is only shown if recycling_type=centre)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if recycling_type=container)",
- "value": "underground"
- },
- {
- "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 'Personal theme') (This is only shown if recycling_type=container)",
- "value": "indoor"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key location. (This is only shown if recycling_type=container)",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "operator",
- "description": "Layer 'Recycling' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Recycling' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme') (This is only shown if recycling_type=centre)"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Recycling' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme') (This is only shown if recycling_type=centre)"
- },
- {
- "key": "email",
- "description": "Layer 'Recycling' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme') (This is only shown if recycling_type=centre)"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Recycling' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Personal theme') (This is only shown if recycling_type=centre)"
- },
- {
- "key": "operator:email",
- "description": "Layer 'Recycling' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Personal theme') (This is only shown if recycling_type=centre)"
- },
- {
- "key": "phone",
- "description": "Layer 'Recycling' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme') (This is only shown if recycling_type=centre)"
- },
- {
- "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 'Personal theme') (This is only shown if recycling_type=centre)"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Recycling' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "24/7"
- },
- {
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "key": "access",
- "description": "Layer 'Recycling' shows and asks freeform values for key 'access' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "residents"
- },
- {
- "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 'Personal theme')",
- "value": "private"
- },
- {
- "key": "survey:date",
- "description": "Layer 'Recycling' shows and asks freeform values for key 'survey:date' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key survey:date.",
- "value": ""
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Primary and secondary schools showing features with this tag",
- "value": "school"
- },
- {
- "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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "key": "name",
- "description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Primary and secondary schools' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:email",
- "description": "Layer 'Primary and secondary schools' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Primary and secondary schools' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "capacity",
- "description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme') (This is only shown if _country=be)",
- "value": "kindergarten"
- },
- {
- "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. There exists an automated account on Mastodon which posts a monthly overview of ghost bikes worldwide Er bestaat een geautomatiseerd account op Mastodon dat maandelijks een overzicht van spookfietsen wereldwijd post Es gibt ein Konto auf Mastodon, das monatliche eine weltweite Übersicht von Geisterfahrrädern veröffentlicht Love in the palm of your hand Liebe in der Hand Amor en la palma de tu mano Láska na dlani Láska na dlani L'amour au creux de votre main Liefde in de palm van je hand Un que tothom pogués utilitzar i editar lliurement. Un sol lloc on emmagatzemar tota la informació geogràfica. Llavors tots aquests llocs web amb mapes diferents petits i incompatibles (que sempre estaran desactualitzats) ja no serien necessaris. OpenStreetMap no és el mapa de l'enemic. Les dades del mapa es poden utilitzar gratuïtament (amb atribució i publicació de canvis en aquestes dades). A més a més, tothom pot agregar lliurement noves dades i corregir errors. Aquest lloc web també fa servir OpenStreetMap. Totes les dades provenen d'allà i les teves respostes i correccions també s'afegiran allà. Moltes persones i aplicacions ja utilitzen OpenStreetMap: Organic Maps, OsmAnd, però també els mapes de Facebook, Instagram, Apple i Bing són (en part) impulsats per OpenStreetMap . Takovou, kterou může každý volně používat a upravovat. Jediné místo pro uložení všech geoinformací. Různé, malé, nekompatibilní a zastaralé mapy nejsou nikde potřeba. OpenStreetMap není nepřátelská mapa. Mapová data lze volně používat (s přiřazením a zveřejněním změn těchto dat). Každý může přidávat nová data a opravovat chyby. Tento web používá OpenStreetMap. Všechna data jsou odtud a vaše odpovědi a opravy se používají všude. Mnoho lidí a aplikací již OpenStreetMap používá: Organické mapy, OsmAnd, ale také mapy na Facebooku, Instagramu, Apple-maps a Bing-maps jsou (částečně) poháněny OpenStreetMap. Et som alle kan bruge og redigere frit. Eet sted at gemme al geo-information. Forskellige, små, inkompatible og forældede kort er der ikke brug for nogen steder. OpenStreetMap er ikke fjendens kort. Kortet kan bruges frit (med kreditering og publicering af ændringer af data). Alle kan tilføje mere data og rette fejl. Denne website bruger OpenStreetMap. Al data kommer derfra, og dine svar og rettelser vil blive bruge alle vegne. Mange folk og apps bruger allerede OpenStreetMap: Organic Maps, OsmAnd, men også kortene på Facebook, Instagram, Apple-maps and Bing-maps er (delvist) drevet af OpenStreetMap. Eine Karte, die jeder frei nutzen und bearbeiten kann. Ein einziger Ort, um alle Geoinformationen zu speichern. Unterschiedliche, kleine, inkompatible und veraltete Karten werden nirgendwo gebraucht. OpenStreetMap ist nicht die feindliche Karte. Die Kartendaten können frei verwendet werden (mit Benennung und Veröffentlichung von Änderungen an diesen Daten). Jeder kann neue Daten hinzufügen und Fehler korrigieren. Diese Webseite nutzt OpenStreetMap. Alle Daten stammen von dort, und Ihre Antworten und Korrekturen werden überall verwendet. Viele Menschen und Anwendungen nutzen bereits OpenStreetMap: Organic Maps, OsmAnd; auch die Kartendaten von Facebook, Instagram, Apple-maps und Bing-maps stammen (teilweise) von OpenStreetMap. One that everyone can use and edit freely. A single place to store all geo-info. Different, small, incompatible and outdated maps are not needed anywhere. OpenStreetMap is not the enemy map. The map data can be used freely (with attribution and publication of changes to that data). Everyone can add new data and fix errors. This website uses OpenStreetMap. All the data is from there, and your answers and corrections are used all over. Many people and apps already use OpenStreetMap: Organic Maps, OsmAnd, but also the maps at Facebook, Instagram, Apple-maps and Bing-maps are (partly) powered by OpenStreetMap. Uno que todos pueden usar y editar libremente. Un solo lugar para almacenar toda la información geográfica. No se necesitan mapas diferentes, pequeños, incompatibles y desactualizados en ninguna parte. OpenStreetMap no es el mapa enemigo. Los datos del mapa se pueden usar libremente (con atribución y publicación de cambios a esos datos). Todos pueden agregar nuevos datos y corregir errores. Este sitio web usa OpenStreetMap. Todos los datos provienen de ahí, y tus respuestas y correcciones se usan en todas partes. Muchas personas y aplicaciones ya usan OpenStreetMap: Organic Maps, OsmAnd, pero también los mapas de Facebook, Instagram, Apple Maps y Bing Maps están (parcialmente) impulsados por OpenStreetMap. Utilisable et éditable librement. Une seule et unique plateforme regroupant toutes les informations géographiques ? Toutes ces différentes cartes isolées, incompatibles et obsolètes ne sont plus utiles. OpenStreetMap n’est pas un énième concurrent. Toutes les données de cette carte peuvent être utilisé librement (avec attribution et publication des changements de données). De plus tout le monde est libre d'ajouter de nouvelles données et corriger les erreurs. Ce site utilise également OpenStreetMap. Toutes les données en proviennent et tous les ajouts et modifications y seront également ajoutés. De nombreux individus et applications utilisent déjà OpenStreetMap : Maps.me, OsmAnd, mais aussi les cartes de Facebook, Instagram, Apple Maps et Bing Maps sont (en partie) alimentées par OpenStreetMap
[seasonal](https://wiki.openstreetmap.org/wiki/Key:seasonal) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:seasonal%3Dno) [summer](https://wiki.openstreetmap.org/wiki/Tag:seasonal%3Dsummer) [spring;summer;autumn](https://wiki.openstreetmap.org/wiki/Tag:seasonal%3Dspring;summer;autumn) |
|
[shower](https://wiki.openstreetmap.org/wiki/Key:shower) | Multiple choice | [hot](https://wiki.openstreetmap.org/wiki/Tag:shower%3Dhot) [cold](https://wiki.openstreetmap.org/wiki/Tag:shower%3Dcold) [yes](https://wiki.openstreetmap.org/wiki/Tag:shower%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:shower%3Dno) |
|
[brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [string](../SpecialInputElements.md#string) | |
+|
[indoor](https://wiki.openstreetmap.org/wiki/Key:indoor) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno) |
### questions
Show the questions block at this location
@@ -540,6 +542,13 @@ The question is `Is {title()} part of a bigger brand?`
- *Not part of a bigger brand* is shown if with nobrand=yes
+### indoor
+
+The question is `Is this object located indoors?`
+
+ - *This object is located indoors* is shown if with indoor=yes
+ - *This object is located outdoors* is shown if with indoor=no
+
## Filters
| id | question | osmTags |
diff --git a/Docs/Development_deployment.md b/Docs/Development_deployment.md
index f5091fcfb4..8beafc0a09 100644
--- a/Docs/Development_deployment.md
+++ b/Docs/Development_deployment.md
@@ -106,6 +106,12 @@ If you want to deploy your fork:
2. Copy the entire `dist` folder to where you host your website. Visiting `index.html` gives you the landing page,
visiting `yourwebsite/
[service:bicycle:cleaning:charge](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:charge) | [string](../SpecialInputElements.md#string) | |
|
[charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | |
+|
[automated](https://wiki.openstreetmap.org/wiki/Key:automated) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:automated%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:automated%3Dyes) |
+|
[self_service](https://wiki.openstreetmap.org/wiki/Key:self_service) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:self_service%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:self_service%3Dno) |
### 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
@@ -64,7 +67,7 @@ The question is `How much does it cost to use the cleaning service?`
- *The cleaning service is free to use* is shown if with service:bicycle:cleaning:fee=no
- *Free to use* is shown if with service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge=. _This option cannot be chosen as answer_
-This tagrendering is only visible in the popup if the following condition is met: amenity!=bike_wash & amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+
+This tagrendering is only visible in the popup if the following condition is met: amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+
### bike_cleaning-charge
@@ -74,7 +77,25 @@ The question is `How much does it cost to use the cleaning service?`
- *This cleaning service is free to use* is shown if with fee=no
- *There is a fee to use this cleaning service* is shown if with fee=yes
-This tagrendering is only visible in the popup if the following condition is met: amenity=bike_wash | amenity=bicycle_wash
+This tagrendering is only visible in the popup if the following condition is met: amenity=bicycle_wash
+
+### automated
+
+The question is `Is this bicycle cleaning service automated?`
+
+ - *This is a manual bike washing station* is shown if with automated=no
+ - *This is an automated bike wash* is shown if with automated=yes
+
+This tagrendering is only visible in the popup if the following condition is met: amenity=bicycle_wash
+
+### self_service
+
+The question is `Is this cleaning service self-service?`
+
+ - *This cleaning service is self-service* is shown if with self_service=yes
+ - *This cleaning service is operated by an employee* is shown if with self_service=no
+
+This tagrendering is only visible in the popup if the following condition is met: amenity=bicycle_wash
### leftover-questions
diff --git a/Docs/Layers/clock.md b/Docs/Layers/clock.md
index 03bb9a4341..fd2b5f4961 100644
--- a/Docs/Layers/clock.md
+++ b/Docs/Layers/clock.md
@@ -6,6 +6,7 @@ Layer with public clocks
- This layer is shown at zoomlevel **8** and higher
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: preset `a wall-mounted clock` snaps to this layer (clock.presets[1])
+ - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: preset `a wall-mounted clock, mounted directly on a wall` snaps to this layer (clock.presets[2])
## Table of contents
@@ -16,6 +17,7 @@ Layer with public clocks
- [images](#images)
- [support](#support)
- [display](#display)
+ - [indoor](#indoor)
- [visibility](#visibility)
- [date](#date)
- [thermometer](#thermometer)
@@ -40,6 +42,7 @@ The following options to create new points are included:
- **a clock** which has the following tags:amenity=clock
- **a wall-mounted clock** which has the following tags:amenity=clock & support=wall_mounted (snaps to layers `walls_and_buildings`)
+ - **a wall-mounted clock, mounted directly on a wall** which has the following tags:amenity=clock & support=wall (snaps to layers `walls_and_buildings`)
## Basic tags for this layer
@@ -53,8 +56,9 @@ Elements must match the expression **
[support](https://wiki.openstreetmap.org/wiki/Key:support) | Multiple choice | [pole](https://wiki.openstreetmap.org/wiki/Tag:support%3Dpole) [wall_mounted](https://wiki.openstreetmap.org/wiki/Tag:support%3Dwall_mounted) [billboard](https://wiki.openstreetmap.org/wiki/Tag:support%3Dbillboard) [ground](https://wiki.openstreetmap.org/wiki/Tag:support%3Dground) |
+|
[support](https://wiki.openstreetmap.org/wiki/Key:support) | Multiple choice | [pole](https://wiki.openstreetmap.org/wiki/Tag:support%3Dpole) [wall_mounted](https://wiki.openstreetmap.org/wiki/Tag:support%3Dwall_mounted) [wall](https://wiki.openstreetmap.org/wiki/Tag:support%3Dwall) [billboard](https://wiki.openstreetmap.org/wiki/Tag:support%3Dbillboard) [ground](https://wiki.openstreetmap.org/wiki/Tag:support%3Dground) |
|
[display](https://wiki.openstreetmap.org/wiki/Key:display) | Multiple choice | [analog](https://wiki.openstreetmap.org/wiki/Tag:display%3Danalog) [digital](https://wiki.openstreetmap.org/wiki/Tag:display%3Ddigital) [sundial](https://wiki.openstreetmap.org/wiki/Tag:display%3Dsundial) [unorthodox](https://wiki.openstreetmap.org/wiki/Tag:display%3Dunorthodox) |
+|
[indoor](https://wiki.openstreetmap.org/wiki/Key:indoor) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno) |
|
[visibility](https://wiki.openstreetmap.org/wiki/Key:visibility) | Multiple choice | [house](https://wiki.openstreetmap.org/wiki/Tag:visibility%3Dhouse) [street](https://wiki.openstreetmap.org/wiki/Tag:visibility%3Dstreet) [area](https://wiki.openstreetmap.org/wiki/Tag:visibility%3Darea) |
|
[date](https://wiki.openstreetmap.org/wiki/Key:date) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:date%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:date%3Dno) |
|
[thermometer](https://wiki.openstreetmap.org/wiki/Key:thermometer) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:thermometer%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:thermometer%3Dno) |
@@ -72,7 +76,8 @@ _This tagrendering has no question and is thus read-only_
The question is `In what way is the clock mounted?`
- *This clock is mounted on a pole* is shown if with support=pole
- - *This clock is mounted on a wall* is shown if with support=wall_mounted
+ - *This clock is mounted on a wall, usually through a support perpendicular to the wall* is shown if with support=wall_mounted
+ - *This clock is mounted directly on a wall* is shown if with support=wall
- *This clock is part of a billboard* is shown if with support=billboard
- *This clock is on the ground* is shown if with support=ground
@@ -85,6 +90,13 @@ The question is `How does this clock display the time?`
- *This clock displays the time with a sundial* is shown if with display=sundial
- *This clock displays the time in a non-standard way, e.g using binary, water or something else* is shown if with display=unorthodox
+### indoor
+
+The question is `Is this clock indoors?`
+
+ - *This clock is indoors* is shown if with indoor=yes
+ - *This clock is outdoors* is shown if with indoor=no
+
### visibility
The question is `How visible is this clock?`
diff --git a/Docs/Layers/crossings.md b/Docs/Layers/crossings.md
index b5bd109215..7b31651394 100644
--- a/Docs/Layers/crossings.md
+++ b/Docs/Layers/crossings.md
@@ -16,7 +16,7 @@ Crossings for pedestrians and cyclists
4. [Supported attributes](#supported-attributes)
- [images](#images)
- [crossing-type](#crossing-type)
- - [crossing-is-zebra](#crossing-is-zebra)
+ - [markings](#markings)
- [crossing-bicycle-allowed](#crossing-bicycle-allowed)
- [crossing-has-island](#crossing-has-island)
- [crossing-tactile](#crossing-tactile)
@@ -60,8 +60,8 @@ Elements must match **any** of the following expressions:
| attribute | type | values which are supported by this layer |
-----|-----|----- |
-|
[crossing](https://wiki.openstreetmap.org/wiki/Key:crossing) | Multiple choice | [uncontrolled](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Duncontrolled) [traffic_signals](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dtraffic_signals) [unmarked](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dunmarked) |
-|
[crossing_ref](https://wiki.openstreetmap.org/wiki/Key:crossing_ref) | Multiple choice | [zebra](https://wiki.openstreetmap.org/wiki/Tag:crossing_ref%3Dzebra) [](https://wiki.openstreetmap.org/wiki/Tag:crossing_ref%3D) |
+|
[crossing](https://wiki.openstreetmap.org/wiki/Key:crossing) | Multiple choice | [uncontrolled](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Duncontrolled) [traffic_signals](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dtraffic_signals) |
+|
[crossing:markings](https://wiki.openstreetmap.org/wiki/Key:crossing:markings) | [string](../SpecialInputElements.md#string) | [no](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dno) [zebra](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dzebra) [lines](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dlines) [ladder](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dladder) [dashes](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Ddashes) [dots](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Ddots) [surface](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dsurface) [ladder:skewed](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dladder:skewed) [zebra:paired](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dzebra:paired) [zebra:bicolour](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dzebra:bicolour) [zebra:double](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dzebra:double) [pictograms](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dpictograms) [ladder:paired](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dladder:paired) [lines:paired](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dlines:paired) |
|
[bicycle](https://wiki.openstreetmap.org/wiki/Key:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno) |
|
[crossing:island](https://wiki.openstreetmap.org/wiki/Key:crossing:island) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dno) |
|
[tactile_paving](https://wiki.openstreetmap.org/wiki/Key:tactile_paving) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dno) |
@@ -85,18 +85,30 @@ The question is `What kind of crossing is this?`
- *Crossing, without traffic lights* is shown if with crossing=uncontrolled
- *Crossing with traffic signals* is shown if with crossing=traffic_signals
- *Zebra crossing* is shown if with crossing=zebra. _This option cannot be chosen as answer_
- - *Crossing without crossing markings* is shown if with crossing=unmarked
+ - *Crossing without crossing markings* is shown if with crossing=unmarked. _This option cannot be chosen as answer_
This tagrendering is only visible in the popup if the following condition is met: highway=crossing
-### crossing-is-zebra
+### markings
-The question is `Is this is a zebra crossing?`
+The question is `What kind of markings does this crossing have?`
+*This crossing has {crossing:markings} markings* is shown if `crossing:markings` is set
- - *This is a zebra crossing* is shown if with crossing_ref=zebra
- - *This is not a zebra crossing* is shown if with crossing_ref=
-
-This tagrendering is only visible in the popup if the following condition is met: crossing=uncontrolled
+ -
*This crossing has no markings* is shown if with crossing:markings=no
+ -
*This crossing has zebra markings* is shown if with crossing:markings=zebra
+ - *This crossing has markings of an unknown type* is shown if with crossing:markings=yes. _This option cannot be chosen as answer_
+ -
*This crossings has lines on either side of the crossing* is shown if with crossing:markings=lines
+ -
*This crossing has lines on either side of the crossing, along with bars connecting them* is shown if with crossing:markings=ladder
+ -
*This crossing has dashed lines on either sides of the crossing* is shown if with crossing:markings=dashes
+ -
*This crossing has dotted lines on either sides of the crossing* is shown if with crossing:markings=dots
+ -
*This crossing is marked by using a different coloured surface* is shown if with crossing:markings=surface
+ -
*This crossing has lines on either side of the crossing, along with angled bars connecting them* is shown if with crossing:markings=ladder:skewed
+ - *This crossing has zebra markings with an interruption in every bar* is shown if with crossing:markings=zebra:paired
+ -
*This crossing has zebra markings in alternating colours* is shown if with crossing:markings=zebra:bicolour
+ -
*This crossing has double zebra markings* is shown if with crossing:markings=zebra:double
+ - *This crossing has pictograms on the road* is shown if with crossing:markings=pictograms
+ - *This crossing has lines on either side of the crossing, along with bars connecting them, with an interruption in every bar* is shown if with crossing:markings=ladder:paired
+ -
*This crossing has double lines on either side of the crossing* is shown if with crossing:markings=lines:paired
### crossing-bicycle-allowed
diff --git a/Docs/Layers/crossings_no_traffic_lights.md b/Docs/Layers/crossings_no_traffic_lights.md
index 4149b71268..56a1bd215a 100644
--- a/Docs/Layers/crossings_no_traffic_lights.md
+++ b/Docs/Layers/crossings_no_traffic_lights.md
@@ -17,7 +17,7 @@ Crossings for pedestrians and cyclists
4. [Supported attributes](#supported-attributes)
- [images](#images)
- [crossing-type](#crossing-type)
- - [crossing-is-zebra](#crossing-is-zebra)
+ - [markings](#markings)
- [crossing-bicycle-allowed](#crossing-bicycle-allowed)
- [crossing-has-island](#crossing-has-island)
- [crossing-tactile](#crossing-tactile)
@@ -55,8 +55,8 @@ Elements must match the expression **
[crossing](https://wiki.openstreetmap.org/wiki/Key:crossing) | Multiple choice | [uncontrolled](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Duncontrolled) [traffic_signals](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dtraffic_signals) [unmarked](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dunmarked) |
-|
[crossing_ref](https://wiki.openstreetmap.org/wiki/Key:crossing_ref) | Multiple choice | [zebra](https://wiki.openstreetmap.org/wiki/Tag:crossing_ref%3Dzebra) [](https://wiki.openstreetmap.org/wiki/Tag:crossing_ref%3D) |
+|
[crossing](https://wiki.openstreetmap.org/wiki/Key:crossing) | Multiple choice | [uncontrolled](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Duncontrolled) [traffic_signals](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dtraffic_signals) |
+|
[crossing:markings](https://wiki.openstreetmap.org/wiki/Key:crossing:markings) | [string](../SpecialInputElements.md#string) | [no](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dno) [zebra](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dzebra) [lines](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dlines) [ladder](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dladder) [dashes](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Ddashes) [dots](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Ddots) [surface](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dsurface) [ladder:skewed](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dladder:skewed) [zebra:paired](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dzebra:paired) [zebra:bicolour](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dzebra:bicolour) [zebra:double](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dzebra:double) [pictograms](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dpictograms) [ladder:paired](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dladder:paired) [lines:paired](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dlines:paired) |
|
[bicycle](https://wiki.openstreetmap.org/wiki/Key:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno) |
|
[crossing:island](https://wiki.openstreetmap.org/wiki/Key:crossing:island) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dno) |
|
[tactile_paving](https://wiki.openstreetmap.org/wiki/Key:tactile_paving) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dno) |
@@ -80,18 +80,30 @@ The question is `What kind of crossing is this?`
- *Crossing, without traffic lights* is shown if with crossing=uncontrolled
- *Crossing with traffic signals* is shown if with crossing=traffic_signals
- *Zebra crossing* is shown if with crossing=zebra. _This option cannot be chosen as answer_
- - *Crossing without crossing markings* is shown if with crossing=unmarked
+ - *Crossing without crossing markings* is shown if with crossing=unmarked. _This option cannot be chosen as answer_
This tagrendering is only visible in the popup if the following condition is met: highway=crossing
-### crossing-is-zebra
+### markings
-The question is `Is this is a zebra crossing?`
+The question is `What kind of markings does this crossing have?`
+*This crossing has {crossing:markings} markings* is shown if `crossing:markings` is set
- - *This is a zebra crossing* is shown if with crossing_ref=zebra
- - *This is not a zebra crossing* is shown if with crossing_ref=
-
-This tagrendering is only visible in the popup if the following condition is met: crossing=uncontrolled
+ -
*This crossing has no markings* is shown if with crossing:markings=no
+ -
*This crossing has zebra markings* is shown if with crossing:markings=zebra
+ - *This crossing has markings of an unknown type* is shown if with crossing:markings=yes. _This option cannot be chosen as answer_
+ -
*This crossings has lines on either side of the crossing* is shown if with crossing:markings=lines
+ -
*This crossing has lines on either side of the crossing, along with bars connecting them* is shown if with crossing:markings=ladder
+ -
*This crossing has dashed lines on either sides of the crossing* is shown if with crossing:markings=dashes
+ -
*This crossing has dotted lines on either sides of the crossing* is shown if with crossing:markings=dots
+ -
*This crossing is marked by using a different coloured surface* is shown if with crossing:markings=surface
+ -
*This crossing has lines on either side of the crossing, along with angled bars connecting them* is shown if with crossing:markings=ladder:skewed
+ - *This crossing has zebra markings with an interruption in every bar* is shown if with crossing:markings=zebra:paired
+ -
*This crossing has zebra markings in alternating colours* is shown if with crossing:markings=zebra:bicolour
+ -
*This crossing has double zebra markings* is shown if with crossing:markings=zebra:double
+ - *This crossing has pictograms on the road* is shown if with crossing:markings=pictograms
+ - *This crossing has lines on either side of the crossing, along with bars connecting them, with an interruption in every bar* is shown if with crossing:markings=ladder:paired
+ -
*This crossing has double lines on either side of the crossing* is shown if with crossing:markings=lines:paired
### crossing-bicycle-allowed
diff --git a/Docs/Layers/cycleways_and_roads.md b/Docs/Layers/cycleways_and_roads.md
index 050be61987..eecab2d26a 100644
--- a/Docs/Layers/cycleways_and_roads.md
+++ b/Docs/Layers/cycleways_and_roads.md
@@ -7,6 +7,7 @@ All infrastructure that someone can cycle over, accompanied with questions about
- This layer is shown at zoomlevel **16** and higher
- This layer is needed as dependency for layer [barrier](#barrier)
- This layer is needed as dependency for layer [crossings](#crossings)
+ - This layer is needed as dependency for layer [cyclist_waiting_aid](#cyclist_waiting_aid)
- This layer is needed as dependency for layer [kerbs](#kerbs)
- This layer is needed as dependency for layer [rainbow_crossings](#rainbow_crossings)
- This layer is needed as dependency for layer [crossings_no_traffic_lights](#crossings_no_traffic_lights)
diff --git a/Docs/Layers/cyclist_waiting_aid.md b/Docs/Layers/cyclist_waiting_aid.md
new file mode 100644
index 0000000000..0f03615117
--- /dev/null
+++ b/Docs/Layers/cyclist_waiting_aid.md
@@ -0,0 +1,99 @@
+[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
+
+# cyclist_waiting_aid
+
+Various pieces of infrastructure that aid cyclists while they wait at a traffic light.
+
+ - This layer is shown at zoomlevel **0** and higher
+ - This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: preset `a cyclist waiting aid` snaps to this layer (cyclist_waiting_aid.presets[0])
+
+## 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)
+ - [type](#type)
+ - [side](#side)
+ - [direction](#direction)
+ - [leftover-questions](#leftover-questions)
+ - [delete-button](#delete-button)
+ - [lod](#lod)
+
+## Themes using this layer
+
+ - [cycle_infra](https://mapcomplete.org/cycle_infra)
+ - [personal](https://mapcomplete.org/personal)
+
+## Presets
+
+The following options to create new points are included:
+
+ - **a cyclist waiting aid** which has the following tags:highway=cyclist_waiting_aid (snaps to layers `cycleways_and_roads`)
+
+## Basic tags for this layer
+
+Elements must match the expression **highway=cyclist_waiting_aid**
+
+[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22highway%22%3D%22cyclist_waiting_aid%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 |
+-----|-----|----- |
+|
[side](https://wiki.openstreetmap.org/wiki/Key:side) | Multiple choice | [left](https://wiki.openstreetmap.org/wiki/Tag:side%3Dleft) [right](https://wiki.openstreetmap.org/wiki/Tag:side%3Dright) [both](https://wiki.openstreetmap.org/wiki/Tag:side%3Dboth) |
+|
[direction](https://wiki.openstreetmap.org/wiki/Key:direction) | Multiple choice | [forward](https://wiki.openstreetmap.org/wiki/Tag:direction%3Dforward) [backward](https://wiki.openstreetmap.org/wiki/Tag:direction%3Dbackward) |
+
+### images
+This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
+_This tagrendering has no question and is thus read-only_
+*{image_carousel()}{image_upload()}*
+
+### type
+
+The question is `What kind of components does this waiting aid have?`
+
+ - *There is a board or peg to rest your foot on here* is shown if with footrest=yes. Unselecting this answer will add footrest=
+ - *There is a rail or a handle to hold on to here* is shown if with handrest=yes. Unselecting this answer will add handrest=
+
+### side
+
+The question is `On what side of the road is this located?`
+
+ - *This waiting aid is located on the left side* is shown if with side=left
+ - *This waiting aid is located on the right side* is shown if with side=right
+ - *There are waiting aids on both sides of the road* is shown if with side=both
+
+### direction
+
+_This tagrendering has no question and is thus read-only_
+*This waiting aid can be used when going in {direction} direction*
+
+ - *This waiting aid can be used when going forward on this way* is shown if with direction=forward
+ - *This waiting aid can be used when going backward on this way* is shown if with direction=backward
+
+This tagrendering is only visible in the popup if the following condition is met: direction~.+
+
+### leftover-questions
+
+_This tagrendering has no question and is thus read-only_
+*{questions( ,)}*
+
+### 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/cyclist_waiting_aid/cyclist_waiting_aid.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/cyclist_waiting_aid/cyclist_waiting_aid.json)
diff --git a/Docs/Layers/doctors.md b/Docs/Layers/doctors.md
index 6cb4082a90..828d4ec3cd 100644
--- a/Docs/Layers/doctors.md
+++ b/Docs/Layers/doctors.md
@@ -150,10 +150,10 @@ This tagrendering has labels
| id | question | osmTags |
-----|-----|----- |
| specialty.0 | *What is this doctor specialized in?* (default) | |
-| specialty.1 | This is a general practitioner | healthcare:speciality=general |
-| specialty.2 | This is a gynaecologist | healthcare:speciality=gynaecology |
-| specialty.3 | This is a psychiatrist | healthcare:speciality=psychiatry |
-| specialty.4 | This is a paediatrician | healthcare:speciality=paediatrics |
+| specialty.1 | This is a general practitioner | healthcare:speciality~^(.+;)?general(;.+)$ |
+| specialty.2 | This is a gynaecologist | healthcare:speciality~^(.+;)?gynaecology(;.+)$ |
+| specialty.3 | This is a psychiatrist | healthcare:speciality~^(.+;)?psychiatry(;.+)$ |
+| specialty.4 | This is a paediatrician | healthcare:speciality~^(.+;)?paediatrics(;.+)$ |
diff --git a/Docs/Layers/dogshop.md b/Docs/Layers/dogshop.md
index ac09558623..2e3d33ed48 100644
--- a/Docs/Layers/dogshop.md
+++ b/Docs/Layers/dogshop.md
@@ -707,7 +707,7 @@ This tagrendering has labels
| id | question | osmTags |
-----|-----|----- |
| shop_types.0 | *What kind of shop is this?* (default) | |
-| shop_types.1 | Bicycle rental shop | shop=bicycle_rental |
+| shop_types.1 | Bicycle rental shop | shop=bicycle_rental | ((shop=rental & amenity=bicycle_rental)) |
| shop_types.2 | Farm Supply Shop | shop=agrarian |
| shop_types.3 | Liquor Store | shop=alcohol |
| shop_types.4 | Anime / Manga Shop | shop=anime |
diff --git a/Docs/Layers/medical_shops.md b/Docs/Layers/medical_shops.md
index d00098ba8c..bd6ce185bd 100644
--- a/Docs/Layers/medical_shops.md
+++ b/Docs/Layers/medical_shops.md
@@ -720,7 +720,7 @@ This tagrendering has labels
| id | question | osmTags |
-----|-----|----- |
| shop_types.0 | *What kind of shop is this?* (default) | |
-| shop_types.1 | Bicycle rental shop | shop=bicycle_rental |
+| shop_types.1 | Bicycle rental shop | shop=bicycle_rental | ((shop=rental & amenity=bicycle_rental)) |
| shop_types.2 | Farm Supply Shop | shop=agrarian |
| shop_types.3 | Liquor Store | shop=alcohol |
| shop_types.4 | Anime / Manga Shop | shop=anime |
diff --git a/Docs/Layers/memorial.md b/Docs/Layers/memorial.md
index 6720259a78..6f7f57e521 100644
--- a/Docs/Layers/memorial.md
+++ b/Docs/Layers/memorial.md
@@ -33,6 +33,7 @@ Layer showing memorial plaques, based upon a unofficial theme. Can be expanded t
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
+5. [Filters](#filters)
## Themes using this layer
@@ -264,5 +265,27 @@ _This tagrendering has no question and is thus read-only_
This tagrendering has labels
`added_by_default`
+## Filters
+
+| id | question | osmTags |
+-----|-----|----- |
+| memorial-type.0 | *What type of memorial is this?* (default) | |
+| memorial-type.1 | This is a statue | memorial=statue |
+| memorial-type.2 | This is a plaque | memorial=plaque |
+| memorial-type.3 | This is a commemorative bench | memorial=bench |
+| memorial-type.4 | This is a ghost bike - a bicycle painted white to remember a cyclist whom deceased because of a car crash | memorial=ghost_bike |
+| memorial-type.5 | This is a stolperstein (stumbing stone) | memorial=stolperstein |
+| memorial-type.6 | This is a stele | memorial=stele |
+| memorial-type.7 | This is a memorial stone | memorial=stone |
+| memorial-type.8 | This is a bust | memorial=bust |
+| memorial-type.9 | This is a sculpture | memorial=sculpture |
+| memorial-type.10 | This is an obelisk | memorial=obelisk |
+| memorial-type.11 | This is a cross | memorial=cross |
+| memorial-type.12 | This is a blue plaque | memorial=blue_plaque |
+| memorial-type.13 | This is a historic tank, permanently placed in public space as memorial | memorial=tank |
+| memorial-type.14 | This is a memorial tree | memorial=tree |
+| memorial-type.15 | This is a gravestone; the person is buried here | historic=tomb |
+
+
This document is autogenerated from [assets/layers/memorial/memorial.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/memorial/memorial.json)
diff --git a/Docs/Layers/pharmacy.md b/Docs/Layers/pharmacy.md
index 91d70ca2bd..e42fa7a332 100644
--- a/Docs/Layers/pharmacy.md
+++ b/Docs/Layers/pharmacy.md
@@ -59,7 +59,6 @@ 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) | |
-|
[wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) |
### 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
@@ -124,11 +123,8 @@ The question is `Which methods of payment are accepted here?`
### wheelchair
-The question is `Is this pharmacy easy to access on a wheelchair?`
-
- - *This pharmacy is easy to access on a wheelchair* is shown if with wheelchair=yes
- - *This pharmacy is hard to access on a wheelchair* is shown if with wheelchair=no
- - *This pharmacy has limited access for wheelchair users* is shown if with wheelchair=limited
+_This tagrendering has no question and is thus read-only_
+*wheelchair*
### leftover-questions
diff --git a/Docs/Layers/playground.md b/Docs/Layers/playground.md
index c43849cecd..fa1fc0441c 100644
--- a/Docs/Layers/playground.md
+++ b/Docs/Layers/playground.md
@@ -227,7 +227,7 @@ This tagrendering has labels
| id | question | osmTags |
-----|-----|----- |
| fee.0 | *Does one have to pay to use this playground?* (default) | |
-| fee.1 | Free to use | fee=no |
+| fee.1 | Free to use | fee=no | fee= |
| fee.2 | Paid playground | fee=yes |
diff --git a/Docs/Layers/post_offices_with_atm.md b/Docs/Layers/post_offices_with_atm.md
index 2049287674..b84c737042 100644
--- a/Docs/Layers/post_offices_with_atm.md
+++ b/Docs/Layers/post_offices_with_atm.md
@@ -14,7 +14,9 @@ A layer showing post offices.
2. [Basic tags for this layer](#basic-tags-for-this-layer)
3. [Supported attributes](#supported-attributes)
- [images](#images)
- - [minimap](#minimap)
+ - [phone](#phone)
+ - [email](#email)
+ - [website](#website)
- [opening_hours](#opening_hours)
- [Opening hours](#opening-hours)
- [post_partner](#post_partner)
@@ -50,6 +52,9 @@ Elements must match **all** of the following expressions:
| attribute | type | values which are supported by this layer |
-----|-----|----- |
+|
[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) | |
|
[opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | |
|
[post_office](https://wiki.openstreetmap.org/wiki/Key:post_office) | Multiple choice | [post_partner](https://wiki.openstreetmap.org/wiki/Tag:post_office%3Dpost_partner) [](https://wiki.openstreetmap.org/wiki/Tag:post_office%3D) |
|
[brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [nsi](../SpecialInputElements.md#nsi) | |
@@ -66,10 +71,36 @@ This block shows the known images which are linked with the `image`-keys, but al
_This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}*
-### minimap
+### phone
-_This tagrendering has no question and is thus read-only_
-*{minimap(18): height: 5rem; overflow: hidden; border-radius:3rem; }*
+The question is `What is the phone number of {title()}?`
+*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
+
+ -
*{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
+
+This tagrendering has labels
+`contact`
+
+### email
+
+The question is `What is the email address of {title()}?`
+*{email}* is shown if `email` is set
+
+ -
*{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_
+ -
*{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_
+
+This tagrendering has labels
+`contact`
+
+### website
+
+The question is `What is the website of {title()}?`
+*{website}* is shown if `website` is set
+
+ -
*{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_
+
+This tagrendering has labels
+`contact`
### opening_hours
diff --git a/Docs/Layers/postboxes.md b/Docs/Layers/postboxes.md
index 0692c219a6..a00dd6229e 100644
--- a/Docs/Layers/postboxes.md
+++ b/Docs/Layers/postboxes.md
@@ -5,6 +5,7 @@
The layer showing postboxes.
- 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 postbox on a wall` snaps to this layer (postboxes.presets[1])
## Table of contents
@@ -14,6 +15,7 @@ The layer showing postboxes.
4. [Supported attributes](#supported-attributes)
- [images](#images)
- [minimap](#minimap)
+ - [operator](#operator)
- [leftover-questions](#leftover-questions)
- [move-button](#move-button)
- [delete-button](#delete-button)
@@ -29,6 +31,7 @@ The layer showing postboxes.
The following options to create new points are included:
- **a postbox** which has the following tags:amenity=post_box
+ - **a postbox on a wall** which has the following tags:amenity=post_box (snaps to layers `walls_and_buildings`)
## Basic tags for this layer
@@ -38,6 +41,12 @@ Elements must match the expression **
[operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | |
+
### 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_
@@ -48,6 +57,11 @@ _This tagrendering has no question and is thus read-only_
_This tagrendering has no question and is thus read-only_
*{minimap(18): height: 5rem; overflow: hidden; border-radius:3rem; }*
+### operator
+
+The question is `Who operates this postbox?`
+*This postbox is operated by {operator}* is shown if `operator` is set
+
### leftover-questions
_This tagrendering has no question and is thus read-only_
diff --git a/Docs/Layers/postoffices.md b/Docs/Layers/postoffices.md
index cb3b19389b..e4553e2335 100644
--- a/Docs/Layers/postoffices.md
+++ b/Docs/Layers/postoffices.md
@@ -13,7 +13,9 @@ A layer showing post offices.
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
- [images](#images)
- - [minimap](#minimap)
+ - [phone](#phone)
+ - [email](#email)
+ - [website](#website)
- [opening_hours](#opening_hours)
- [Opening hours](#opening-hours)
- [post_partner](#post_partner)
@@ -57,6 +59,9 @@ Elements must match **any** of the following expressions:
| attribute | type | values which are supported by this layer |
-----|-----|----- |
+|
[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) | |
|
[opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | |
|
[post_office](https://wiki.openstreetmap.org/wiki/Key:post_office) | Multiple choice | [post_partner](https://wiki.openstreetmap.org/wiki/Tag:post_office%3Dpost_partner) [](https://wiki.openstreetmap.org/wiki/Tag:post_office%3D) |
|
[brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [nsi](../SpecialInputElements.md#nsi) | |
@@ -73,10 +78,36 @@ This block shows the known images which are linked with the `image`-keys, but al
_This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}*
-### minimap
+### phone
-_This tagrendering has no question and is thus read-only_
-*{minimap(18): height: 5rem; overflow: hidden; border-radius:3rem; }*
+The question is `What is the phone number of {title()}?`
+*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
+
+ -
*{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
+
+This tagrendering has labels
+`contact`
+
+### email
+
+The question is `What is the email address of {title()}?`
+*{email}* is shown if `email` is set
+
+ -
*{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_
+ -
*{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_
+
+This tagrendering has labels
+`contact`
+
+### website
+
+The question is `What is the website of {title()}?`
+*{website}* is shown if `website` is set
+
+ -
*{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_
+
+This tagrendering has labels
+`contact`
### opening_hours
diff --git a/Docs/Layers/school.md b/Docs/Layers/school.md
index 5213868641..98a668010a 100644
--- a/Docs/Layers/school.md
+++ b/Docs/Layers/school.md
@@ -14,15 +14,16 @@ Schools giving primary and secondary education and post-secondary, non-tertiary
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
+ - [images](#images)
- [school-name](#school-name)
+ - [phone](#phone)
+ - [email](#email)
+ - [website](#website)
- [capacity](#capacity)
- [education-level-belgium](#education-level-belgium)
- [gender](#gender)
- [pedagogy](#pedagogy)
- [target-audience](#target-audience)
- - [website](#website)
- - [phone](#phone)
- - [email](#email)
- [school-language](#school-language)
- [leftover-questions](#leftover-questions)
- [move-button](#move-button)
@@ -53,20 +54,56 @@ Elements must match the expression **
[name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | |
+|
[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) | |
|
[capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [pnat](../SpecialInputElements.md#pnat) | |
|
[school](https://wiki.openstreetmap.org/wiki/Key:school) | Multiple choice | [kindergarten](https://wiki.openstreetmap.org/wiki/Tag:school%3Dkindergarten) [primary](https://wiki.openstreetmap.org/wiki/Tag:school%3Dprimary) [secondary](https://wiki.openstreetmap.org/wiki/Tag:school%3Dsecondary) [lower_secondary](https://wiki.openstreetmap.org/wiki/Tag:school%3Dlower_secondary) [middle_secondary](https://wiki.openstreetmap.org/wiki/Tag:school%3Dmiddle_secondary) [upper_secondary](https://wiki.openstreetmap.org/wiki/Tag:school%3Dupper_secondary) [post_secondary](https://wiki.openstreetmap.org/wiki/Tag:school%3Dpost_secondary) |
|
[school:gender](https://wiki.openstreetmap.org/wiki/Key:school:gender) | Multiple choice | [mixed](https://wiki.openstreetmap.org/wiki/Tag:school:gender%3Dmixed) [separated](https://wiki.openstreetmap.org/wiki/Tag:school:gender%3Dseparated) [male](https://wiki.openstreetmap.org/wiki/Tag:school:gender%3Dmale) [female](https://wiki.openstreetmap.org/wiki/Tag:school:gender%3Dfemale) |
|
[pedagogy](https://wiki.openstreetmap.org/wiki/Key:pedagogy) | [string](../SpecialInputElements.md#string) | [mainstream](https://wiki.openstreetmap.org/wiki/Tag:pedagogy%3Dmainstream) [montessori](https://wiki.openstreetmap.org/wiki/Tag:pedagogy%3Dmontessori) [freinet](https://wiki.openstreetmap.org/wiki/Tag:pedagogy%3Dfreinet) [jenaplan](https://wiki.openstreetmap.org/wiki/Tag:pedagogy%3Djenaplan) [waldorf](https://wiki.openstreetmap.org/wiki/Tag:pedagogy%3Dwaldorf) [dalton](https://wiki.openstreetmap.org/wiki/Tag:pedagogy%3Ddalton) [outdoor](https://wiki.openstreetmap.org/wiki/Tag:pedagogy%3Doutdoor) [reggio_emilia](https://wiki.openstreetmap.org/wiki/Tag:pedagogy%3Dreggio_emilia) [sudbury](https://wiki.openstreetmap.org/wiki/Tag:pedagogy%3Dsudbury) |
|
[school:for](https://wiki.openstreetmap.org/wiki/Key:school:for) | [string](../SpecialInputElements.md#string) | [mainstream](https://wiki.openstreetmap.org/wiki/Tag:school:for%3Dmainstream) [adults](https://wiki.openstreetmap.org/wiki/Tag:school:for%3Dadults) [autism](https://wiki.openstreetmap.org/wiki/Tag:school:for%3Dautism) [learning_disabilities](https://wiki.openstreetmap.org/wiki/Tag:school:for%3Dlearning_disabilities) [blind](https://wiki.openstreetmap.org/wiki/Tag:school:for%3Dblind) [deaf](https://wiki.openstreetmap.org/wiki/Tag:school:for%3Ddeaf) [disabilities](https://wiki.openstreetmap.org/wiki/Tag:school:for%3Ddisabilities) [special_needs](https://wiki.openstreetmap.org/wiki/Tag:school:for%3Dspecial_needs) |
-|
[website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | |
-|
[phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | |
-|
[email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | |
+
+### 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()}*
### school-name
The question is `What is the name of this school?`
*This school is named {name}* is shown if `name` is set
+### phone
+
+The question is `What is the phone number of {title()}?`
+*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
+
+ -
*{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
+
+This tagrendering has labels
+`contact`
+
+### email
+
+The question is `What is the email address of {title()}?`
+*{email}* is shown if `email` is set
+
+ -
*{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_
+ -
*{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_
+
+This tagrendering has labels
+`contact`
+
+### website
+
+The question is `What is the website of {title()}?`
+*{website}* is shown if `website` is set
+
+ -
*{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_
+
+This tagrendering has labels
+`contact`
+
### capacity
The question is `How much students can at most enroll in this school?`
@@ -127,37 +164,6 @@ The question is `Does this school target students with a special need? Which str
This tagrendering is only visible in the popup if the following condition is met: school:for~.+
-### website
-
-The question is `What is the website of {title()}?`
-*{website}* is shown if `website` is set
-
- -
*{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_
-
-This tagrendering has labels
-`contact`
-
-### phone
-
-The question is `What is the phone number of {title()}?`
-*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
-
- -
*{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
-
-This tagrendering has labels
-`contact`
-
-### email
-
-The question is `What is the email address of {title()}?`
-*{email}* is shown if `email` is set
-
- -
*{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_
- -
*{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_
-
-This tagrendering has labels
-`contact`
-
### school-language
_This tagrendering has no question and is thus read-only_
@@ -196,6 +202,17 @@ This tagrendering has labels
| pedagogy.8 | This school uses the Reggio Emilia approach | pedagogy=reggio_emilia |
| pedagogy.9 | This school uses the Sudbury system | pedagogy=sudbury |
+| id | question | osmTags |
+-----|-----|----- |
+| education-level-belgium.0 | *What level of education is given on this school?* (default) | |
+| education-level-belgium.1 | This is a school with a kindergarten section where young kids receive some education which prepares reading and writing. | school~^(.+;)?kindergarten(;.+)$ |
+| education-level-belgium.2 | This is a school where one learns primary skills such as basic literacy and numerical skills.
[website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | |
|
[email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | |
|
[wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) |
+|
[sport](https://wiki.openstreetmap.org/wiki/Key:sport) | [string](../SpecialInputElements.md#string) | [9pin](https://wiki.openstreetmap.org/wiki/Tag:sport%3D9pin) [10pin](https://wiki.openstreetmap.org/wiki/Tag:sport%3D10pin) [aerobics](https://wiki.openstreetmap.org/wiki/Tag:sport%3Daerobics) [american_football](https://wiki.openstreetmap.org/wiki/Tag:sport%3Damerican_football) [aikido](https://wiki.openstreetmap.org/wiki/Tag:sport%3Daikido) [archery](https://wiki.openstreetmap.org/wiki/Tag:sport%3Darchery) [athletics](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dathletics) [australian_football](https://wiki.openstreetmap.org/wiki/Tag:sport%3Daustralian_football) [badminton](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dbadminton) [bandy](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dbandy) [base](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dbase) [baseball](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dbaseball) [basketball](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dbasketball) [beachvolleyball](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dbeachvolleyball) [biathlon](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dbiathlon) [billiards](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dbilliards) [bmx](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dbmx) [bobsleigh](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dbobsleigh) [boules](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dboules) [bowls](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dbowls) [boxing](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dboxing) [bullfighting](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dbullfighting) [canadian_football](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dcanadian_football) [canoe](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dcanoe) [chess](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dchess) [cliff_diving](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dcliff_diving) [climbing](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dclimbing) [climbing_adventure](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dclimbing_adventure) [cockfighting](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dcockfighting) [cricket](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dcricket) [crossfit](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dcrossfit) [croquet](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dcroquet) [curling](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dcurling) [cycle_polo](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dcycle_polo) [cycling](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dcycling) [dance](https://wiki.openstreetmap.org/wiki/Tag:sport%3Ddance) [darts](https://wiki.openstreetmap.org/wiki/Tag:sport%3Ddarts) [dog_agility](https://wiki.openstreetmap.org/wiki/Tag:sport%3Ddog_agility) [dog_racing](https://wiki.openstreetmap.org/wiki/Tag:sport%3Ddog_racing) [dragon_boat](https://wiki.openstreetmap.org/wiki/Tag:sport%3Ddragon_boat) [equestrian](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dequestrian) [fencing](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dfencing) [field_hockey](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dfield_hockey) [fitness](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dfitness) [five-a-side](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dfive-a-side) [floorball](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dfloorball) [four_square](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dfour_square) [free_flying](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dfree_flying) [futsal](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dfutsal) [gaelic_games](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dgaelic_games) [gaga](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dgaga) [golf](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dgolf) [gymnastics](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dgymnastics) [handball](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dhandball) [hapkido](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dhapkido) [hiking](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dhiking) [horseshoes](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dhorseshoes) [horse_racing](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dhorse_racing) [ice_hockey](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dice_hockey) [ice_skating](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dice_skating) [ice_stock](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dice_stock) [judo](https://wiki.openstreetmap.org/wiki/Tag:sport%3Djudo) [karate](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dkarate) [karting](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dkarting) [kickboxing](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dkickboxing) [kitesurfing](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dkitesurfing) [korfball](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dkorfball) [krachtball](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dkrachtball) [lacrosse](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dlacrosse) [laser_tag](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dlaser_tag) [martial_arts](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dmartial_arts) [miniature_golf](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dminiature_golf) [model_aerodrome](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dmodel_aerodrome) [motocross](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dmotocross) [motor](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dmotor) [multi](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dmulti) [netball](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dnetball) [obstacle_course](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dobstacle_course) [orienteering](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dorienteering) [paddle_tennis](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dpaddle_tennis) [padel](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dpadel) [paintball](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dpaintball) [parachuting](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dparachuting) [parkour](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dparkour) [pelota](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dpelota) [pesäpallo](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dpesäpallo) [pickleball](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dpickleball) [pilates](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dpilates) [pole_dance](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dpole_dance) [racquet](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dracquet) [rc_car](https://wiki.openstreetmap.org/wiki/Tag:sport%3Drc_car) [roller_skating](https://wiki.openstreetmap.org/wiki/Tag:sport%3Droller_skating) [rowing](https://wiki.openstreetmap.org/wiki/Tag:sport%3Drowing) [rugby_league](https://wiki.openstreetmap.org/wiki/Tag:sport%3Drugby_league) [rugby_union](https://wiki.openstreetmap.org/wiki/Tag:sport%3Drugby_union) [running](https://wiki.openstreetmap.org/wiki/Tag:sport%3Drunning) [sailing](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dsailing) [scuba_diving](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dscuba_diving) [shooting](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dshooting) [shot-put](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dshot-put) [skateboard](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dskateboard) [ski_jumping](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dski_jumping) [snooker](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dsnooker) [soccer](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dsoccer) [softball](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dsoftball) [speedway](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dspeedway) [squash](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dsquash) [sumo](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dsumo) [surfing](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dsurfing) [swimming](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dswimming) [table_tennis](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dtable_tennis) [table_soccer](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dtable_soccer) [taekwondo](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dtaekwondo) [tennis](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dtennis) [teqball](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dteqball) [toboggan](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dtoboggan) [trampoline](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dtrampoline) [ultimate](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dultimate) [ultralight_aviation](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dultralight_aviation) [volleyball](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dvolleyball) [wakeboarding](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dwakeboarding) [water_polo](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dwater_polo) [water_ski](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dwater_ski) [weightlifting](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dweightlifting) [windsurfing](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dwindsurfing) [wrestling](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dwrestling) [yoga](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dyoga) [zurkhaneh_sport](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dzurkhaneh_sport) |
### 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
@@ -105,6 +107,140 @@ The question is `Is this place accessible with a wheelchair?`
- *It is possible to reach this place in a wheelchair, but it is not easy* is shown if with wheelchair=limited
- *This place is not reachable with a wheelchair* is shown if with wheelchair=no
+### sport_centre-sport
+
+The question is `What sports are played at this venue?`
+*Sports played here: {sport}* is shown if `sport` is set
+
+ - *Nine-pin bowling* is shown if with sport=9pin
+ - *Ten-pin bowling* is shown if with sport=10pin
+ - *Aerobics* is shown if with sport=aerobics
+ - *American football* is shown if with sport=american_football
+ - *Aikido* is shown if with sport=aikido
+ - *Archery* is shown if with sport=archery
+ - *Athletics* is shown if with sport=athletics
+ - *Australian rules football* is shown if with sport=australian_football
+ - *Badminton* is shown if with sport=badminton
+ - *Bandy* is shown if with sport=bandy
+ - *BASE jumping* is shown if with sport=base
+ - *Baseball* is shown if with sport=baseball
+ - *Basketball* is shown if with sport=basketball
+ - *Beachvolleyball* is shown if with sport=beachvolleyball
+ - *Biathlon* is shown if with sport=biathlon
+ - *Cue sports* is shown if with sport=billiards
+ - *BMX* is shown if with sport=bmx
+ - *Bobsleigh* is shown if with sport=bobsleigh
+ - *Boules* is shown if with sport=boules
+ - *Bowls* is shown if with sport=bowls
+ - *Boxing* is shown if with sport=boxing
+ - *Bullfighting* is shown if with sport=bullfighting
+ - *Canadian football* is shown if with sport=canadian_football
+ - *Canoe* is shown if with sport=canoe
+ - *Chess* is shown if with sport=chess
+ - *Non-competitive diving* is shown if with sport=cliff_diving
+ - *Rock climbing* is shown if with sport=climbing
+ - *Climbing Adventure* is shown if with sport=climbing_adventure
+ - *Cockfighting* is shown if with sport=cockfighting
+ - *Cricket* is shown if with sport=cricket
+ - *CrossFit* is shown if with sport=crossfit
+ - *Croquet* is shown if with sport=croquet
+ - *Curling* is shown if with sport=curling
+ - *Cycle Polo* is shown if with sport=cycle_polo
+ - *Cycling* is shown if with sport=cycling
+ - *Dance* is shown if with sport=dance
+ - *Darts* is shown if with sport=darts
+ - *Dog agility* is shown if with sport=dog_agility
+ - *Greyhound racing* is shown if with sport=dog_racing
+ - *Dragon Boat* is shown if with sport=dragon_boat
+ - *Equestrianism* is shown if with sport=equestrian
+ - *Fencing* is shown if with sport=fencing
+ - *Field hockey* is shown if with sport=field_hockey
+ - *Fitness* is shown if with sport=fitness
+ - *5 person soccer* is shown if with sport=five-a-side
+ - *Floorball* is shown if with sport=floorball
+ - *Four square* is shown if with sport=four_square
+ - *Paragliding* is shown if with sport=free_flying
+ - *Futsal* is shown if with sport=futsal
+ - *Gaelic games* is shown if with sport=gaelic_games
+ - *Gaga ball* is shown if with sport=gaga
+ - *Golf* is shown if with sport=golf
+ - *Gymnastics* is shown if with sport=gymnastics
+ - *Handball* is shown if with sport=handball
+ - *Hapkido* is shown if with sport=hapkido
+ - *Hiking* is shown if with sport=hiking
+ - *Horseshoes* is shown if with sport=horseshoes
+ - *Horse racing* is shown if with sport=horse_racing
+ - *Ice Hockey* is shown if with sport=ice_hockey
+ - *Ice skating* is shown if with sport=ice_skating
+ - *Ice stock sport* is shown if with sport=ice_stock
+ - *Judo* is shown if with sport=judo
+ - *Karate* is shown if with sport=karate
+ - *Kart racing* is shown if with sport=karting
+ - *Kickboxing* is shown if with sport=kickboxing
+ - *Kitesurfing* is shown if with sport=kitesurfing
+ - *Korfball* is shown if with sport=korfball
+ - *Krachtball* is shown if with sport=krachtball
+ - *Lacrosse* is shown if with sport=lacrosse
+ - *Laser tag* is shown if with sport=laser_tag
+ - *Martial arts* is shown if with sport=martial_arts
+ - *Miniature golf* is shown if with sport=miniature_golf
+ - *Radio-controlled aircraft* is shown if with sport=model_aerodrome
+ - *Motocross* is shown if with sport=motocross
+ - *Motorsport* is shown if with sport=motor
+ - *Multiple kind of sports* is shown if with sport=multi
+ - *Netball* is shown if with sport=netball
+ - *Obstacle course* is shown if with sport=obstacle_course
+ - *Orienteering* is shown if with sport=orienteering
+ - *Paddle tennis* is shown if with sport=paddle_tennis
+ - *Padel* is shown if with sport=padel
+ - *Paintball* is shown if with sport=paintball
+ - *Parachuting* is shown if with sport=parachuting
+ - *Parkour* is shown if with sport=parkour
+ - *Palota* is shown if with sport=pelota
+ - *Pesäpallo* is shown if with sport=pesäpallo
+ - *Pickleball* is shown if with sport=pickleball
+ - *Pilates* is shown if with sport=pilates
+ - *Pole dance* is shown if with sport=pole_dance
+ - *Racquetball* is shown if with sport=racquet
+ - *Radio-controlled car* is shown if with sport=rc_car
+ - *Roller skating* is shown if with sport=roller_skating
+ - *Rowing* is shown if with sport=rowing
+ - *Rugby league* is shown if with sport=rugby_league
+ - *Rugby union* is shown if with sport=rugby_union
+ - *Running* is shown if with sport=running
+ - *Sailing* is shown if with sport=sailing
+ - *Scuba diving* is shown if with sport=scuba_diving
+ - *Shooting* is shown if with sport=shooting
+ - *Shot-put* is shown if with sport=shot-put
+ - *Skateboard* is shown if with sport=skateboard
+ - *Ski jumping* is shown if with sport=ski_jumping
+ - *Snooker* is shown if with sport=snooker
+ - *Soccer* is shown if with sport=soccer
+ - *Softball* is shown if with sport=softball
+ - *Motorcycle speedway* is shown if with sport=speedway
+ - *Squash* is shown if with sport=squash
+ - *Sumo* is shown if with sport=sumo
+ - *Surfing* is shown if with sport=surfing
+ - *Swimming* is shown if with sport=swimming
+ - *Table tennis* is shown if with sport=table_tennis
+ - *Table soccer* is shown if with sport=table_soccer
+ - *Taekwondo* is shown if with sport=taekwondo
+ - *Tennis* is shown if with sport=tennis
+ - *Teqball* is shown if with sport=teqball
+ - *Toboggan* is shown if with sport=toboggan
+ - *Trampoline* is shown if with sport=trampoline
+ - *Ultimate frisbee* is shown if with sport=ultimate
+ - *Ultralight aviation* is shown if with sport=ultralight_aviation
+ - *Volleyball* is shown if with sport=volleyball
+ - *Wakeboarding* is shown if with sport=wakeboarding
+ - *Water polo* is shown if with sport=water_polo
+ - *Waterskiing* is shown if with sport=water_ski
+ - *Olympic weightlifting* is shown if with sport=weightlifting
+ - *Windsurfing* is shown if with sport=windsurfing
+ - *Wrestling* is shown if with sport=wrestling
+ - *Yoga* is shown if with sport=yoga
+ - *Zurkhaneh sport* is shown if with sport=zurkhaneh_sport
+
### leftover-questions
_This tagrendering has no question and is thus read-only_
diff --git a/Docs/Layers/surveillance_camera.md b/Docs/Layers/surveillance_camera.md
index 293ce77246..1996d993ba 100644
--- a/Docs/Layers/surveillance_camera.md
+++ b/Docs/Layers/surveillance_camera.md
@@ -20,7 +20,7 @@ This layer shows surveillance cameras and allows a contributor to update informa
- [camera_direction](#camera_direction)
- [Operator](#operator)
- [Surveillance type: public, outdoor, indoor](#surveillance-type-public,-outdoor,-indoor)
- - [is_indoor](#is_indoor)
+ - [camera_is_indoor](#camera_is_indoor)
- [Level](#level)
- [Surveillance:zone](#surveillancezone)
- [camera:mount](#cameramount)
@@ -59,7 +59,7 @@ Elements must match **all** of the following expressions:
| attribute | type | values which are supported by this layer |
-----|-----|----- |
|
[surveillance:type](https://wiki.openstreetmap.org/wiki/Key:surveillance:type) | Multiple choice | [camera](https://wiki.openstreetmap.org/wiki/Tag:surveillance:type%3Dcamera) [ALPR](https://wiki.openstreetmap.org/wiki/Tag:surveillance:type%3DALPR) |
-|
[camera:type](https://wiki.openstreetmap.org/wiki/Key:camera:type) | Multiple choice | [fixed](https://wiki.openstreetmap.org/wiki/Tag:camera:type%3Dfixed) [dome](https://wiki.openstreetmap.org/wiki/Tag:camera:type%3Ddome) [panning](https://wiki.openstreetmap.org/wiki/Tag:camera:type%3Dpanning) |
+|
[camera:type](https://wiki.openstreetmap.org/wiki/Key:camera:type) | Multiple choice | [fixed](https://wiki.openstreetmap.org/wiki/Tag:camera:type%3Dfixed) [dome](https://wiki.openstreetmap.org/wiki/Tag:camera:type%3Ddome) [panning](https://wiki.openstreetmap.org/wiki/Tag:camera:type%3Dpanning) [doorbell](https://wiki.openstreetmap.org/wiki/Tag:camera:type%3Ddoorbell) |
|
[camera:direction](https://wiki.openstreetmap.org/wiki/Key:camera:direction) | [direction](../SpecialInputElements.md#direction) | |
|
[operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | |
|
[surveillance](https://wiki.openstreetmap.org/wiki/Key:surveillance) | Multiple choice | [public](https://wiki.openstreetmap.org/wiki/Tag:surveillance%3Dpublic) [outdoor](https://wiki.openstreetmap.org/wiki/Tag:surveillance%3Doutdoor) [indoor](https://wiki.openstreetmap.org/wiki/Tag:surveillance%3Dindoor) |
@@ -87,6 +87,7 @@ The question is `What kind of camera is this?`
-
*A fixed (non-moving) camera* is shown if with camera:type=fixed
-
*A dome camera (which can turn)* is shown if with camera:type=dome
- *A panning camera* is shown if with camera:type=panning
+ -
*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, ...* is shown if with camera:type=doorbell
### camera_direction
@@ -108,22 +109,20 @@ The question is `What kind of surveillance is this camera?`
- *An outdoor, yet private area is surveilled (e.g. a parking lot, a fuel station, courtyard, entrance, private driveway, …)* is shown if with surveillance=outdoor
- *A private indoor area is surveilled, e.g. a shop, a private underground parking, …* is shown if with surveillance=indoor
-### is_indoor
+### camera_is_indoor
-The question is `Is the public space surveilled by this camera an indoor or outdoor space?`
+The question is `Is this camera located inside or outside?`
- *This camera is located indoors* is shown if with indoor=yes
- *This camera is located outdoors* is shown if with indoor=no
- *This camera is probably located outdoors* is shown if with indoor=. _This option cannot be chosen as answer_
-This tagrendering is only visible in the popup if the following condition is met: surveillance:type=public
-
### Level
The question is `On which level is this camera located?`
*Located on level {level}* is shown if `level` is set
-This tagrendering is only visible in the popup if the following condition is met: indoor=yes | surveillance:type=ye
+This tagrendering is only visible in the popup if the following condition is met: (indoor=yes | surveillance=indoor) & (surveillance:type=alpr | surveillance:type=camera) & camera:type!=doorbell
### Surveillance:zone
diff --git a/Docs/Layers/tactile_map.md b/Docs/Layers/tactile_map.md
new file mode 100644
index 0000000000..900cc32377
--- /dev/null
+++ b/Docs/Layers/tactile_map.md
@@ -0,0 +1,128 @@
+[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
+
+# tactile_map
+
+Layer showing tactile maps, which can be used by visually impaired people to navigate the city.
+
+ - This layer is shown at zoomlevel **10** and higher
+
+## Table of contents
+
+1. [Themes using this layer](#themes-using-this-layer)
+2. [Presets](#presets)
+3. [Basic tags for this layer](#basic-tags-for-this-layer)
+4. [Supported attributes](#supported-attributes)
+ - [images](#images)
+ - [description](#description)
+ - [braille](#braille)
+ - [braille_languages](#braille_languages)
+ - [embossed_letters](#embossed_letters)
+ - [embossed_letters_languages](#embossed_letters_languages)
+ - [website](#website)
+ - [leftover-questions](#leftover-questions)
+ - [move-button](#move-button)
+ - [delete-button](#delete-button)
+ - [lod](#lod)
+
+## Themes using this layer
+
+ - [blind_osm](https://mapcomplete.org/blind_osm)
+ - [maps](https://mapcomplete.org/maps)
+ - [personal](https://mapcomplete.org/personal)
+
+## Presets
+
+The following options to create new points are included:
+
+ - **a tactile map** which has the following tags:tourism=information & information=tactile_map
+
+## Basic tags for this layer
+
+Elements must match the expression **information=tactile_map**
+
+[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22information%22%3D%22tactile_map%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 |
+-----|-----|----- |
+|
[blind:description:en](https://wiki.openstreetmap.org/wiki/Key:blind:description:en) | [string](../SpecialInputElements.md#string) | |
+|
[braille](https://wiki.openstreetmap.org/wiki/Key:braille) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:braille%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:braille%3Dno) |
+|
[embossed_letters](https://wiki.openstreetmap.org/wiki/Key:embossed_letters) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:embossed_letters%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:embossed_letters%3Dno) |
+|
[website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | |
+
+### 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()}*
+
+### description
+
+The question is `What does this tactile map show?`
+*Description: {blind:description:en}.* is shown if `blind:description:en` is set
+
+### braille
+
+The question is `Is there braille text on this tactile map?`
+
+ - *This tactile map has braille text.* is shown if with braille=yes
+ - *This tactile map does not have braille text.* is shown if with braille=no
+
+### braille_languages
+
+_This tagrendering has no question and is thus read-only_
+*{language_chooser(tactile_writing:braille,In which languages is the braille text on this tactile map?,This map has braille text in &LBRACElanguage&RBRACE,This map has braille text in &LBRACElanguage&RBRACE,,)}*
+
+This tagrendering is only visible in the popup if the following condition is met: braille=yes
+
+### embossed_letters
+
+The question is `Are there embossed letters on this tactile map?`
+
+ - *This tactile map has embossed letters.* is shown if with embossed_letters=yes
+ - *This tactile map does not have embossed letters.* is shown if with embossed_letters=no
+
+### embossed_letters_languages
+
+_This tagrendering has no question and is thus read-only_
+*{language_chooser(tactile_writing:embossed,In which languages are the embossed letters on this tactile map?,This map has embossed letters in &LBRACElanguage&RBRACE,This map has embossed letters in &LBRACElanguage&RBRACE,,)}*
+
+This tagrendering is only visible in the popup if the following condition is met: embossed_letters=yes
+
+### website
+
+The question is `What is the website of {title()}?`
+*{website}* is shown if `website` is set
+
+ -
*{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_
+
+This tagrendering has labels
+`contact`
+
+### leftover-questions
+
+_This tagrendering has no question and is thus read-only_
+*{questions( ,)}*
+
+### 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/tactile_map/tactile_map.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/tactile_map/tactile_map.json)
diff --git a/Docs/Layers/tactile_model.md b/Docs/Layers/tactile_model.md
new file mode 100644
index 0000000000..affe4a8283
--- /dev/null
+++ b/Docs/Layers/tactile_model.md
@@ -0,0 +1,135 @@
+[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
+
+# tactile_model
+
+Layer showing tactile models, three-dimensional models of the surrounding area.
+
+ - This layer is shown at zoomlevel **10** and higher
+
+## Table of contents
+
+1. [Themes using this layer](#themes-using-this-layer)
+2. [Presets](#presets)
+3. [Basic tags for this layer](#basic-tags-for-this-layer)
+4. [Supported attributes](#supported-attributes)
+ - [images](#images)
+ - [description](#description)
+ - [braille](#braille)
+ - [braille_languages](#braille_languages)
+ - [embossed_letters](#embossed_letters)
+ - [embossed_letters_languages](#embossed_letters_languages)
+ - [scale](#scale)
+ - [website](#website)
+ - [leftover-questions](#leftover-questions)
+ - [move-button](#move-button)
+ - [delete-button](#delete-button)
+ - [lod](#lod)
+
+## Themes using this layer
+
+ - [blind_osm](https://mapcomplete.org/blind_osm)
+ - [maps](https://mapcomplete.org/maps)
+ - [personal](https://mapcomplete.org/personal)
+
+## Presets
+
+The following options to create new points are included:
+
+ - **a tactile model** which has the following tags:tourism=information & information=tactile_model
+
+## Basic tags for this layer
+
+Elements must match the expression **information=tactile_model**
+
+[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22information%22%3D%22tactile_model%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 |
+-----|-----|----- |
+|
[blind:description:en](https://wiki.openstreetmap.org/wiki/Key:blind:description:en) | [string](../SpecialInputElements.md#string) | |
+|
[braille](https://wiki.openstreetmap.org/wiki/Key:braille) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:braille%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:braille%3Dno) |
+|
[embossed_letters](https://wiki.openstreetmap.org/wiki/Key:embossed_letters) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:embossed_letters%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:embossed_letters%3Dno) |
+|
[scale](https://wiki.openstreetmap.org/wiki/Key:scale) | [string](../SpecialInputElements.md#string) | |
+|
[website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | |
+
+### 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()}*
+
+### description
+
+The question is `What does this tactile model show?`
+*Description: {blind:description:en}.* is shown if `blind:description:en` is set
+
+### braille
+
+The question is `Is there a braille description?`
+
+ - *There is a braille description.* is shown if with braille=yes
+ - *There is no braille description.* is shown if with braille=no
+
+### braille_languages
+
+_This tagrendering has no question and is thus read-only_
+*{language_chooser(tactile_writing:braille,In which languages is there a braille description?,This model has a braille description in &LBRACElanguage&LPARENS&RPARENS&RBRACE,This model has a braille description in &LBRACElanguage&RBRACE,,)}*
+
+This tagrendering is only visible in the popup if the following condition is met: braille=yes
+
+### embossed_letters
+
+The question is `Are there embossed letters describing the model?`
+
+ - *There are embossed letters describing the model.* is shown if with embossed_letters=yes
+ - *There are no embossed letters describing the model.* is shown if with embossed_letters=no
+
+### embossed_letters_languages
+
+_This tagrendering has no question and is thus read-only_
+*{language_chooser(tactile_writing:embossed_letters,In which languages are there embossed letters?,This model has embossed letters in &LBRACElanguage&LPARENS&RPARENS&RBRACE,This model has embossed letters in &LBRACElanguage&RBRACE,,)}*
+
+This tagrendering is only visible in the popup if the following condition is met: embossed_letters=yes
+
+### scale
+
+The question is `What scale is the model?`
+*The scale of this model is {scale}.* is shown if `scale` is set
+
+### website
+
+The question is `What is the website of {title()}?`
+*{website}* is shown if `website` is set
+
+ -
*{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_
+
+This tagrendering has labels
+`contact`
+
+### leftover-questions
+
+_This tagrendering has no question and is thus read-only_
+*{questions( ,)}*
+
+### 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/tactile_model/tactile_model.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/tactile_model/tactile_model.json)
diff --git a/Docs/Layers/walls_and_buildings.md b/Docs/Layers/walls_and_buildings.md
index 9ad5d36d4b..71e0124903 100644
--- a/Docs/Layers/walls_and_buildings.md
+++ b/Docs/Layers/walls_and_buildings.md
@@ -16,6 +16,7 @@ Special builtin layer providing all walls and buildings. This layer is useful in
- This layer is needed as dependency for layer [defibrillator](#defibrillator)
- This layer is needed as dependency for layer [entrance](#entrance)
- 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 [facadegardens](#facadegardens)
- This layer is needed as dependency for layer [parking_spaces_disabled](#parking_spaces_disabled)
@@ -44,6 +45,7 @@ Special builtin layer providing all walls and buildings. This layer is useful in
- [memorials](https://mapcomplete.org/memorials)
- [onwheels](https://mapcomplete.org/onwheels)
- [personal](https://mapcomplete.org/personal)
+ - [postboxes](https://mapcomplete.org/postboxes)
- [stations](https://mapcomplete.org/stations)
- [surveillance](https://mapcomplete.org/surveillance)
- [walls_and_buildings](https://mapcomplete.org/walls_and_buildings)
diff --git a/Docs/Making_Your_Own_Theme.md b/Docs/Making_Your_Own_Theme.md
index 3db8fe6bf7..ebc7e5061d 100644
--- a/Docs/Making_Your_Own_Theme.md
+++ b/Docs/Making_Your_Own_Theme.md
@@ -260,23 +260,22 @@ contributor). If that is not possible, send the JSON file and assets, e.g. as a
1) Fork this repository
2) Go to `assets/themes` and create a new directory named `yourtheme`
3) Create a new file named `yourtheme.json`, paste the theme configuration in there. You can find your theme configuration in
- the customThemeBuilder (the tab with the *Floppy disk* icon)
-4) Copy all the images into this new directory. **No external sources are allowed!** External image sources leak privacy
+ the customThemeBuilder (the tab with the *Floppy disk* icon
+4) Individual layers go into `assets/layers/
`{clear_all()}`
+### disabled_questions
+
+Shows which questions are disabled for every layer. Used in 'settings'
+
+#### Example usage of disabled_questions
+
+`{disabled_questions()}`
+
### auto_apply
A button to run many actions for many features at once. To effectively use this button, you'll need some ingredients:
diff --git a/Docs/TagInfo/mapcomplete_blind_osm.json b/Docs/TagInfo/mapcomplete_blind_osm.json
index 3c127559cc..f5f406a43e 100644
--- a/Docs/TagInfo/mapcomplete_blind_osm.json
+++ b/Docs/TagInfo/mapcomplete_blind_osm.json
@@ -662,18 +662,87 @@
},
{
"key": "crossing",
- "description": "Layer 'Crossings' shows crossing=unmarked with a fixed text, namely 'Crossing without crossing markings' 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)",
+ "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"
},
{
- "key": "crossing_ref",
- "description": "Layer 'Crossings' shows crossing_ref=zebra with a fixed text, namely 'This is a zebra 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=uncontrolled)",
+ "key": "crossing:markings",
+ "description": "Layer 'Crossings' shows and asks freeform values for key 'crossing:markings' (in the mapcomplete.org theme 'OSM for the blind')"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
},
{
- "key": "crossing_ref",
- "description": "Layer 'Crossings' shows crossing_ref= with a fixed text, namely 'This is not a zebra crossing' 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 crossing_ref. (This is only shown if crossing=uncontrolled)",
- "value": ""
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
},
{
"key": "crossing:island",
@@ -1291,6 +1360,132 @@
"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"
+ },
+ {
+ "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"
+ },
+ {
+ "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')"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "key": "website",
+ "description": "Layer 'Tactile Maps' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'OSM for the blind')"
+ },
+ {
+ "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')"
+ },
+ {
+ "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"
+ },
+ {
+ "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')"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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')"
}
]
}
\ No newline at end of file
diff --git a/Docs/TagInfo/mapcomplete_clock.json b/Docs/TagInfo/mapcomplete_clock.json
index 799ed85dd7..e868bc49ef 100644
--- a/Docs/TagInfo/mapcomplete_clock.json
+++ b/Docs/TagInfo/mapcomplete_clock.json
@@ -46,9 +46,14 @@
},
{
"key": "support",
- "description": "Layer 'Clocks' shows support=wall_mounted with a fixed text, namely 'This clock is mounted on a wall' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')",
+ "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"
},
+ {
+ "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"
+ },
{
"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')",
@@ -79,19 +84,29 @@
"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"
},
+ {
+ "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"
+ },
+ {
+ "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"
+ },
{
"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')",
+ "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"
},
{
"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')",
+ "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"
},
{
"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')",
+ "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"
},
{
diff --git a/Docs/TagInfo/mapcomplete_cycle_infra.json b/Docs/TagInfo/mapcomplete_cycle_infra.json
index 9f248c1ace..342d51f876 100644
--- a/Docs/TagInfo/mapcomplete_cycle_infra.json
+++ b/Docs/TagInfo/mapcomplete_cycle_infra.json
@@ -777,18 +777,87 @@
},
{
"key": "crossing",
- "description": "Layer 'Crossings' shows crossing=unmarked with a fixed text, namely 'Crossing without crossing markings' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway=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"
},
{
- "key": "crossing_ref",
- "description": "Layer 'Crossings' shows crossing_ref=zebra with a fixed text, namely 'This is a zebra crossing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if crossing=uncontrolled)",
+ "key": "crossing:markings",
+ "description": "Layer 'Crossings' shows and asks freeform values for key 'crossing:markings' (in the mapcomplete.org theme 'Bicycle infrastructure')"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
},
{
- "key": "crossing_ref",
- "description": "Layer 'Crossings' shows crossing_ref= with a fixed text, namely 'This is not a zebra crossing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') Picking this answer will delete the key crossing_ref. (This is only shown if crossing=uncontrolled)",
- "value": ""
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
},
{
"key": "bicycle",
@@ -994,6 +1063,70 @@
{
"key": "website",
"description": "Layer 'Bicycle counters' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Bicycle infrastructure')"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
}
]
}
\ No newline at end of file
diff --git a/Docs/TagInfo/mapcomplete_cyclofix.json b/Docs/TagInfo/mapcomplete_cyclofix.json
index eded2dccfa..ae42f740d3 100644
--- a/Docs/TagInfo/mapcomplete_cyclofix.json
+++ b/Docs/TagInfo/mapcomplete_cyclofix.json
@@ -2222,11 +2222,6 @@
"description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike cleaning service showing features with this tag",
"value": "bicycle_wash"
},
- {
- "key": "amenity",
- "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike cleaning service showing features with this tag",
- "value": "bike_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))"
@@ -2253,37 +2248,57 @@
},
{
"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!=bike_wash & amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)"
+ "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!=bike_wash & amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)",
+ "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!=bike_wash & amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)",
+ "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!=bike_wash & amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)",
+ "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": ""
},
{
"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=bike_wash | amenity=bicycle_wash)"
+ "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)"
},
{
"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=bike_wash | amenity=bicycle_wash)",
+ "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"
},
{
"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=bike_wash | amenity=bicycle_wash)",
+ "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"
},
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
{
"key": "amenity",
"description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bicycle rental showing features with this tag",
diff --git a/Docs/TagInfo/mapcomplete_disaster_response.json b/Docs/TagInfo/mapcomplete_disaster_response.json
index 5fc64d7501..3440dc983f 100644
--- a/Docs/TagInfo/mapcomplete_disaster_response.json
+++ b/Docs/TagInfo/mapcomplete_disaster_response.json
@@ -929,21 +929,6 @@
"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"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Pharmacies' shows wheelchair=yes with a fixed text, namely 'This pharmacy is easy to access on a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')",
- "value": "yes"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Pharmacies' shows wheelchair=no with a fixed text, namely 'This pharmacy is hard to access on a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')",
- "value": "no"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Pharmacies' shows wheelchair=limited with a fixed text, namely 'This pharmacy has limited access for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')",
- "value": "limited"
}
]
}
\ No newline at end of file
diff --git a/Docs/TagInfo/mapcomplete_healthcare.json b/Docs/TagInfo/mapcomplete_healthcare.json
index f0bf20dec2..dc173b0bd2 100644
--- a/Docs/TagInfo/mapcomplete_healthcare.json
+++ b/Docs/TagInfo/mapcomplete_healthcare.json
@@ -407,21 +407,6 @@
"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"
},
- {
- "key": "wheelchair",
- "description": "Layer 'Pharmacies' shows wheelchair=yes with a fixed text, namely 'This pharmacy is easy to access on a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')",
- "value": "yes"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Pharmacies' shows wheelchair=no with a fixed text, namely 'This pharmacy is hard to access on a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')",
- "value": "no"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Pharmacies' shows wheelchair=limited with a fixed text, namely 'This pharmacy has limited access for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')",
- "value": "limited"
- },
{
"key": "shop",
"description": "The MapComplete theme Healthcare has a layer Shop showing features with this tag"
diff --git a/Docs/TagInfo/mapcomplete_kerbs_and_crossings.json b/Docs/TagInfo/mapcomplete_kerbs_and_crossings.json
index de1f14002c..848d66d8ed 100644
--- a/Docs/TagInfo/mapcomplete_kerbs_and_crossings.json
+++ b/Docs/TagInfo/mapcomplete_kerbs_and_crossings.json
@@ -657,18 +657,87 @@
},
{
"key": "crossing",
- "description": "Layer 'Crossings' shows crossing=unmarked with a fixed text, namely 'Crossing without crossing markings' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway=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"
},
{
- "key": "crossing_ref",
- "description": "Layer 'Crossings' shows crossing_ref=zebra with a fixed text, namely 'This is a zebra crossing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if crossing=uncontrolled)",
+ "key": "crossing:markings",
+ "description": "Layer 'Crossings' shows and asks freeform values for key 'crossing:markings' (in the mapcomplete.org theme 'Kerbs and crossings')"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
},
{
- "key": "crossing_ref",
- "description": "Layer 'Crossings' shows crossing_ref= with a fixed text, namely 'This is not a zebra crossing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') Picking this answer will delete the key crossing_ref. (This is only shown if crossing=uncontrolled)",
- "value": ""
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
},
{
"key": "bicycle",
diff --git a/Docs/TagInfo/mapcomplete_maps.json b/Docs/TagInfo/mapcomplete_maps.json
index 28bb333117..10937f3b1e 100644
--- a/Docs/TagInfo/mapcomplete_maps.json
+++ b/Docs/TagInfo/mapcomplete_maps.json
@@ -127,6 +127,132 @@
"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"
+ },
+ {
+ "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"
+ },
+ {
+ "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')"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "key": "website",
+ "description": "Layer 'Tactile Maps' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'A map of maps')"
+ },
+ {
+ "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')"
+ },
+ {
+ "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"
+ },
+ {
+ "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')"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "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')"
}
]
}
\ No newline at end of file
diff --git a/Docs/TagInfo/mapcomplete_onwheels.json b/Docs/TagInfo/mapcomplete_onwheels.json
index cff43f7a38..90a65d7a69 100644
--- a/Docs/TagInfo/mapcomplete_onwheels.json
+++ b/Docs/TagInfo/mapcomplete_onwheels.json
@@ -3192,21 +3192,6 @@
"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"
},
- {
- "key": "wheelchair",
- "description": "Layer 'Pharmacies' shows wheelchair=yes with a fixed text, namely 'This pharmacy is easy to access on a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')",
- "value": "yes"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Pharmacies' shows wheelchair=no with a fixed text, namely 'This pharmacy is hard to access on a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')",
- "value": "no"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Pharmacies' shows wheelchair=limited with a fixed text, namely 'This pharmacy has limited access for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')",
- "value": "limited"
- },
{
"key": "amenity",
"description": "The MapComplete theme OnWheels has a layer Doctors showing features with this tag",
diff --git a/Docs/TagInfo/mapcomplete_personal.json b/Docs/TagInfo/mapcomplete_personal.json
deleted file mode 100644
index 4324f79567..0000000000
--- a/Docs/TagInfo/mapcomplete_personal.json
+++ /dev/null
@@ -1,21386 +0,0 @@
-{
- "data_format": 1,
- "project": {
- "name": "MapComplete Personal theme",
- "description": "Create a personal theme based on all the available layers of all themes",
- "project_url": "https://mapcomplete.org/personal",
- "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/",
- "icon_url": "https://mapcomplete.org/assets/svg/addSmall.svg",
- "contact_name": "Pieter Vander Vennet",
- "contact_email": "pietervdvn@posteo.net"
- },
- "tags": [
- {
- "key": "advertising",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "relief"
- },
- {
- "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 'Personal theme') (This is only shown if advertising!=screen & advertising!=flag & advertising!=tarp & advertising!=wall_painting & advertising!=sign & advertising!=board)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if advertising!=screen & advertising!=flag & advertising!=tarp & advertising!=wall_painting & advertising!=sign & advertising!=board)",
- "value": "digital_display"
- },
- {
- "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 'Personal theme') (This is only shown if advertising!=screen & advertising!=flag & advertising!=tarp & advertising!=wall_painting & advertising!=sign & advertising!=board)",
- "value": "trivision_blades"
- },
- {
- "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 'Personal theme') (This is only shown if advertising!=screen & advertising!=flag & advertising!=tarp & advertising!=wall_painting & advertising!=sign & advertising!=board)",
- "value": "winding_posters"
- },
- {
- "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 'Personal theme') (This is only shown if advertising!=screen & advertising!=flag & advertising!=tarp & advertising!=wall_painting & advertising!=sign & advertising!=board)",
- "value": "revolving"
- },
- {
- "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 'Personal theme') (This is only shown if advertising!=screen)",
- "value": "neon"
- },
- {
- "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 'Personal theme') (This is only shown if advertising!=screen)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if advertising!=screen)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if advertising!=screen)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if advertising!=screen)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if advertising!=screen)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if advertising!=screen)",
- "value": "no"
- },
- {
- "key": "operator",
- "description": "Layer 'Advertisement' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "commercial"
- },
- {
- "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 'Personal theme')",
- "value": "local"
- },
- {
- "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 'Personal theme')",
- "value": "safety"
- },
- {
- "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 'Personal theme')",
- "value": "political"
- },
- {
- "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 'Personal theme')",
- "value": "showbiz"
- },
- {
- "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 'Personal theme')",
- "value": "non_profit"
- },
- {
- "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 'Personal theme')",
- "value": "opinion"
- },
- {
- "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 'Personal theme')",
- "value": "religion"
- },
- {
- "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 'Personal theme')",
- "value": "funding"
- },
- {
- "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 'Personal theme')",
- "value": "map"
- },
- {
- "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 'Personal theme') (This is only shown if _referencing_ways= & (advertising=poster_box | advertising=screen | advertising=billboard))",
- "value": "1"
- },
- {
- "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 'Personal theme') (This is only shown if _referencing_ways= & (advertising=poster_box | advertising=screen | advertising=billboard))",
- "value": "2"
- },
- {
- "key": "ref",
- "description": "Layer 'Advertisement' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Personal theme') (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 'Personal theme')",
- "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 'Personal theme') Picking this answer will delete the key historic.",
- "value": ""
- },
- {
- "key": "aerialway",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "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 'Personal theme')",
- "value": "cable_car"
- },
- {
- "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 'Personal theme')",
- "value": "gondola"
- },
- {
- "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 'Personal theme')",
- "value": "chair_lift"
- },
- {
- "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 'Personal theme')",
- "value": "mixed"
- },
- {
- "key": "aerialway",
- "description": "Layer 'Aerialways' shows aerialway=drag_lift with a fixed text, namely 'A drag lift' (in the mapcomplete.org theme 'Personal theme')",
- "value": "drag_lift"
- },
- {
- "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 'Personal theme')",
- "value": "t-bar"
- },
- {
- "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 'Personal theme')",
- "value": "j-bar"
- },
- {
- "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 'Personal theme')",
- "value": "platter"
- },
- {
- "key": "aerialway",
- "description": "Layer 'Aerialways' shows aerialway=rope_tow with a fixed text, namely 'A tow line which which drags skieers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme')",
- "value": "rope_tow"
- },
- {
- "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 'Personal theme')",
- "value": "magic_carpet"
- },
- {
- "key": "aerialway",
- "description": "Layer 'Aerialways' shows aerialway=zip_line with a fixed text, namely 'A zip line. (A touristical attraction where adventurous people go down at high speeds) ' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme')",
- "value": "zip_line"
- },
- {
- "key": "duration",
- "description": "Layer 'Aerialways' shows and asks freeform values for key 'duration' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "aerialway:occupancy",
- "description": "Layer 'Aerialways' shows and asks freeform values for key 'aerialway:occupancy' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Aerialways' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "emergency",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "key": "name",
- "description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "addr:street",
- "description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'addr:street' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "addr:place",
- "description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'addr:place' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator",
- "description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:type",
- "description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'operator:type' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "key": "name",
- "description": "Layer 'Animal shelters' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Animal shelters' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Animal shelters' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Animal shelters' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Animal shelters' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Animal shelters' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:email",
- "description": "Layer 'Animal shelters' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "adoption"
- },
- {
- "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 'Personal theme')",
- "value": "sanctuary"
- },
- {
- "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 'Personal theme')",
- "value": "release"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Animal shelters' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "key": "animal_shelter",
- "description": "Layer 'Animal shelters' shows and asks freeform values for key 'animal_shelter' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "dog"
- },
- {
- "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 'Personal theme')",
- "value": "cat"
- },
- {
- "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 'Personal theme')",
- "value": "horse"
- },
- {
- "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 'Personal theme')",
- "value": "bird"
- },
- {
- "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 'Personal theme')",
- "value": "wildlife"
- },
- {
- "key": "tourism",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "key": "image",
- "description": "The layer 'Artworks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "panoramax",
- "description": "The layer 'Artworks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Artworks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Artworks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Artworks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "artwork_type",
- "description": "Layer 'Artworks' shows and asks freeform values for key 'artwork_type' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "woodcarving"
- },
- {
- "key": "artist:wikidata",
- "description": "Layer 'Artworks' shows and asks freeform values for key 'artist:wikidata' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "artist_name",
- "description": "Layer 'Artworks' shows and asks freeform values for key 'artist_name' (in the mapcomplete.org theme 'Personal theme') (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 'Personal theme')"
- },
- {
- "key": "wikidata",
- "description": "Layer 'Artworks' shows and asks freeform values for key 'wikidata' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "wikipedia",
- "description": "Layer 'Artworks' shows wikipedia~.+ with a fixed text, namely '{wikipedia():max-height:25rem}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "wikidata",
- "description": "Layer 'Artworks' shows wikidata= with a fixed text, namely 'No Wikipedia page has been linked yet' (in the mapcomplete.org theme 'Personal theme') 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 'Personal theme') (This is only shown if subject:wikidata~.+)"
- },
- {
- "key": "historic",
- "description": "Layer 'Artworks' shows historic=memorial with a fixed text, namely 'This artwork also serves as a memorial' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme')",
- "value": "memorial"
- },
- {
- "key": "historic",
- "description": "Layer 'Artworks' shows historic= with a fixed text, namely 'This artwork does not serve as a memorial' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') 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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (This is only shown if memorial!=bench & historic=memorial)",
- "value": "yes"
- },
- {
- "key": "amenity",
- "description": "Layer 'Artworks' shows amenity=bench with a fixed text, namely 'This artwork also serves as a bench' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme')",
- "value": "bench"
- },
- {
- "key": "amenity",
- "description": "Layer 'Artworks' shows amenity= with a fixed text, namely 'This artwork does not serve as a bench' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') 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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') 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 'Personal theme') (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 'Personal theme') (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 'Personal theme') Picking this answer will delete the key inscription. (This is only shown if amenity=bench)",
- "value": ""
- },
- {
- "key": "historic",
- "description": "Layer 'Artworks' shows historic=memorial with a fixed text, namely 'This bench is a memorial for someone or something' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork) & amenity=bench)",
- "value": "memorial"
- },
- {
- "key": "historic",
- "description": "Layer 'Artworks' shows historic= & not:historic=memorial with a fixed text, namely 'This bench is a not a memorial for someone or something' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') Picking this answer will delete the key historic. (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork) & amenity=bench)",
- "value": ""
- },
- {
- "key": "not:historic",
- "description": "Layer 'Artworks' shows historic= & not:historic=memorial with a fixed text, namely 'This bench is a not a memorial for someone or something' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork) & amenity=bench)",
- "value": "memorial"
- },
- {
- "key": "emergency",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "key": "name",
- "description": "Layer 'Emergency assembly points' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator",
- "description": "Layer 'Emergency assembly points' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "repair",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "key": "name",
- "description": "Layer 'Repair cafés and assisted repair workshops' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Repair cafés and assisted repair workshops' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Repair cafés and assisted repair workshops' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer ATMs showing features with this tag",
- "value": "atm"
- },
- {
- "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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "key": "brand",
- "description": "Layer 'ATMs' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator",
- "description": "Layer 'ATMs' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Personal theme') (This is only shown if amenity!=bank)"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'ATMs' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "24/7"
- },
- {
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key cash_out.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key cash_in.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if (cash_out= | cash_out=yes) & (_currency= | _currency~^(.*EUR.*)$))",
- "value": "5 EUR"
- },
- {
- "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 'Personal theme') (This is only shown if (cash_out= | cash_out=yes) & (_currency= | _currency~^(.*EUR.*)$))",
- "value": "10 EUR"
- },
- {
- "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 'Personal theme') (This is only shown if (cash_out= | cash_out=yes) & (_currency= | _currency~^(.*EUR.*)$))",
- "value": "20 EUR"
- },
- {
- "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 'Personal theme') (This is only shown if (cash_out= | cash_out=yes) & (_currency= | _currency~^(.*EUR.*)$))",
- "value": "50 EUR"
- },
- {
- "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 'Personal theme') (This is only shown if (cash_out= | cash_out=yes) & (_currency= | _currency~^(.*EUR.*)$))",
- "value": "100 EUR"
- },
- {
- "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 'Personal theme') (This is only shown if (cash_out= | cash_out=yes) & (_currency= | _currency~^(.*EUR.*)$))",
- "value": "200 EUR"
- },
- {
- "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 'Personal theme') (This is only shown if (cash_out= | cash_out=yes) & (_currency= | _currency~^(.*EUR.*)$))",
- "value": "500 EUR"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Banks showing features with this tag",
- "value": "bank"
- },
- {
- "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 'Personal theme') (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"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "separate"
- },
- {
- "key": "barrier",
- "description": "The MapComplete theme Personal theme has a layer Barriers showing features with this tag",
- "value": "bollard"
- },
- {
- "key": "barrier",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "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 'Personal theme') (This is only shown if _referencing_ways~.+)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if _referencing_ways~.+)",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "bollard"
- },
- {
- "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 'Personal theme')",
- "value": "cycle_barrier"
- },
- {
- "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 'Personal theme') (This is only shown if barrier=bollard)",
- "value": "removable"
- },
- {
- "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 'Personal theme') (This is only shown if barrier=bollard)",
- "value": "fixed"
- },
- {
- "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 'Personal theme') (This is only shown if barrier=bollard)",
- "value": "foldable"
- },
- {
- "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 'Personal theme') (This is only shown if barrier=bollard)",
- "value": "flexible"
- },
- {
- "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 'Personal theme') (This is only shown if barrier=bollard)",
- "value": "rising"
- },
- {
- "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 'Personal theme') (This is only shown if barrier=cycle_barrier)",
- "value": "single"
- },
- {
- "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 'Personal theme') (This is only shown if barrier=cycle_barrier)",
- "value": "double"
- },
- {
- "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 'Personal theme') (This is only shown if barrier=cycle_barrier)",
- "value": "triple"
- },
- {
- "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 'Personal theme') (This is only shown if barrier=cycle_barrier)",
- "value": "squeeze"
- },
- {
- "key": "maxwidth:physical",
- "description": "Layer 'Barriers' shows and asks freeform values for key 'maxwidth:physical' (in the mapcomplete.org theme 'Personal theme') (This is only shown if cycle_barrier!=double & cycle_barrier!=triple & _referencing_ways~.+)"
- },
- {
- "key": "width:separation",
- "description": "Layer 'Barriers' shows and asks freeform values for key 'width:separation' (in the mapcomplete.org theme 'Personal theme') (This is only shown if cycle_barrier=double | cycle_barrier=triple)"
- },
- {
- "key": "width:opening",
- "description": "Layer 'Barriers' shows and asks freeform values for key 'width:opening' (in the mapcomplete.org theme 'Personal theme') (This is only shown if cycle_barrier=double | cycle_barrier=triple)"
- },
- {
- "key": "overlap",
- "description": "Layer 'Barriers' shows and asks freeform values for key 'overlap' (in the mapcomplete.org theme 'Personal theme') (This is only shown if cycle_barrier=double | cycle_barrier=triple)"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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 'Public' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "access",
- "description": "Layer 'BBQ' shows access=no with a fixed text, namely 'No access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "access",
- "description": "Layer 'BBQ' shows access=private with a fixed text, namely 'Private' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme')",
- "value": "private"
- },
- {
- "key": "access",
- "description": "Layer 'BBQ' 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 'Personal theme')",
- "value": "permissive"
- },
- {
- "key": "access",
- "description": "Layer 'BBQ' 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 'Personal theme')",
- "value": "customers"
- },
- {
- "key": "access",
- "description": "Layer 'BBQ' shows access=permit with a fixed text, namely 'Access only for authorized persons' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme')",
- "value": "permit"
- },
- {
- "key": "covered",
- "description": "Layer 'BBQ' shows covered=no with a fixed text, namely 'The grill is not covered' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "covered",
- "description": "Layer 'BBQ' shows covered=yes with a fixed text, namely 'The grill is covered' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "fuel",
- "description": "Layer 'BBQ' shows fuel=wood with a fixed text, namely 'Wood' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme')",
- "value": "wood"
- },
- {
- "key": "fuel",
- "description": "Layer 'BBQ' shows fuel=charcoal with a fixed text, namely 'Charcoal' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme')",
- "value": "charcoal"
- },
- {
- "key": "fuel",
- "description": "Layer 'BBQ' shows fuel=electric with a fixed text, namely 'Electric' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme')",
- "value": "electric"
- },
- {
- "key": "fuel",
- "description": "Layer 'BBQ' shows fuel=gas with a fixed text, namely 'Gas' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme')",
- "value": "gas"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "seats",
- "description": "Layer 'Benches' shows and asks freeform values for key 'seats' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "material",
- "description": "Layer 'Benches' shows and asks freeform values for key 'material' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "steel"
- },
- {
- "key": "direction",
- "description": "Layer 'Benches' shows and asks freeform values for key 'direction' (in the mapcomplete.org theme 'Personal theme') (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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "yellow"
- },
- {
- "key": "survey:date",
- "description": "Layer 'Benches' shows and asks freeform values for key 'survey:date' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme') 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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme') Picking this answer will delete the key inscription.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "artwork"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme') 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 'Personal theme') (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 'Personal theme') 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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (This is only shown if tourism=artwork)"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Benches at public transport stops showing features with this tag",
- "value": "bus_stop"
- },
- {
- "key": "bench",
- "description": "The MapComplete theme Personal theme has a layer Benches at public transport stops showing features with this tag",
- "value": "yes"
- },
- {
- "key": "bench",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "key": "name",
- "description": "Layer 'Benches at public transport stops' shows values with key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "stand_up_bench"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "man_made",
- "description": "The MapComplete theme Personal theme has a layer Bicycle counters showing features with this tag",
- "value": "monitoring_station"
- },
- {
- "key": "monitoring:bicycle",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "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 'Personal theme')",
- "value": "digital"
- },
- {
- "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 'Personal theme')",
- "value": "analog"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "name",
- "description": "Layer 'Bicycle counters' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "start_date",
- "description": "Layer 'Bicycle counters' shows and asks freeform values for key 'start_date' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "clock"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key amenity.",
- "value": ""
- },
- {
- "key": "ref",
- "description": "Layer 'Bicycle counters' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "website",
- "description": "Layer 'Bicycle counters' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "key": "name",
- "description": "Layer 'Bicycle library' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Bicycle library' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Bicycle library' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Bicycle library' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Bicycle library' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Bicycle library' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:email",
- "description": "Layer 'Bicycle library' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Bicycle library' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "key": "charge",
- "description": "Layer 'Bicycle library' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key charge.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "€20warranty + €20/year"
- },
- {
- "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 'Personal theme')",
- "value": "child"
- },
- {
- "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 'Personal theme')",
- "value": "adult"
- },
- {
- "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 'Personal theme')",
- "value": "disabled"
- },
- {
- "key": "description",
- "description": "Layer 'Bicycle library' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Bicycle rental showing features with this tag",
- "value": "bicycle_rental"
- },
- {
- "key": "bicycle_rental",
- "description": "The MapComplete theme Personal theme has a layer Bicycle rental showing features with this tag"
- },
- {
- "key": "service:bicycle:rental",
- "description": "The MapComplete theme Personal theme has a layer Bicycle rental showing features with this tag",
- "value": "yes"
- },
- {
- "key": "rental",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=bicycle_rental)",
- "value": "rental"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=bicycle_rental)",
- "value": "shop"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=bicycle_rental)",
- "value": "rental"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=bicycle_rental)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=bicycle_rental)",
- "value": "bicycle"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=bicycle_rental)",
- "value": "docking_station"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=bicycle_rental)",
- "value": "key_dispensing_machine"
- },
- {
- "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 'Personal theme') (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 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Bicycle rental' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Bicycle rental' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:email",
- "description": "Layer 'Bicycle rental' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (This is only shown if shop=)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if shop=)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (This is only shown if rental~^(.*tandem_bicycle.*)$)"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Bike cafe showing features with this tag",
- "value": "pub"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Bike cafe showing features with this tag",
- "value": "bar"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Bike cafe showing features with this tag",
- "value": "cafe"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Bike cafe showing features with this tag",
- "value": "restaurant"
- },
- {
- "key": "pub",
- "description": "The MapComplete theme Personal theme has a layer Bike cafe showing features with this tag",
- "value": "cycling"
- },
- {
- "key": "pub",
- "description": "The MapComplete theme Personal theme has a layer Bike cafe showing features with this tag",
- "value": "bicycle"
- },
- {
- "key": "theme",
- "description": "The MapComplete theme Personal theme has a layer Bike cafe showing features with this tag",
- "value": "cycling"
- },
- {
- "key": "theme",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "key": "name",
- "description": "Layer 'Bike cafe' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "website",
- "description": "Layer 'Bike cafe' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Bike cafe' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Bike cafe' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Bike cafe' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Bike cafe' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:email",
- "description": "Layer 'Bike cafe' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Bike cafe' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "key": "service:bicycle:cleaning",
- "description": "The MapComplete theme Personal theme has a layer Bike cleaning service showing features with this tag",
- "value": "yes"
- },
- {
- "key": "service:bicycle:cleaning",
- "description": "The MapComplete theme Personal theme has a layer Bike cleaning service showing features with this tag",
- "value": "diy"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Bike cleaning service showing features with this tag",
- "value": "bicycle_wash"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Bike cleaning service showing features with this tag",
- "value": "bike_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 'Personal theme') (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 'Personal theme') (This is only shown if amenity!=bike_wash & 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 'Personal theme') (This is only shown if amenity!=bike_wash & 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 'Personal theme') (This is only shown if amenity!=bike_wash & 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 'Personal theme') Picking this answer will delete the key service:bicycle:cleaning:charge. (This is only shown if amenity!=bike_wash & amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)",
- "value": ""
- },
- {
- "key": "charge",
- "description": "Layer 'Bike cleaning service' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Personal theme') (This is only shown if amenity=bike_wash | amenity=bicycle_wash)"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=bike_wash | amenity=bicycle_wash)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=bike_wash | amenity=bicycle_wash)",
- "value": "yes"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "key": "bicycle_parking",
- "description": "Layer 'Bike parking' shows and asks freeform values for key 'bicycle_parking' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "stands"
- },
- {
- "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 'Personal theme')",
- "value": "safe_loops"
- },
- {
- "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 'Personal theme')",
- "value": "wall_loops"
- },
- {
- "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 'Personal theme')",
- "value": "handlebar_holder"
- },
- {
- "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 'Personal theme')",
- "value": "rack"
- },
- {
- "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 'Personal theme')",
- "value": "two_tier"
- },
- {
- "key": "bicycle_parking",
- "description": "Layer 'Bike parking' shows bicycle_parking=shed with a fixed text, namely 'Shed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme')",
- "value": "shed"
- },
- {
- "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 'Personal theme')",
- "value": "bollard"
- },
- {
- "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 'Personal theme')",
- "value": "floor"
- },
- {
- "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 'Personal theme')",
- "value": "lockers"
- },
- {
- "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 'Personal theme')",
- "value": "lean_and_stick"
- },
- {
- "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 'Personal theme')",
- "value": "underground"
- },
- {
- "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 'Personal theme')",
- "value": "surface"
- },
- {
- "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 'Personal theme')",
- "value": "rooftop"
- },
- {
- "key": "location",
- "description": "Layer 'Bike parking' shows location= with a fixed text, namely 'Surface level parking' (in the mapcomplete.org theme 'Personal theme') Picking this answer will delete the key location.",
- "value": ""
- },
- {
- "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 'Personal theme') (This is only shown if bicycle_parking!=shed & location!=underground)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if bicycle_parking!=shed & location!=underground)",
- "value": "no"
- },
- {
- "key": "capacity",
- "description": "Layer 'Bike parking' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "access",
- "description": "Layer 'Bike parking' shows and asks freeform values for key 'access' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "customers"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "private"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "charge",
- "description": "Layer 'Bike parking' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Personal theme') (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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "key": "operator",
- "description": "Layer 'Bike parking' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:phone",
- "description": "Layer 'Bike parking' shows and asks freeform values for key 'operator:phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Bike parking' shows phone~.+ with a fixed text, namely '{phone}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Bike parking' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:website",
- "description": "Layer 'Bike parking' shows and asks freeform values for key 'operator:website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Bike parking' shows website~.+ with a fixed text, namely '{website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Bike parking' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:email",
- "description": "Layer 'Bike parking' shows and asks freeform values for key 'operator:email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "designated"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "capacity:cargo_bike",
- "description": "Layer 'Bike parking' shows and asks freeform values for key 'capacity:cargo_bike' (in the mapcomplete.org theme 'Personal theme') (This is only shown if capacity:cargo_bike~.+ | cargo_bike~^(designated|yes)$)"
- },
- {
- "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 'Personal theme') (This is only shown if capacity:cargo_bike~.+ | cargo_bike~^(designated|yes)$)",
- "value": "no"
- },
- {
- "key": "maxstay",
- "description": "Layer 'Bike parking' shows and asks freeform values for key 'maxstay' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if service:bicycle:pump=yes)",
- "value": "broken"
- },
- {
- "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 'Personal theme') (This is only shown if service:bicycle:pump=yes)",
- "value": "operational"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "access",
- "description": "Layer 'Bicycle pump and repair' shows access=public with a fixed text, namely 'Publicly accessible' (in the mapcomplete.org theme 'Personal theme')",
- "value": "public"
- },
- {
- "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 'Personal theme')",
- "value": "customers"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "operator",
- "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme') (This is only shown if service:bicycle:tools=yes)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if service:bicycle:tools=yes)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if service:bicycle:tools=yes)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if service:bicycle:tools=yes)",
- "value": "no"
- },
- {
- "key": "valves",
- "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'valves' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "sclaverand"
- },
- {
- "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 'Personal theme')",
- "value": "dunlop"
- },
- {
- "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 'Personal theme')",
- "value": "schrader"
- },
- {
- "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 'Personal theme') (This is only shown if service:bicycle:pump=yes)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if service:bicycle:pump=yes)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if service:bicycle:pump=yes)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if service:bicycle:pump=yes)",
- "value": "no"
- },
- {
- "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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') 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 'Personal theme') (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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "-1"
- },
- {
- "key": "shop",
- "description": "The MapComplete theme Personal theme has a layer Bike repair/shop showing features with this tag",
- "value": "bicycle"
- },
- {
- "key": "service:bicycle:retail",
- "description": "The MapComplete theme Personal theme has a layer Bike repair/shop showing features with this tag",
- "value": "yes"
- },
- {
- "key": "service:bicycle:repair",
- "description": "The MapComplete theme Personal theme has a layer Bike repair/shop showing features with this tag",
- "value": "yes"
- },
- {
- "key": "shop",
- "description": "The MapComplete theme Personal theme has a layer Bike repair/shop showing features with this tag",
- "value": "sports"
- },
- {
- "key": "sport",
- "description": "The MapComplete theme Personal theme has a layer Bike repair/shop showing features with this tag",
- "value": "bicycle"
- },
- {
- "key": "sport",
- "description": "The MapComplete theme Personal theme has a layer Bike repair/shop showing features with this tag",
- "value": "cycling"
- },
- {
- "key": "sport",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "key": "name",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "shop",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'shop' (in the mapcomplete.org theme 'Personal theme') (This is only shown if craft=)"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "bicycle_rental"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "agrarian"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "alcohol"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "anime"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "antiques"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "appliance"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "art"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "baby_goods"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "bag"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "bakery"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "bathroom_furnishing"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "beauty"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "bed"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "beverages"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "bicycle"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "boat"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "bookmaker"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "books"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "brewing_supplies"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "butcher"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "camera"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "candles"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "cannabis"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "car"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "car_parts"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "car_repair"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "caravan"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "carpet"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "catalogue"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "charity"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "cheese"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "chemist"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "chocolate"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "clothes"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "coffee"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "collector"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "computer"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "confectionery"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "convenience"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "copyshop"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "cosmetics"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "country_store"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "craft"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "curtain"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "dairy"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "deli"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "department_store"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "doityourself"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "doors"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "dry_cleaning"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "e-cigarette"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "electrical"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "electronics"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "erotic"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "fabric"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "farm"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "fashion_accessories"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "fireplace"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "fishing"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "flooring"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "florist"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "frame"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "frozen_food"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "fuel"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "funeral_directors"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "furniture"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "games"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "garden_centre"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "gas"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "general"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "gift"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "greengrocer"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "hairdresser"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "hairdresser_supply"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "hardware"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "health_food"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "hearing_aids"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "herbalist"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "hifi"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "honey"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "household_linen"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "houseware"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "hunting"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "interior_decoration"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "jewelry"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "kiosk"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "kitchen"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "laundry"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "leather"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "lighting"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "locksmith"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "lottery"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "mall"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "massage"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "medical_supply"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "military_surplus"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "mobile_phone"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "model"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "money_lender"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "motorcycle"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "motorcycle_repair"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "music"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "musical_instrument"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "newsagent"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "nutrition_supplements"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "nuts"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "optician"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "outdoor"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "outpost"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "paint"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "party"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "pasta"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "pastry"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "pawnbroker"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "perfumery"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "pet"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "pet_grooming"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "photo"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "pottery"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "printer_ink"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "psychic"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "pyrotechnics"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "radiotechnics"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "religion"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "rental"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "repair"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "rice"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "scuba_diving"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "seafood"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "second_hand"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "sewing"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "shoe_repair"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "shoes"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "spices"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "sports"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "stationery"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "storage_rental"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "supermarket"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "swimming_pool"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "tailor"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "tattoo"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "tea"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "telecommunication"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "ticket"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "tiles"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "tobacco"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "tool_hire"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "toys"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "trade"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "travel_agency"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "trophy"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "tyres"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "vacuum_cleaner"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "variety_store"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "video"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "video_games"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "watches"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "water"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "water_sports"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "weapons"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "wholesale"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "wigs"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "window_blind"
- },
- {
- "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 'Personal theme') (This is only shown if craft=)",
- "value": "wine"
- },
- {
- "key": "brand",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)",
- "value": "only"
- },
- {
- "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 'Personal theme') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "key": "website",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Bike repair/shop' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Bike repair/shop' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:email",
- "description": "Layer 'Bike repair/shop' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "level",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Personal theme') (This is only shown if repeat_on=)"
- },
- {
- "key": "location",
- "description": "Layer 'Bike repair/shop' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Personal theme') (This is only shown if repeat_on=)",
- "value": "underground"
- },
- {
- "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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Bike repair/shop' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Personal theme') Picking this answer will delete the key level. (This is only shown if repeat_on=)",
- "value": ""
- },
- {
- "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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "1"
- },
- {
- "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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "-1"
- },
- {
- "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 'Personal theme') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)",
- "value": "no"
- },
- {
- "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 'Personal theme') (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"
- },
- {
- "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 'Personal theme') (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"
- },
- {
- "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 'Personal theme') 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": ""
- },
- {
- "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 'Personal theme') (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"
- },
- {
- "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 'Personal theme') (This is only shown if service:bicycle:retail~.+ | shop=outdoor | shop=sport | shop=sports | shop=diy | shop=doityourself)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if service:bicycle:retail~.+ | shop=outdoor | shop=sport | shop=sports | shop=diy | shop=doityourself)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)",
- "value": "only"
- },
- {
- "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 'Personal theme') (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"
- },
- {
- "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 'Personal theme') (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"
- },
- {
- "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 'Personal theme') (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"
- },
- {
- "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 'Personal theme') (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"
- },
- {
- "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 'Personal theme') (This is only shown if service:bicycle:rental~.+ | shop=bicycle | shop=sport | shop=sports | shop=bicycle_repair | shop=outdoor | shop=rental)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if service:bicycle:rental~.+ | shop=bicycle | shop=sport | shop=sports | shop=bicycle_repair | shop=outdoor | shop=rental)",
- "value": "no"
- },
- {
- "key": "rental",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'rental' (in the mapcomplete.org theme 'Personal theme') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))"
- },
- {
- "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 'Personal theme') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))",
- "value": "city_bike"
- },
- {
- "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 'Personal theme') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))",
- "value": "ebike"
- },
- {
- "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 'Personal theme') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))",
- "value": "bmx"
- },
- {
- "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 'Personal theme') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))",
- "value": "mtb"
- },
- {
- "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 'Personal theme') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))",
- "value": "kid_bike"
- },
- {
- "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 'Personal theme') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))",
- "value": "tandem"
- },
- {
- "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 'Personal theme') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))",
- "value": "racebike"
- },
- {
- "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 'Personal theme') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))",
- "value": "bike_helmet"
- },
- {
- "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 'Personal theme') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))",
- "value": "cargo_bike"
- },
- {
- "key": "capacity:city_bike",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:city_bike' (in the mapcomplete.org theme 'Personal theme') (This is only shown if rental~^(.*city_bike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))"
- },
- {
- "key": "capacity:ebike",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:ebike' (in the mapcomplete.org theme 'Personal theme') (This is only shown if rental~^(.*ebike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))"
- },
- {
- "key": "capacity:kid_bike",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:kid_bike' (in the mapcomplete.org theme 'Personal theme') (This is only shown if rental~^(.*kid_bike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))"
- },
- {
- "key": "capacity:bmx",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:bmx' (in the mapcomplete.org theme 'Personal theme') (This is only shown if rental~^(.*bmx.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))"
- },
- {
- "key": "capacity:mtb",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:mtb' (in the mapcomplete.org theme 'Personal theme') (This is only shown if rental~^(.*mtb.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))"
- },
- {
- "key": "capacity:bicycle_pannier",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:bicycle_pannier' (in the mapcomplete.org theme 'Personal theme') (This is only shown if rental~^(.*bicycle_pannier.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))"
- },
- {
- "key": "capacity:tandem_bicycle",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:tandem_bicycle' (in the mapcomplete.org theme 'Personal theme') (This is only shown if rental~^(.*tandem_bicycle.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))"
- },
- {
- "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 'Personal theme') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)",
- "value": "separate"
- },
- {
- "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 'Personal theme') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)",
- "value": "only_sold"
- },
- {
- "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 'Personal theme') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)",
- "value": "diy"
- },
- {
- "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 'Personal theme') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)"
- },
- {
- "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 'Personal theme') (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 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 'Personal theme') (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 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 'Personal theme') 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 '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 'Personal theme')",
- "value": "wlan"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "terminal"
- },
- {
- "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 'Personal theme')",
- "value": "wired"
- },
- {
- "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 'Personal theme')",
- "value": "terminal;wifi"
- },
- {
- "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 'Personal theme') (This is only shown if internet_access!=no & internet_access~.+)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if internet_access!=no & internet_access~.+)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if internet_access!=no & internet_access~.+)",
- "value": "customers"
- },
- {
- "key": "internet_access:ssid",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Personal theme') (This is only shown if internet_access~^(.*wlan.*)$)"
- },
- {
- "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 'Personal theme') (This is only shown if internet_access~^(.*wlan.*)$)",
- "value": "Telekom"
- },
- {
- "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 'Personal theme') (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"
- },
- {
- "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 'Personal theme') (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"
- },
- {
- "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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (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": "description",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "theme",
- "description": "The MapComplete theme Personal theme has a layer Bike-related object showing features with this tag",
- "value": "bicycle"
- },
- {
- "key": "theme",
- "description": "The MapComplete theme Personal theme has a layer Bike-related object showing features with this tag",
- "value": "cycling"
- },
- {
- "key": "sport",
- "description": "The MapComplete theme Personal theme has a layer Bike-related object showing features with this tag",
- "value": "cycling"
- },
- {
- "key": "association",
- "description": "The MapComplete theme Personal theme has a layer Bike-related object showing features with this tag",
- "value": "cycling"
- },
- {
- "key": "association",
- "description": "The MapComplete theme Personal theme has a layer Bike-related object showing features with this tag",
- "value": "bicycle"
- },
- {
- "key": "ngo",
- "description": "The MapComplete theme Personal theme has a layer Bike-related object showing features with this tag",
- "value": "cycling"
- },
- {
- "key": "ngo",
- "description": "The MapComplete theme Personal theme has a layer Bike-related object showing features with this tag",
- "value": "bicycle"
- },
- {
- "key": "club",
- "description": "The MapComplete theme Personal theme has a layer Bike-related object showing features with this tag",
- "value": "bicycle"
- },
- {
- "key": "club",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Bike-related object' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Bike-related object' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Bike-related object' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Bike-related object' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:email",
- "description": "Layer 'Bike-related object' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Bike-related object' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Bike-related object' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Binoculars showing features with this tag",
- "value": "binoculars"
- },
- {
- "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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "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": "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": "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": "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": "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": "charge",
- "description": "Layer 'Binoculars' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key charge.",
- "value": ""
- },
- {
- "key": "direction",
- "description": "Layer 'Binoculars' shows and asks freeform values for key 'direction' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "leisure",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key building.",
- "value": ""
- },
- {
- "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 'Personal theme') Picking this answer will delete the key amenity.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "shelter"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "tower"
- },
- {
- "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 'Personal theme')",
- "value": "tower"
- },
- {
- "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 'Personal theme')",
- "value": "shelter"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "designated"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "limited"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "operator",
- "description": "Layer 'Bird watching places' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "Natuurpunt"
- },
- {
- "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 'Personal theme')",
- "value": "Agentschap Natuur en Bos"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Cafés and pubs showing features with this tag",
- "value": "bar"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Cafés and pubs showing features with this tag",
- "value": "pub"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Cafés and pubs showing features with this tag",
- "value": "cafe"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Cafés and pubs showing features with this tag",
- "value": "biergarten"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Cafés and pubs showing features with this tag",
- "value": "nightclub"
- },
- {
- "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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "key": "level",
- "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Personal theme') (This is only shown if repeat_on=)"
- },
- {
- "key": "location",
- "description": "Layer 'Cafés and pubs' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Personal theme') (This is only shown if repeat_on=)",
- "value": "underground"
- },
- {
- "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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "0"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key level. (This is only shown if repeat_on=)",
- "value": ""
- },
- {
- "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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "1"
- },
- {
- "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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "-1"
- },
- {
- "key": "name",
- "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "pub"
- },
- {
- "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 'Personal theme')",
- "value": "bar"
- },
- {
- "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 'Personal theme')",
- "value": "cafe"
- },
- {
- "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 'Personal theme')",
- "value": "restaurant"
- },
- {
- "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 'Personal theme')",
- "value": "biergarten"
- },
- {
- "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 'Personal theme')",
- "value": "nightclub"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "key": "website",
- "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Cafés and pubs' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Cafés and pubs' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:email",
- "description": "Layer 'Cafés and pubs' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "designated"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "limited"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if _country!~^(al|be)$)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if _country!~^(al|be)$)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if _country!~^(al|be)$)",
- "value": "outside"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "limited"
- },
- {
- "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 'Personal theme')",
- "value": "ask"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "leashed"
- },
- {
- "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 'Personal theme')",
- "value": "unleashed"
- },
- {
- "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 'Personal theme')",
- "value": "outside"
- },
- {
- "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 'Personal theme')",
- "value": "wlan"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "terminal"
- },
- {
- "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 'Personal theme')",
- "value": "wired"
- },
- {
- "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 'Personal theme')",
- "value": "terminal;wifi"
- },
- {
- "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 'Personal theme') (This is only shown if internet_access!=no & internet_access~.+)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if internet_access!=no & internet_access~.+)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if internet_access!=no & internet_access~.+)",
- "value": "customers"
- },
- {
- "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 'Personal theme') (This is only shown if internet_access~^(.*wlan.*)$)"
- },
- {
- "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 'Personal theme') (This is only shown if internet_access~^(.*wlan.*)$)",
- "value": "Telekom"
- },
- {
- "key": "tourism",
- "description": "The MapComplete theme Personal theme has a layer Camper sites showing features with this tag",
- "value": "caravan_site"
- },
- {
- "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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "key": "name",
- "description": "Layer 'Camper sites' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "charge",
- "description": "Layer 'Camper sites' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Personal theme') (This is only shown if fee=yes)"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "capacity",
- "description": "Layer 'Camper sites' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "wifi"
- },
- {
- "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 'Personal theme')",
- "value": "wlan"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if internet_access=yes)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if internet_access=yes)",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "website",
- "description": "Layer 'Camper sites' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "only"
- },
- {
- "key": "description",
- "description": "Layer 'Camper sites' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Charging stations showing features with this tag",
- "value": "charging_station"
- },
- {
- "key": "disused:amenity",
- "description": "The MapComplete theme Personal theme has a layer Charging stations showing features with this tag",
- "value": "charging_station"
- },
- {
- "key": "planned:amenity",
- "description": "The MapComplete theme Personal theme has a layer Charging stations showing features with this tag",
- "value": "charging_station"
- },
- {
- "key": "construction:amenity",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "access",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'access' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "public"
- },
- {
- "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 'Personal theme')",
- "value": "customers"
- },
- {
- "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 'Personal theme')",
- "value": "key"
- },
- {
- "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 'Personal theme')",
- "value": "private"
- },
- {
- "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 'Personal theme')",
- "value": "permissive"
- },
- {
- "key": "capacity",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "1"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "1"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "1"
- },
- {
- "key": "socket:chademo",
- "description": "Layer 'Charging stations' shows socket:chademo~.+ & socket:chademo!=1 with a fixed text, namely 'Chademo' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "1"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "1"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "1"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "1"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "1"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "1"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "1"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "1"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "1"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "1"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "1"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "1"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "1"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "1"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "1"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "1"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "1"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "1"
- },
- {
- "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 'Personal theme')"
- },
- {
- "key": "socket:schuko",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:schuko~.+ & socket:schuko!=0)"
- },
- {
- "key": "socket:schuko:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko:voltage' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:schuko~.+ & socket:schuko!=0)"
- },
- {
- "key": "socket:schuko:voltage",
- "description": "Layer 'Charging stations' shows socket:schuko:voltage=230 V 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 'Personal theme') (This is only shown if socket:schuko~.+ & socket:schuko!=0)",
- "value": "230 V"
- },
- {
- "key": "socket:schuko:current",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko:current' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:schuko~.+ & socket:schuko!=0)"
- },
- {
- "key": "socket:schuko:current",
- "description": "Layer 'Charging stations' shows socket:schuko:current=16 A 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 'Personal theme') (This is only shown if socket:schuko~.+ & socket:schuko!=0)",
- "value": "16 A"
- },
- {
- "key": "socket:schuko:output",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko:output' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:schuko~.+ & socket:schuko!=0)"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:schuko~.+ & socket:schuko!=0)",
- "value": "3.6 kW"
- },
- {
- "key": "socket:typee",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:typee~.+ & socket:typee!=0)"
- },
- {
- "key": "socket:typee:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee:voltage' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:typee~.+ & socket:typee!=0)"
- },
- {
- "key": "socket:typee:voltage",
- "description": "Layer 'Charging stations' shows socket:typee:voltage=230 V 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 'Personal theme') (This is only shown if socket:typee~.+ & socket:typee!=0)",
- "value": "230 V"
- },
- {
- "key": "socket:typee:current",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee:current' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:typee~.+ & socket:typee!=0)"
- },
- {
- "key": "socket:typee:current",
- "description": "Layer 'Charging stations' shows socket:typee:current=16 A 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 'Personal theme') (This is only shown if socket:typee~.+ & socket:typee!=0)",
- "value": "16 A"
- },
- {
- "key": "socket:typee:output",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee:output' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:typee~.+ & socket:typee!=0)"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:typee~.+ & socket:typee!=0)",
- "value": "3 kW"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:typee~.+ & socket:typee!=0)",
- "value": "22 kW"
- },
- {
- "key": "socket:chademo",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:chademo~.+ & socket:chademo!=0)"
- },
- {
- "key": "socket:chademo:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo:voltage' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:chademo~.+ & socket:chademo!=0)"
- },
- {
- "key": "socket:chademo:voltage",
- "description": "Layer 'Charging stations' shows socket:chademo:voltage=500 V with a fixed text, namely 'Chademo outputs 500 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:chademo~.+ & socket:chademo!=0)",
- "value": "500 V"
- },
- {
- "key": "socket:chademo:current",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo:current' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:chademo~.+ & socket:chademo!=0)"
- },
- {
- "key": "socket:chademo:current",
- "description": "Layer 'Charging stations' shows socket:chademo:current=120 A 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 'Personal theme') (This is only shown if socket:chademo~.+ & socket:chademo!=0)",
- "value": "120 A"
- },
- {
- "key": "socket:chademo:output",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo:output' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:chademo~.+ & socket:chademo!=0)"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:chademo~.+ & socket:chademo!=0)",
- "value": "50 kW"
- },
- {
- "key": "socket:type1_cable",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)"
- },
- {
- "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 'Personal theme') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)"
- },
- {
- "key": "socket:type1_cable:voltage",
- "description": "Layer 'Charging stations' shows socket:type1_cable:voltage=200 V 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 'Personal theme') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)",
- "value": "200 V"
- },
- {
- "key": "socket:type1_cable:voltage",
- "description": "Layer 'Charging stations' shows socket:type1_cable:voltage=240 V 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 'Personal theme') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)",
- "value": "240 V"
- },
- {
- "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 'Personal theme') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)"
- },
- {
- "key": "socket:type1_cable:current",
- "description": "Layer 'Charging stations' shows socket:type1_cable:current=32 A 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 'Personal theme') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)",
- "value": "32 A"
- },
- {
- "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 'Personal theme') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)",
- "value": "3.7 kW"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)",
- "value": "7 kW"
- },
- {
- "key": "socket:type1",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type1~.+ & socket:type1!=0)"
- },
- {
- "key": "socket:type1:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1:voltage' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type1~.+ & socket:type1!=0)"
- },
- {
- "key": "socket:type1:voltage",
- "description": "Layer 'Charging stations' shows socket:type1:voltage=200 V 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 'Personal theme') (This is only shown if socket:type1~.+ & socket:type1!=0)",
- "value": "200 V"
- },
- {
- "key": "socket:type1:voltage",
- "description": "Layer 'Charging stations' shows socket:type1:voltage=240 V 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 'Personal theme') (This is only shown if socket:type1~.+ & socket:type1!=0)",
- "value": "240 V"
- },
- {
- "key": "socket:type1:current",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1:current' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type1~.+ & socket:type1!=0)"
- },
- {
- "key": "socket:type1:current",
- "description": "Layer 'Charging stations' shows socket:type1:current=32 A 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 'Personal theme') (This is only shown if socket:type1~.+ & socket:type1!=0)",
- "value": "32 A"
- },
- {
- "key": "socket:type1:output",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1:output' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type1~.+ & socket:type1!=0)"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type1~.+ & socket:type1!=0)",
- "value": "3.7 kW"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type1~.+ & socket:type1!=0)",
- "value": "6.6 kW"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type1~.+ & socket:type1!=0)",
- "value": "7 kW"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type1~.+ & socket:type1!=0)",
- "value": "7.2 kW"
- },
- {
- "key": "socket:type1_combo",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)"
- },
- {
- "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 'Personal theme') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)"
- },
- {
- "key": "socket:type1_combo:voltage",
- "description": "Layer 'Charging stations' shows socket:type1_combo:voltage=400 V 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 'Personal theme') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)",
- "value": "400 V"
- },
- {
- "key": "socket:type1_combo:voltage",
- "description": "Layer 'Charging stations' shows socket:type1_combo:voltage=1000 V 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 'Personal theme') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)",
- "value": "1000 V"
- },
- {
- "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 'Personal theme') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)"
- },
- {
- "key": "socket:type1_combo:current",
- "description": "Layer 'Charging stations' shows socket:type1_combo:current=50 A 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 'Personal theme') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)",
- "value": "50 A"
- },
- {
- "key": "socket:type1_combo:current",
- "description": "Layer 'Charging stations' shows socket:type1_combo:current=125 A 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 'Personal theme') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)",
- "value": "125 A"
- },
- {
- "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 'Personal theme') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)",
- "value": "50 kW"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)",
- "value": "62.5 kW"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)",
- "value": "150 kW"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)",
- "value": "350 kW"
- },
- {
- "key": "socket:tesla_supercharger",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)"
- },
- {
- "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 'Personal theme') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)"
- },
- {
- "key": "socket:tesla_supercharger:voltage",
- "description": "Layer 'Charging stations' shows socket:tesla_supercharger:voltage=480 V with a fixed text, namely 'Tesla Supercharger outputs 480 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)",
- "value": "480 V"
- },
- {
- "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 'Personal theme') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)"
- },
- {
- "key": "socket:tesla_supercharger:current",
- "description": "Layer 'Charging stations' shows socket:tesla_supercharger:current=125 A 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 'Personal theme') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)",
- "value": "125 A"
- },
- {
- "key": "socket:tesla_supercharger:current",
- "description": "Layer 'Charging stations' shows socket:tesla_supercharger:current=350 A 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 'Personal theme') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)",
- "value": "350 A"
- },
- {
- "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 'Personal theme') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)",
- "value": "120 kW"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)",
- "value": "150 kW"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)",
- "value": "250 kW"
- },
- {
- "key": "socket:type2",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type2~.+ & socket:type2!=0)"
- },
- {
- "key": "socket:type2:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2:voltage' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type2~.+ & socket:type2!=0)"
- },
- {
- "key": "socket:type2:voltage",
- "description": "Layer 'Charging stations' shows socket:type2:voltage=230 V 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 'Personal theme') (This is only shown if socket:type2~.+ & socket:type2!=0)",
- "value": "230 V"
- },
- {
- "key": "socket:type2:voltage",
- "description": "Layer 'Charging stations' shows socket:type2:voltage=400 V 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 'Personal theme') (This is only shown if socket:type2~.+ & socket:type2!=0)",
- "value": "400 V"
- },
- {
- "key": "socket:type2:current",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2:current' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type2~.+ & socket:type2!=0)"
- },
- {
- "key": "socket:type2:current",
- "description": "Layer 'Charging stations' shows socket:type2:current=16 A 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 'Personal theme') (This is only shown if socket:type2~.+ & socket:type2!=0)",
- "value": "16 A"
- },
- {
- "key": "socket:type2:current",
- "description": "Layer 'Charging stations' shows socket:type2:current=32 A 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 'Personal theme') (This is only shown if socket:type2~.+ & socket:type2!=0)",
- "value": "32 A"
- },
- {
- "key": "socket:type2:output",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2:output' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type2~.+ & socket:type2!=0)"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type2~.+ & socket:type2!=0)",
- "value": "11 kW"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type2~.+ & socket:type2!=0)",
- "value": "22 kW"
- },
- {
- "key": "socket:type2_combo",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)"
- },
- {
- "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 'Personal theme') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)"
- },
- {
- "key": "socket:type2_combo:voltage",
- "description": "Layer 'Charging stations' shows socket:type2_combo:voltage=500 V 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 'Personal theme') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)",
- "value": "500 V"
- },
- {
- "key": "socket:type2_combo:voltage",
- "description": "Layer 'Charging stations' shows socket:type2_combo:voltage=920 V 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 'Personal theme') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)",
- "value": "920 V"
- },
- {
- "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 'Personal theme') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)"
- },
- {
- "key": "socket:type2_combo:current",
- "description": "Layer 'Charging stations' shows socket:type2_combo:current=125 A 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 'Personal theme') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)",
- "value": "125 A"
- },
- {
- "key": "socket:type2_combo:current",
- "description": "Layer 'Charging stations' shows socket:type2_combo:current=350 A 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 'Personal theme') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)",
- "value": "350 A"
- },
- {
- "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 'Personal theme') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)",
- "value": "50 kW"
- },
- {
- "key": "socket:type2_cable",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)"
- },
- {
- "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 'Personal theme') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)"
- },
- {
- "key": "socket:type2_cable:voltage",
- "description": "Layer 'Charging stations' shows socket:type2_cable:voltage=230 V 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 'Personal theme') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)",
- "value": "230 V"
- },
- {
- "key": "socket:type2_cable:voltage",
- "description": "Layer 'Charging stations' shows socket:type2_cable:voltage=400 V 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 'Personal theme') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)",
- "value": "400 V"
- },
- {
- "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 'Personal theme') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)"
- },
- {
- "key": "socket:type2_cable:current",
- "description": "Layer 'Charging stations' shows socket:type2_cable:current=16 A 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 'Personal theme') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)",
- "value": "16 A"
- },
- {
- "key": "socket:type2_cable:current",
- "description": "Layer 'Charging stations' shows socket:type2_cable:current=32 A 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 'Personal theme') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)",
- "value": "32 A"
- },
- {
- "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 'Personal theme') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)",
- "value": "11 kW"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)",
- "value": "22 kW"
- },
- {
- "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 'Personal theme') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)"
- },
- {
- "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 'Personal theme') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)"
- },
- {
- "key": "socket:tesla_supercharger_ccs:voltage",
- "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:voltage=500 V 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 'Personal theme') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)",
- "value": "500 V"
- },
- {
- "key": "socket:tesla_supercharger_ccs:voltage",
- "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:voltage=920 V 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 'Personal theme') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)",
- "value": "920 V"
- },
- {
- "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 'Personal theme') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)"
- },
- {
- "key": "socket:tesla_supercharger_ccs:current",
- "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:current=125 A 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 'Personal theme') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)",
- "value": "125 A"
- },
- {
- "key": "socket:tesla_supercharger_ccs:current",
- "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:current=350 A 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 'Personal theme') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)",
- "value": "350 A"
- },
- {
- "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 'Personal theme') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)",
- "value": "50 kW"
- },
- {
- "key": "socket:tesla_destination",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)"
- },
- {
- "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 'Personal theme') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)"
- },
- {
- "key": "socket:tesla_destination:voltage",
- "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=480 V 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 'Personal theme') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)",
- "value": "480 V"
- },
- {
- "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 'Personal theme') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)"
- },
- {
- "key": "socket:tesla_destination:current",
- "description": "Layer 'Charging stations' shows socket:tesla_destination:current=125 A 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 'Personal theme') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)",
- "value": "125 A"
- },
- {
- "key": "socket:tesla_destination:current",
- "description": "Layer 'Charging stations' shows socket:tesla_destination:current=350 A 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 'Personal theme') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)",
- "value": "350 A"
- },
- {
- "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 'Personal theme') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)",
- "value": "120 kW"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)",
- "value": "150 kW"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)",
- "value": "250 kW"
- },
- {
- "key": "socket:tesla_destination",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)"
- },
- {
- "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 'Personal theme') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)"
- },
- {
- "key": "socket:tesla_destination:voltage",
- "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=230 V 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 'Personal theme') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)",
- "value": "230 V"
- },
- {
- "key": "socket:tesla_destination:voltage",
- "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=400 V 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 'Personal theme') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)",
- "value": "400 V"
- },
- {
- "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 'Personal theme') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)"
- },
- {
- "key": "socket:tesla_destination:current",
- "description": "Layer 'Charging stations' shows socket:tesla_destination:current=16 A 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 'Personal theme') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)",
- "value": "16 A"
- },
- {
- "key": "socket:tesla_destination:current",
- "description": "Layer 'Charging stations' shows socket:tesla_destination:current=32 A 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 'Personal theme') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)",
- "value": "32 A"
- },
- {
- "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 'Personal theme') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)",
- "value": "11 kW"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)",
- "value": "22 kW"
- },
- {
- "key": "socket:USB-A",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)"
- },
- {
- "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 'Personal theme') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)"
- },
- {
- "key": "socket:USB-A:voltage",
- "description": "Layer 'Charging stations' shows socket:USB-A:voltage=5 V 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 'Personal theme') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)",
- "value": "5 V"
- },
- {
- "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 'Personal theme') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)"
- },
- {
- "key": "socket:USB-A:current",
- "description": "Layer 'Charging stations' shows socket:USB-A:current=1 A 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 'Personal theme') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)",
- "value": "1 A"
- },
- {
- "key": "socket:USB-A:current",
- "description": "Layer 'Charging stations' shows socket:USB-A:current=2 A 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 'Personal theme') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)",
- "value": "2 A"
- },
- {
- "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 'Personal theme') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)",
- "value": "5W"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)",
- "value": "10W"
- },
- {
- "key": "socket:bosch_3pin",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:bosch_3pin~.+ & socket:bosch_3pin!=0)"
- },
- {
- "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 'Personal theme') (This is only shown if socket:bosch_3pin~.+ & socket:bosch_3pin!=0)"
- },
- {
- "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 'Personal theme') (This is only shown if socket:bosch_3pin~.+ & socket:bosch_3pin!=0)"
- },
- {
- "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 'Personal theme') (This is only shown if socket:bosch_3pin~.+ & socket:bosch_3pin!=0)"
- },
- {
- "key": "socket:bosch_5pin",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:bosch_5pin~.+ & socket:bosch_5pin!=0)"
- },
- {
- "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 'Personal theme') (This is only shown if socket:bosch_5pin~.+ & socket:bosch_5pin!=0)"
- },
- {
- "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 'Personal theme') (This is only shown if socket:bosch_5pin~.+ & socket:bosch_5pin!=0)"
- },
- {
- "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 'Personal theme') (This is only shown if socket:bosch_5pin~.+ & socket:bosch_5pin!=0)"
- },
- {
- "key": "socket:bs1363",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bs1363' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)"
- },
- {
- "key": "socket:bs1363:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bs1363:voltage' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)"
- },
- {
- "key": "socket:bs1363:voltage",
- "description": "Layer 'Charging stations' shows socket:bs1363:voltage=230 V 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 'Personal theme') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)",
- "value": "230 V"
- },
- {
- "key": "socket:bs1363:current",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bs1363:current' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)"
- },
- {
- "key": "socket:bs1363:current",
- "description": "Layer 'Charging stations' shows socket:bs1363:current=13 A 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 'Personal theme') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)",
- "value": "13 A"
- },
- {
- "key": "socket:bs1363:output",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bs1363:output' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)",
- "value": "3kW"
- },
- {
- "key": "socket:nema5_15",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:nema5_15' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)"
- },
- {
- "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 'Personal theme') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)"
- },
- {
- "key": "socket:nema5_15:voltage",
- "description": "Layer 'Charging stations' shows socket:nema5_15:voltage=120 V 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 'Personal theme') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)",
- "value": "120 V"
- },
- {
- "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 'Personal theme') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)"
- },
- {
- "key": "socket:nema5_15:current",
- "description": "Layer 'Charging stations' shows socket:nema5_15:current=15 A 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 'Personal theme') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)",
- "value": "15 A"
- },
- {
- "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 'Personal theme') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)",
- "value": "1.8 kW"
- },
- {
- "key": "socket:sev1011_t23",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:sev1011_t23' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)"
- },
- {
- "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 'Personal theme') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)"
- },
- {
- "key": "socket:sev1011_t23:voltage",
- "description": "Layer 'Charging stations' shows socket:sev1011_t23:voltage=230 V 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 'Personal theme') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)",
- "value": "230 V"
- },
- {
- "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 'Personal theme') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)"
- },
- {
- "key": "socket:sev1011_t23:current",
- "description": "Layer 'Charging stations' shows socket:sev1011_t23:current=16 A 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 'Personal theme') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)",
- "value": "16 A"
- },
- {
- "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 'Personal theme') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)",
- "value": "3.7 kW"
- },
- {
- "key": "socket:as3112",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:as3112' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:as3112~.+ & socket:as3112!=0)"
- },
- {
- "key": "socket:as3112:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:as3112:voltage' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:as3112~.+ & socket:as3112!=0)"
- },
- {
- "key": "socket:as3112:voltage",
- "description": "Layer 'Charging stations' shows socket:as3112:voltage=230 V 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 'Personal theme') (This is only shown if socket:as3112~.+ & socket:as3112!=0)",
- "value": "230 V"
- },
- {
- "key": "socket:as3112:current",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:as3112:current' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:as3112~.+ & socket:as3112!=0)"
- },
- {
- "key": "socket:as3112:current",
- "description": "Layer 'Charging stations' shows socket:as3112:current=10 A 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 'Personal theme') (This is only shown if socket:as3112~.+ & socket:as3112!=0)",
- "value": "10 A"
- },
- {
- "key": "socket:as3112:output",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:as3112:output' (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:as3112~.+ & socket:as3112!=0)"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:as3112~.+ & socket:as3112!=0)",
- "value": "2.3 kW"
- },
- {
- "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 'Personal theme') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)"
- },
- {
- "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 'Personal theme') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)"
- },
- {
- "key": "socket:nema_5_20:voltage",
- "description": "Layer 'Charging stations' shows socket:nema_5_20:voltage=120 V 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 'Personal theme') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)",
- "value": "120 V"
- },
- {
- "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 'Personal theme') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)"
- },
- {
- "key": "socket:nema_5_20:current",
- "description": "Layer 'Charging stations' shows socket:nema_5_20:current=20 A 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 'Personal theme') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)",
- "value": "20 A"
- },
- {
- "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 'Personal theme') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)"
- },
- {
- "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 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)",
- "value": "2.4 kW"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key fee:conditional.",
- "value": ""
- },
- {
- "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 'Personal theme') Picking this answer will delete the key charge.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key fee:conditional.",
- "value": ""
- },
- {
- "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 'Personal theme') Picking this answer will delete the key charge.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "fee",
- "description": "Layer 'Charging stations' shows fee=no with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'Personal theme')",
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no @ customers"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key fee:conditional.",
- "value": ""
- },
- {
- "key": "charge",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (This is only shown if fee=yes | charge~.+)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (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 'Personal theme') (This is only shown if fee=yes | charge~.+)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if fee=no | fee=)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if fee=no | fee=)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if fee=no | fee=)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if fee=no | fee=)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if fee=no | fee=)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if fee=no | fee=)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if fee=no | fee=)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if fee=no | fee=)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (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 'Personal theme') (This is only shown if maxstay~.+ | motorcar=yes | hgv=yes | bus=yes)"
- },
- {
- "key": "maxstay",
- "description": "Layer 'Charging stations' shows maxstay=unlimited with a fixed text, namely 'No timelimit on leaving your vehicle here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if maxstay~.+ | motorcar=yes | hgv=yes | bus=yes)",
- "value": "unlimited"
- },
- {
- "key": "network",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'network' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "none"
- },
- {
- "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 'Personal theme')",
- "value": "AeroVironment"
- },
- {
- "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 'Personal theme')",
- "value": "Blink"
- },
- {
- "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 'Personal theme')",
- "value": "EVgo"
- },
- {
- "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 'Personal theme')",
- "value": "Allego"
- },
- {
- "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 'Personal theme')",
- "value": "Blue Corner"
- },
- {
- "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 'Personal theme')",
- "value": "Tesla"
- },
- {
- "key": "operator",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Personal theme') (This is only shown if network=)"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key network. (This is only shown if network=)",
- "value": ""
- },
- {
- "key": "phone",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "level",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') 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 'Personal theme') (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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "-1"
- },
- {
- "key": "ref",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Personal theme') (This is only shown if network~.+)"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key planned:amenity.",
- "value": ""
- },
- {
- "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 'Personal theme') Picking this answer will delete the key construction:amenity.",
- "value": ""
- },
- {
- "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 'Personal theme') Picking this answer will delete the key disused:amenity.",
- "value": ""
- },
- {
- "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 'Personal theme') Picking this answer will delete the key operational_status.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "charging_station"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key planned:amenity.",
- "value": ""
- },
- {
- "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 'Personal theme') Picking this answer will delete the key construction:amenity.",
- "value": ""
- },
- {
- "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 'Personal theme') Picking this answer will delete the key disused:amenity.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "broken"
- },
- {
- "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 'Personal theme')",
- "value": "charging_station"
- },
- {
- "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 'Personal theme')",
- "value": "charging_station"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key construction:amenity.",
- "value": ""
- },
- {
- "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 'Personal theme') Picking this answer will delete the key disused:amenity.",
- "value": ""
- },
- {
- "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 'Personal theme') Picking this answer will delete the key operational_status.",
- "value": ""
- },
- {
- "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 'Personal theme') Picking this answer will delete the key amenity.",
- "value": ""
- },
- {
- "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 'Personal theme') Picking this answer will delete the key planned:amenity.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "charging_station"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key disused:amenity.",
- "value": ""
- },
- {
- "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 'Personal theme') Picking this answer will delete the key operational_status.",
- "value": ""
- },
- {
- "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 'Personal theme') Picking this answer will delete the key amenity.",
- "value": ""
- },
- {
- "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 'Personal theme') Picking this answer will delete the key planned:amenity.",
- "value": ""
- },
- {
- "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 'Personal theme') Picking this answer will delete the key construction:amenity.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "charging_station"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key operational_status.",
- "value": ""
- },
- {
- "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 'Personal theme') Picking this answer will delete the key amenity.",
- "value": ""
- },
- {
- "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 'Personal theme') (This is only shown if motor_vehicle=yes | hgv=yes | bus=yes | bicycle=no | bicycle=)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if motor_vehicle=yes | hgv=yes | bus=yes | bicycle=no | bicycle=)",
- "value": "yes"
- },
- {
- "key": "sport",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "key": "name",
- "description": "Layer 'Climbing opportunities' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key name.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "boulder"
- },
- {
- "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 'Personal theme')",
- "value": "crag"
- },
- {
- "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 'Personal theme')",
- "value": "area"
- },
- {
- "key": "rock",
- "description": "Layer 'Climbing opportunities' shows and asks freeform values for key 'rock' (in the mapcomplete.org theme 'Personal theme') (This is only shown if climbing=crag | natural=cliff | natural=bare_rock)"
- },
- {
- "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 'Personal theme') (This is only shown if climbing=crag | natural=cliff | natural=bare_rock)",
- "value": "limestone"
- },
- {
- "key": "url",
- "description": "Layer 'Climbing opportunities' shows and asks freeform values for key 'url' (in the mapcomplete.org theme 'Personal theme') (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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme') 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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')"
- },
- {
- "key": "club",
- "description": "The MapComplete theme Personal theme has a layer Climbing club showing features with this tag",
- "value": "climbing"
- },
- {
- "key": "sport",
- "description": "The MapComplete theme Personal theme has a layer Climbing club showing features with this tag",
- "value": "climbing"
- },
- {
- "key": "office",
- "description": "The MapComplete theme Personal theme has a layer Climbing club showing features with this tag"
- },
- {
- "key": "club",
- "description": "The MapComplete theme Personal theme has a layer Climbing club showing features with this tag"
- },
- {
- "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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "key": "name",
- "description": "Layer 'Climbing club' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Climbing club' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Climbing club' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Climbing club' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Climbing club' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:email",
- "description": "Layer 'Climbing club' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Climbing club' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Climbing club' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "key": "sport",
- "description": "The MapComplete theme Personal theme has a layer Climbing gyms showing features with this tag",
- "value": "climbing"
- },
- {
- "key": "leisure",
- "description": "The MapComplete theme Personal theme has a layer Climbing gyms showing features with this tag",
- "value": "sports_centre"
- },
- {
- "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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "key": "name",
- "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Climbing gyms' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Climbing gyms' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:email",
- "description": "Layer 'Climbing gyms' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "charge",
- "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key charge.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "limited"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if climbing:sport!=no | climbing:toprope!=no)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if climbing:sport!=no | climbing:toprope!=no)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if climbing:sport!=no | climbing:toprope!=no)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if climbing:sport!=no | climbing:toprope!=no)"
- },
- {
- "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 'Personal theme') (This is only shown if climbing:sport!=no | climbing:toprope!=no)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if climbing:sport!=no | climbing:toprope!=no)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if climbing:sport!=no | climbing:toprope!=no)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if climbing:sport!=no | climbing:toprope!=no)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if climbing:sport!=no | climbing:toprope!=no)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if climbing:sport!=no | climbing:toprope!=no)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if climbing:sport!=no | climbing:toprope!=no)"
- },
- {
- "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 'Personal theme') (This is only shown if climbing:sport!=no | climbing:toprope!=no)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if climbing:sport!=no | climbing:toprope!=no)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if climbing:sport!=no)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if climbing:sport!=no)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if climbing:sport!=no)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if climbing:sport!=no)"
- },
- {
- "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 'Personal theme') (This is only shown if climbing:sport!=no)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if climbing:sport!=no)",
- "value": "no"
- },
- {
- "key": "climbing:length",
- "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'climbing:length' (in the mapcomplete.org theme 'Personal theme') (This is only shown if climbing:sport!=no | climbing:toprope!=no)"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme') (This is only shown if climbing!~^(route)$ & office= & club= & (climbing:sport=yes | sport=climbing))"
- },
- {
- "key": "climbing:bolts:max",
- "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'climbing:bolts:max' (in the mapcomplete.org theme 'Personal theme') (This is only shown if climbing:sport!=no)"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "hot"
- },
- {
- "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 'Personal theme')",
- "value": "cold"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "wlan"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "terminal"
- },
- {
- "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 'Personal theme')",
- "value": "wired"
- },
- {
- "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 'Personal theme')",
- "value": "terminal;wifi"
- },
- {
- "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 'Personal theme') (This is only shown if internet_access!=no & internet_access~.+)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if internet_access!=no & internet_access~.+)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if internet_access!=no & internet_access~.+)",
- "value": "customers"
- },
- {
- "key": "internet_access:ssid",
- "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Personal theme') (This is only shown if internet_access~^(.*wlan.*)$)"
- },
- {
- "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 'Personal theme') (This is only shown if internet_access~^(.*wlan.*)$)",
- "value": "Telekom"
- },
- {
- "key": "leisure",
- "description": "The MapComplete theme Personal theme has a layer Climbing opportunities? showing features with this tag",
- "value": "sports_centre"
- },
- {
- "key": "barrier",
- "description": "The MapComplete theme Personal theme has a layer Climbing opportunities? showing features with this tag",
- "value": "wall"
- },
- {
- "key": "barrier",
- "description": "The MapComplete theme Personal theme has a layer Climbing opportunities? showing features with this tag",
- "value": "retaining_wall"
- },
- {
- "key": "natural",
- "description": "The MapComplete theme Personal theme has a layer Climbing opportunities? showing features with this tag",
- "value": "cliff"
- },
- {
- "key": "natural",
- "description": "The MapComplete theme Personal theme has a layer Climbing opportunities? showing features with this tag",
- "value": "rock"
- },
- {
- "key": "natural",
- "description": "The MapComplete theme Personal theme has a layer Climbing opportunities? showing features with this tag",
- "value": "stone"
- },
- {
- "key": "climbing",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "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 'Personal theme')",
- "value": "climbing"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "climbing",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "key": "name",
- "description": "Layer 'Climbing routes' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key name.",
- "value": ""
- },
- {
- "key": "climbing:length",
- "description": "Layer 'Climbing routes' shows and asks freeform values for key 'climbing:length' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "climbing:grade:french",
- "description": "Layer 'Climbing routes' shows and asks freeform values for key 'climbing:grade:french' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "climbing:bolts",
- "description": "Layer 'Climbing routes' shows and asks freeform values for key 'climbing:bolts' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "description",
- "description": "Layer 'Climbing routes' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Clocks showing features with this tag",
- "value": "clock"
- },
- {
- "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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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 'Personal theme')",
- "value": "pole"
- },
- {
- "key": "support",
- "description": "Layer 'Clocks' shows support=wall_mounted with a fixed text, namely 'This clock is mounted on a wall' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme')",
- "value": "wall_mounted"
- },
- {
- "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 'Personal theme')",
- "value": "billboard"
- },
- {
- "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 'Personal theme')",
- "value": "ground"
- },
- {
- "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 'Personal theme')",
- "value": "analog"
- },
- {
- "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 'Personal theme')",
- "value": "digital"
- },
- {
- "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 'Personal theme')",
- "value": "sundial"
- },
- {
- "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 'Personal theme')",
- "value": "unorthodox"
- },
- {
- "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 'Personal theme')",
- "value": "house"
- },
- {
- "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 'Personal theme')",
- "value": "street"
- },
- {
- "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 'Personal theme')",
- "value": "area"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key date.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key thermometer.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key barometer.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key hygrometer.",
- "value": ""
- },
- {
- "key": "faces",
- "description": "Layer 'Clocks' shows and asks freeform values for key 'faces' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "1"
- },
- {
- "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 'Personal theme')",
- "value": "2"
- },
- {
- "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 'Personal theme')",
- "value": "4"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Crossings showing features with this tag",
- "value": "traffic_signals"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Crossings showing features with this tag",
- "value": "crossing"
- },
- {
- "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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "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",
- "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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if highway=crossing)",
- "value": "unmarked"
- },
- {
- "key": "crossing_ref",
- "description": "Layer 'Crossings' shows crossing_ref=zebra with a fixed text, namely 'This is a zebra crossing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if crossing=uncontrolled)",
- "value": "zebra"
- },
- {
- "key": "crossing_ref",
- "description": "Layer 'Crossings' shows crossing_ref= with a fixed text, namely 'This is not a zebra crossing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') Picking this answer will delete the key crossing_ref. (This is only shown if crossing=uncontrolled)",
- "value": ""
- },
- {
- "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 'Personal theme') (This is only shown if highway=crossing)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if highway=crossing)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if highway=crossing)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if highway=crossing)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if highway=crossing)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if highway=crossing)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if highway=crossing)",
- "value": "incorrect"
- },
- {
- "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 'Personal theme') (This is only shown if highway=traffic_signals | crossing=traffic_signals)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if highway=traffic_signals | crossing=traffic_signals)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if crossing=traffic_signals)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if crossing=traffic_signals)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if crossing=traffic_signals)",
- "value": "locate"
- },
- {
- "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 'Personal theme') (This is only shown if crossing=traffic_signals)",
- "value": "walk"
- },
- {
- "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 'Personal theme') (This is only shown if crossing=traffic_signals & button_operated=yes)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if crossing=traffic_signals & button_operated=yes)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if crossing=traffic_signals)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if crossing=traffic_signals)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if crossing=traffic_signals)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if crossing=traffic_signals)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if highway=traffic_signals)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (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 'Personal theme') (This is only shown if highway=traffic_signals)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if highway=traffic_signals)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (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 'Personal theme') (This is only shown if highway=traffic_signals)",
- "value": "no"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag",
- "value": "cycleway"
- },
- {
- "key": "cycleway",
- "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag",
- "value": "lane"
- },
- {
- "key": "cycleway",
- "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag",
- "value": "shared_lane"
- },
- {
- "key": "cycleway",
- "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag",
- "value": "track"
- },
- {
- "key": "cyclestreet",
- "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag",
- "value": "yes"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag",
- "value": "residential"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag",
- "value": "tertiary"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag",
- "value": "unclassified"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag",
- "value": "primary"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag",
- "value": "secondary"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag",
- "value": "tertiary_link"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag",
- "value": "primary_link"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag",
- "value": "secondary_link"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag",
- "value": "service"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag",
- "value": "footway"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag",
- "value": "pedestrian"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag",
- "value": "living_street"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag",
- "value": "path"
- },
- {
- "key": "bicycle",
- "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag",
- "value": "designated"
- },
- {
- "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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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 'Personal theme') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)",
- "value": "shared_lane"
- },
- {
- "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 'Personal theme') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)",
- "value": "lane"
- },
- {
- "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 'Personal theme') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)",
- "value": "track"
- },
- {
- "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 'Personal theme') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)",
- "value": "separate"
- },
- {
- "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 'Personal theme') (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 'Personal theme') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "sunset-sunrise"
- },
- {
- "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 'Personal theme')",
- "value": "24/7"
- },
- {
- "key": "cyclestreet",
- "description": "Layer 'Cycleways and roads' shows cyclestreet=yes with a fixed text, namely 'This is a cyclestreet, and a 30km/h zone.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)",
- "value": "yes"
- },
- {
- "key": "cyclestreet",
- "description": "Layer 'Cycleways and roads' shows cyclestreet=yes with a fixed text, namely 'This is a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)",
- "value": "yes"
- },
- {
- "key": "cyclestreet",
- "description": "Layer 'Cycleways and roads' shows cyclestreet= with a fixed text, namely 'This is not a cyclestreet.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') Picking this answer will delete the key cyclestreet. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)",
- "value": ""
- },
- {
- "key": "maxspeed",
- "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'maxspeed' (in the mapcomplete.org theme 'Personal theme') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)"
- },
- {
- "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 'Personal theme') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)",
- "value": "20"
- },
- {
- "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 'Personal theme') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)",
- "value": "30"
- },
- {
- "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 'Personal theme') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)",
- "value": "50"
- },
- {
- "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 'Personal theme') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)",
- "value": "70"
- },
- {
- "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 'Personal theme') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)",
- "value": "90"
- },
- {
- "key": "cycleway:surface",
- "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'cycleway:surface' (in the mapcomplete.org theme 'Personal theme') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)",
- "value": "unpaved"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)",
- "value": "paved"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)",
- "value": "asphalt"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)",
- "value": "paving_stones"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)",
- "value": "concrete"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)",
- "value": "cobblestone"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)",
- "value": "unhewn_cobblestone"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)",
- "value": "sett"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)",
- "value": "wood"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)",
- "value": "gravel"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)",
- "value": "fine_gravel"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)",
- "value": "pebblestone"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)",
- "value": "ground"
- },
- {
- "key": "incline",
- "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'incline' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key incline.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "up"
- },
- {
- "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 'Personal theme')",
- "value": "down"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)",
- "value": "excellent"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)",
- "value": "good"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)",
- "value": "intermediate"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)",
- "value": "bad"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)",
- "value": "very_bad"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)",
- "value": "horrible"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)",
- "value": "very_horrible"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)",
- "value": "impassable"
- },
- {
- "key": "surface",
- "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'surface' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "surface",
- "description": "Layer 'Cycleways and roads' shows surface=unpaved with a fixed text, namely 'This cycleway is unhardened' (in the mapcomplete.org theme 'Personal theme')",
- "value": "unpaved"
- },
- {
- "key": "surface",
- "description": "Layer 'Cycleways and roads' shows surface=paved with a fixed text, namely 'This cycleway is paved' (in the mapcomplete.org theme 'Personal theme')",
- "value": "paved"
- },
- {
- "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 'Personal theme')",
- "value": "asphalt"
- },
- {
- "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 'Personal theme')",
- "value": "paving_stones"
- },
- {
- "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 'Personal theme')",
- "value": "concrete"
- },
- {
- "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 'Personal theme')",
- "value": "cobblestone"
- },
- {
- "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 'Personal theme')",
- "value": "unhewn_cobblestone"
- },
- {
- "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 'Personal theme')",
- "value": "sett"
- },
- {
- "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 'Personal theme')",
- "value": "wood"
- },
- {
- "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 'Personal theme')",
- "value": "gravel"
- },
- {
- "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 'Personal theme')",
- "value": "fine_gravel"
- },
- {
- "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 'Personal theme')",
- "value": "pebblestone"
- },
- {
- "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 'Personal theme')",
- "value": "ground"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=no | highway=cycleway)",
- "value": "excellent"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=no | highway=cycleway)",
- "value": "good"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=no | highway=cycleway)",
- "value": "intermediate"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=no | highway=cycleway)",
- "value": "bad"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=no | highway=cycleway)",
- "value": "very_bad"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=no | highway=cycleway)",
- "value": "horrible"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=no | highway=cycleway)",
- "value": "very_horrible"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=no | highway=cycleway)",
- "value": "impassable"
- },
- {
- "key": "width:carriageway",
- "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'width:carriageway' (in the mapcomplete.org theme 'Personal theme') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)"
- },
- {
- "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 'Personal theme') (This is only shown if (cycleway=lane | cycleway=track) & (_country=be))",
- "value": "BE:D7"
- },
- {
- "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 'Personal theme') (This is only shown if (cycleway=lane | cycleway=track) & (_country=be))"
- },
- {
- "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 'Personal theme') (This is only shown if (cycleway=lane | cycleway=track) & (_country=be))",
- "value": "BE:D9"
- },
- {
- "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 'Personal theme') (This is only shown if (cycleway=lane | cycleway=track) & (_country=be))",
- "value": "BE:D10"
- },
- {
- "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 'Personal theme') (This is only shown if (cycleway=lane | cycleway=track) & (_country=be))",
- "value": "none"
- },
- {
- "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 'Personal theme') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))",
- "value": "BE:D7"
- },
- {
- "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 'Personal theme') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))"
- },
- {
- "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 'Personal theme') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))",
- "value": "BE:D9"
- },
- {
- "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 'Personal theme') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))",
- "value": "BE:D10"
- },
- {
- "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 'Personal theme') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))",
- "value": "NL:G11"
- },
- {
- "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 'Personal theme') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))",
- "value": "NL:G12a"
- },
- {
- "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 'Personal theme') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))",
- "value": "NL:G13"
- },
- {
- "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 'Personal theme') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))",
- "value": "none"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)",
- "value": "BE:D7;BE:M6"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)",
- "value": "BE:D7;BE:M13"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)",
- "value": "BE:D7;BE:M14"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)",
- "value": "BE:D7;BE:M7"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)",
- "value": "BE:D7;BE:M15"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)",
- "value": "BE:D7;BE:M16"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)",
- "value": "none"
- },
- {
- "key": "cycleway:buffer",
- "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'cycleway:buffer' (in the mapcomplete.org theme 'Personal theme') (This is only shown if cycleway=track | cycleway=lane)"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=track | cycleway=lane)",
- "value": "dashed_line"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=track | cycleway=lane)",
- "value": "solid_line"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=track | cycleway=lane)",
- "value": "parking_lane"
- },
- {
- "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 'Personal theme') (This is only shown if cycleway=track | cycleway=lane)",
- "value": "kerb"
- },
- {
- "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 'Personal theme') (This is only shown if highway=cycleway | highway=path)",
- "value": "dashed_line"
- },
- {
- "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 'Personal theme') (This is only shown if highway=cycleway | highway=path)",
- "value": "solid_line"
- },
- {
- "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 'Personal theme') (This is only shown if highway=cycleway | highway=path)",
- "value": "parking_lane"
- },
- {
- "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 'Personal theme') (This is only shown if highway=cycleway | highway=path)",
- "value": "kerb"
- },
- {
- "key": "emergency",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "access",
- "description": "Layer 'Defibrillators' shows and asks freeform values for key 'access' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "access",
- "description": "Layer 'Defibrillators' shows access=public with a fixed text, namely 'Publicly accessible' (in the mapcomplete.org theme 'Personal theme')",
- "value": "public"
- },
- {
- "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 'Personal theme')",
- "value": "customers"
- },
- {
- "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 'Personal theme')",
- "value": "private"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "defibrillator",
- "description": "Layer 'Defibrillators' shows defibrillator= with a fixed text, namely 'There is no info about the type of device' (in the mapcomplete.org theme 'Personal theme') Picking this answer will delete the key defibrillator. (This is only shown if access=no)",
- "value": ""
- },
- {
- "key": "defibrillator",
- "description": "Layer 'Defibrillators' shows defibrillator=manual with a fixed text, namely 'This is a manual defibrillator for professionals' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if access=no)",
- "value": "manual"
- },
- {
- "key": "defibrillator",
- "description": "Layer 'Defibrillators' shows defibrillator=automatic with a fixed text, namely 'This is a normal automatic defibrillator' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if access=no)",
- "value": "automatic"
- },
- {
- "key": "defibrillator",
- "description": "Layer 'Defibrillators' shows defibrillator~.+ with a fixed text, namely 'This is a special type of defibrillator: {defibrillator}' (in the mapcomplete.org theme 'Personal theme') (This is only shown if access=no)"
- },
- {
- "key": "level",
- "description": "Layer 'Defibrillators' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Personal theme') (This is only shown if indoor=yes)"
- },
- {
- "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 'Personal theme') (This is only shown if indoor=yes)",
- "value": "0"
- },
- {
- "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 'Personal theme') (This is only shown if indoor=yes)",
- "value": "1"
- },
- {
- "key": "defibrillator:location",
- "description": "Layer 'Defibrillators' shows and asks freeform values for key 'defibrillator:location' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "defibrillator:location:en",
- "description": "Layer 'Defibrillators' shows and asks freeform values for key 'defibrillator:location:en' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "defibrillator:location:fr",
- "description": "Layer 'Defibrillators' shows and asks freeform values for key 'defibrillator:location:fr' (in the mapcomplete.org theme 'Personal theme') (This is only shown if _country=be | defibrillator:location:fr~.+)"
- },
- {
- "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 'Personal theme')",
- "value": "designated"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "limited"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "ref",
- "description": "Layer 'Defibrillators' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Defibrillators' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Defibrillators' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Defibrillators' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "24/7"
- },
- {
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "key": "description",
- "description": "Layer 'Defibrillators' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "survey:date",
- "description": "Layer 'Defibrillators' shows and asks freeform values for key 'survey:date' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key survey:date.",
- "value": ""
- },
- {
- "key": "fixme",
- "description": "Layer 'Defibrillators' shows and asks freeform values for key 'fixme' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "key": "phone",
- "description": "Layer 'Dentist' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Dentist' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Dentist' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:email",
- "description": "Layer 'Dentist' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Dentist' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Dentist' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "name",
- "description": "Layer 'Dentist' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "emergency",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Disaster response organizations' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "name",
- "description": "Layer 'Disaster response organizations' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "key": "name",
- "description": "Layer 'Doctors' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Doctors' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "key": "phone",
- "description": "Layer 'Doctors' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Doctors' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Doctors' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:email",
- "description": "Layer 'Doctors' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Doctors' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Doctors' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "healthcare:speciality",
- "description": "Layer 'Doctors' shows and asks freeform values for key 'healthcare:speciality' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "general"
- },
- {
- "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 'Personal theme')",
- "value": "gynaecology"
- },
- {
- "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 'Personal theme')",
- "value": "psychiatry"
- },
- {
- "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 'Personal theme')",
- "value": "paediatrics"
- },
- {
- "key": "leisure",
- "description": "The MapComplete theme Personal theme has a layer dog parks showing features with this tag",
- "value": "dog_park"
- },
- {
- "key": "leisure",
- "description": "The MapComplete theme Personal theme has a layer dog parks showing features with this tag",
- "value": "park"
- },
- {
- "key": "dog",
- "description": "The MapComplete theme Personal theme has a layer dog parks showing features with this tag",
- "value": "unleashed"
- },
- {
- "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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "key": "name",
- "description": "Layer 'dog parks' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'dog parks' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "24/7"
- },
- {
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "key": "website",
- "description": "Layer 'dog parks' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'dog parks' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "fence"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "separate"
- },
- {
- "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 'Personal theme')",
- "value": "shared"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Drinking water showing features with this tag",
- "value": "drinking_water"
- },
- {
- "key": "drinking_water",
- "description": "The MapComplete theme Personal theme has a layer Drinking water showing features with this tag",
- "value": "yes"
- },
- {
- "key": "disused:amenity",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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 'Personal theme')"
- },
- {
- "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 'Personal theme') 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 'Personal theme') 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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "drinking_water"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme') (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 'Personal theme') (This is only shown if fountain!=bottle_refill)",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme') 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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (This is only shown if tourism=artwork)"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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 'Personal theme')",
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "charge",
- "description": "Layer 'Sanitary dump stations' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Personal theme') (This is only shown if fee=yes)"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "network"
- },
- {
- "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 'Personal theme')",
- "value": "customers"
- },
- {
- "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 'Personal theme')",
- "value": "public"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "network",
- "description": "Layer 'Sanitary dump stations' shows and asks freeform values for key 'network' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "key": "level",
- "description": "Layer 'Elevator' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') 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 'Personal theme') (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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "-1"
- },
- {
- "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 'Personal theme')",
- "value": "broken"
- },
- {
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "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 'Personal theme')",
- "value": "ok"
- },
- {
- "key": "operational_status",
- "description": "Layer 'Elevator' shows operational_status= with a fixed text, namely 'This elevator works' (in the mapcomplete.org theme 'Personal theme') Picking this answer will delete the key operational_status.",
- "value": ""
- },
- {
- "key": "door:width",
- "description": "Layer 'Elevator' shows and asks freeform values for key 'door:width' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "rectangular"
- },
- {
- "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 'Personal theme')",
- "value": "circular"
- },
- {
- "key": "width",
- "description": "Layer 'Elevator' shows and asks freeform values for key 'width' (in the mapcomplete.org theme 'Personal theme') (This is only shown if shape= | shape=rectangular)"
- },
- {
- "key": "length",
- "description": "Layer 'Elevator' shows and asks freeform values for key 'length' (in the mapcomplete.org theme 'Personal theme') (This is only shown if shape= | shape=rectangular)"
- },
- {
- "key": "diameter",
- "description": "Layer 'Elevator' shows and asks freeform values for key 'diameter' (in the mapcomplete.org theme 'Personal theme') (This is only shown if shape=circular)"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Penny Presses showing features with this tag",
- "value": "vending_machine"
- },
- {
- "key": "vending",
- "description": "The MapComplete theme Personal theme has a layer Penny Presses showing features with this tag"
- },
- {
- "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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Penny Presses' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "24/7"
- },
- {
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "key": "coin:design_count",
- "description": "Layer 'Penny Presses' shows and asks freeform values for key 'coin:design_count' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "1"
- },
- {
- "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 'Personal theme')",
- "value": "2"
- },
- {
- "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 'Personal theme')",
- "value": "3"
- },
- {
- "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 'Personal theme')",
- "value": "4"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key fee.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if fee=yes | fee=)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if fee=yes | fee=)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if fee=yes | fee=)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if fee=yes | fee=)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if fee=yes | fee=)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if fee=yes | fee=)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if fee=yes | fee=)",
- "value": "yes"
- },
- {
- "key": "coin:type",
- "description": "Layer 'Penny Presses' shows and asks freeform values for key 'coin:type' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "2cent"
- },
- {
- "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 'Personal theme')",
- "value": "5cent"
- },
- {
- "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 'Personal theme')",
- "value": "10cent"
- },
- {
- "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 'Personal theme')",
- "value": "25cent"
- },
- {
- "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 'Personal theme')",
- "value": "50cent"
- },
- {
- "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 'Personal theme')",
- "value": "10centimes"
- },
- {
- "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 'Personal theme')",
- "value": "20centimes"
- },
- {
- "key": "website",
- "description": "Layer 'Penny Presses' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Penny Presses' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "charge",
- "description": "Layer 'Penny Presses' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Personal theme') (This is only shown if fee=yes | fee=)"
- },
- {
- "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 'Personal theme') (This is only shown if fee=yes | fee=)",
- "value": "1 EUR"
- },
- {
- "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 'Personal theme') (This is only shown if fee=yes | fee=)",
- "value": "2 EUR"
- },
- {
- "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 'Personal theme') (This is only shown if fee=yes | fee=)",
- "value": "2 CHF"
- },
- {
- "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 'Personal theme') (This is only shown if fee=yes | fee=)",
- "value": "1 CHF"
- },
- {
- "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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
- "value": "1 EUR"
- },
- {
- "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 'Personal theme') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
- "value": "2 EUR"
- },
- {
- "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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (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 '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 'Personal theme') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
- "value": "1 CHF"
- },
- {
- "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 'Personal theme') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
- "value": "2 CHF"
- },
- {
- "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 'Personal theme') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
- "value": "5 CHF"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "level",
- "description": "Layer 'Penny Presses' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Personal theme') (This is only shown if repeat_on=)"
- },
- {
- "key": "location",
- "description": "Layer 'Penny Presses' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Personal theme') (This is only shown if repeat_on=)",
- "value": "underground"
- },
- {
- "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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Penny Presses' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Personal theme') Picking this answer will delete the key level. (This is only shown if repeat_on=)",
- "value": ""
- },
- {
- "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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "1"
- },
- {
- "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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "-1"
- },
- {
- "key": "check_date",
- "description": "Layer 'Penny Presses' shows and asks freeform values for key 'check_date' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key check_date.",
- "value": ""
- },
- {
- "key": "entrance",
- "description": "The MapComplete theme Personal theme has a layer Entrance showing features with this tag"
- },
- {
- "key": "indoor",
- "description": "The MapComplete theme Personal theme has a layer Entrance showing features with this tag",
- "value": "door"
- },
- {
- "key": "door",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') 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 'Personal theme') (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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "-1"
- },
- {
- "key": "entrance",
- "description": "Layer 'Entrance' shows entrance=yes with a fixed text, namely 'No specific entrance type is known' (in the mapcomplete.org theme 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key entrance.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "door"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key indoor.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "main"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key indoor.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "secondary"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key indoor.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "service"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key indoor.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "exit"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key indoor.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "entrance"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key indoor.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "emergency"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key indoor.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "home"
- },
- {
- "key": "door",
- "description": "Layer 'Entrance' shows door=yes with a fixed text, namely 'The door type is not known' (in the mapcomplete.org theme 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "hinged"
- },
- {
- "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 'Personal theme')",
- "value": "revolving"
- },
- {
- "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 'Personal theme')",
- "value": "sliding"
- },
- {
- "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 'Personal theme')",
- "value": "overhead"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if door!=no)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if door!=no)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if door!=no)",
- "value": "motion"
- },
- {
- "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 'Personal theme') (This is only shown if door!=no)",
- "value": "floor"
- },
- {
- "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 'Personal theme') (This is only shown if door!=no)",
- "value": "button"
- },
- {
- "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 'Personal theme') (This is only shown if door!=no)",
- "value": "slowdown_button"
- },
- {
- "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 'Personal theme') (This is only shown if door!=no)",
- "value": "continuous"
- },
- {
- "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 'Personal theme') (This is only shown if door!=no)",
- "value": "serviced_on_button_press"
- },
- {
- "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 'Personal theme') (This is only shown if door!=no)",
- "value": "serviced_on_request"
- },
- {
- "key": "width",
- "description": "Layer 'Entrance' shows and asks freeform values for key 'width' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "kerb:height",
- "description": "Layer 'Entrance' shows and asks freeform values for key 'kerb:height' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "0"
- },
- {
- "key": "name:etymology:wikidata",
- "description": "The MapComplete theme Personal theme has a layer Has etymology showing features with this tag"
- },
- {
- "key": "name:etymology",
- "description": "The MapComplete theme Personal theme has a layer Has etymology showing features with this tag"
- },
- {
- "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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "key": "name:etymology:wikidata",
- "description": "Layer 'Has etymology' shows and asks freeform values for key 'name:etymology:wikidata' (in the mapcomplete.org theme 'Personal theme') (This is only shown if name:etymology!=unknown)"
- },
- {
- "key": "name:etymology",
- "description": "Layer 'Has etymology' shows and asks freeform values for key 'name:etymology' (in the mapcomplete.org theme 'Personal theme') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)"
- },
- {
- "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 'Personal theme') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)",
- "value": "unknown"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "key": "emergency",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "key": "location",
- "description": "Layer 'Map of fire extinguishers' shows and asks freeform values for key 'location' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "indoor"
- },
- {
- "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 'Personal theme')",
- "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"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "key": "name",
- "description": "Layer 'Map of fire stations' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "addr:street",
- "description": "Layer 'Map of fire stations' shows and asks freeform values for key 'addr:street' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "addr:place",
- "description": "Layer 'Map of fire stations' shows and asks freeform values for key 'addr:place' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator",
- "description": "Layer 'Map of fire stations' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "Bureau of Fire Protection"
- },
- {
- "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 'Personal theme')",
- "value": "government"
- },
- {
- "key": "operator:type",
- "description": "Layer 'Map of fire stations' shows and asks freeform values for key 'operator:type' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "government"
- },
- {
- "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 'Personal theme')",
- "value": "community"
- },
- {
- "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 'Personal theme')",
- "value": "ngo"
- },
- {
- "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 'Personal theme')",
- "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"
- },
- {
- "key": "leisure",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "spring;summer;autumn"
- },
- {
- "key": "leisure",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "key": "name",
- "description": "Layer 'Fitness Centres' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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"
- },
- {
- "key": "phone",
- "description": "Layer 'Fitness Centres' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Fitness Centres' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Fitness Centres' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:email",
- "description": "Layer 'Fitness Centres' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Fitness Centres' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Fitness Centres' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Fitness Centres' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "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 'Personal theme')",
- "value": "designated"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "limited"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "level",
- "description": "Layer 'Fitness Centres' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Personal theme') (This is only shown if repeat_on=)"
- },
- {
- "key": "location",
- "description": "Layer 'Fitness Centres' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Personal theme') (This is only shown if repeat_on=)",
- "value": "underground"
- },
- {
- "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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Fitness Centres' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Personal theme') Picking this answer will delete the key level. (This is only shown if repeat_on=)",
- "value": ""
- },
- {
- "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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "1"
- },
- {
- "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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "-1"
- },
- {
- "key": "leisure",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "key": "name",
- "description": "Layer 'Fitness Stations' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "horizontal_bar"
- },
- {
- "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 'Personal theme')",
- "value": "sign"
- },
- {
- "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 'Personal theme')",
- "value": "sit-up"
- },
- {
- "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 'Personal theme')",
- "value": "push-up"
- },
- {
- "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 'Personal theme')",
- "value": "stretch_bars"
- },
- {
- "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 'Personal theme')",
- "value": "hyperextension"
- },
- {
- "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 'Personal theme')",
- "value": "rings"
- },
- {
- "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 'Personal theme')",
- "value": "horizontal_ladder"
- },
- {
- "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 'Personal theme')",
- "value": "wall_bars"
- },
- {
- "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 'Personal theme')",
- "value": "slalom"
- },
- {
- "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 'Personal theme')",
- "value": "stepping_stones"
- },
- {
- "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 'Personal theme')",
- "value": "leapfrog"
- },
- {
- "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 'Personal theme')",
- "value": "beam_jump"
- },
- {
- "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 'Personal theme')",
- "value": "hurdling"
- },
- {
- "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 'Personal theme')",
- "value": "wall"
- },
- {
- "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 'Personal theme')",
- "value": "balance_beam"
- },
- {
- "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 'Personal theme')",
- "value": "log_lifting"
- },
- {
- "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 'Personal theme')",
- "value": "captains_chair"
- },
- {
- "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 'Personal theme')",
- "value": "box"
- },
- {
- "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 'Personal theme')",
- "value": "battling_ropes"
- },
- {
- "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 'Personal theme')",
- "value": "excercise_bike"
- },
- {
- "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 'Personal theme')",
- "value": "elliptical_trainer"
- },
- {
- "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 'Personal theme')",
- "value": "air_walker"
- },
- {
- "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 'Personal theme')",
- "value": "rower"
- },
- {
- "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 'Personal theme')",
- "value": "slackline"
- },
- {
- "key": "operator",
- "description": "Layer 'Fitness Stations' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Fitness Stations' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "key": "fixme",
- "description": "The MapComplete theme Personal theme has a layer OSM objects with FIXME tags showing features with this tag"
- },
- {
- "key": "FIXME",
- "description": "The MapComplete theme Personal theme has a layer OSM objects with FIXME tags showing features with this tag"
- },
- {
- "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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "key": "fixme",
- "description": "Layer 'OSM objects with FIXME tags' shows and asks freeform values for key 'fixme' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key fixme.",
- "value": ""
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Restaurants and fast food showing features with this tag",
- "value": "fast_food"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "key": "name",
- "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "fast_food"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "key": "website",
- "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Restaurants and fast food' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Restaurants and fast food' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:email",
- "description": "Layer 'Restaurants and fast food' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "level",
- "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') 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 'Personal theme') (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 'Personal theme') (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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'cuisine' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (This is only shown if internet_access~^(.*wlan.*)$)",
- "value": "Telekom"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "key": "name",
- "description": "Layer 'Food Courts' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "website",
- "description": "Layer 'Food Courts' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Food Courts' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Food Courts' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (This is only shown if _country!~^(al|be)$)",
- "value": "outside"
- },
- {
- "key": "memorial",
- "description": "The MapComplete theme Personal theme has a layer Ghost bikes showing features with this tag",
- "value": "ghost_bike"
- },
- {
- "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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "key": "subject",
- "description": "Layer 'Ghost bikes' shows and asks freeform values for key 'subject' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "name",
- "description": "Layer 'Ghost bikes' shows name~.+ with a fixed text, namely 'In remembrance of {name}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "source",
- "description": "Layer 'Ghost bikes' shows and asks freeform values for key 'source' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "inscription",
- "description": "Layer 'Ghost bikes' shows and asks freeform values for key 'inscription' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "start_date",
- "description": "Layer 'Ghost bikes' shows and asks freeform values for key 'start_date' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "historic",
- "description": "The MapComplete theme Personal theme has a layer Ghost Signs showing features with this tag"
- },
- {
- "key": "advertising",
- "description": "The MapComplete theme Personal theme has a layer Ghost Signs showing features with this tag"
- },
- {
- "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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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 'Personal theme')",
- "value": "advertising"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key historic.",
- "value": ""
- },
- {
- "key": "advertising",
- "description": "Layer 'Ghost Signs' shows and asks freeform values for key 'advertising' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "billboard"
- },
- {
- "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 'Personal theme')",
- "value": "board"
- },
- {
- "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 'Personal theme')",
- "value": "column"
- },
- {
- "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 'Personal theme')",
- "value": "flag"
- },
- {
- "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 'Personal theme')",
- "value": "poster_box"
- },
- {
- "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 'Personal theme')",
- "value": "screen"
- },
- {
- "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 'Personal theme')",
- "value": "sculpture"
- },
- {
- "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 'Personal theme')",
- "value": "sign"
- },
- {
- "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 'Personal theme')",
- "value": "tarp"
- },
- {
- "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 'Personal theme')",
- "value": "totem"
- },
- {
- "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 'Personal theme')",
- "value": "wall_painting"
- },
- {
- "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 'Personal theme')",
- "value": "tilework"
- },
- {
- "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 'Personal theme')",
- "value": "relief"
- },
- {
- "key": "inscription",
- "description": "Layer 'Ghost Signs' shows and asks freeform values for key 'inscription' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "brand",
- "description": "Layer 'Ghost Signs' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "office",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'governments' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'governments' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:email",
- "description": "Layer 'governments' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'governments' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'governments' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "name",
- "description": "Layer 'governments' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "historic",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "key": "buried:wikidata",
- "description": "Layer 'Gravestones' shows and asks freeform values for key 'buried:wikidata' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "name",
- "description": "Layer 'Gravestones' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "information",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "leisure",
- "description": "The MapComplete theme Personal theme has a layer Hackerspace showing features with this tag",
- "value": "hackerspace"
- },
- {
- "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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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 'Personal theme')",
- "value": "makerspace"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key hackerspace.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "hacklab"
- },
- {
- "key": "name",
- "description": "Layer 'Hackerspace' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "level",
- "description": "Layer 'Hackerspace' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Personal theme') (This is only shown if repeat_on=)"
- },
- {
- "key": "location",
- "description": "Layer 'Hackerspace' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Personal theme') (This is only shown if repeat_on=)",
- "value": "underground"
- },
- {
- "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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Hackerspace' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Personal theme') Picking this answer will delete the key level. (This is only shown if repeat_on=)",
- "value": ""
- },
- {
- "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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "1"
- },
- {
- "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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "-1"
- },
- {
- "key": "website",
- "description": "Layer 'Hackerspace' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Hackerspace' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Hackerspace' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Hackerspace' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:email",
- "description": "Layer 'Hackerspace' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Hackerspace' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "key": "contact:mastodon",
- "description": "Layer 'Hackerspace' shows and asks freeform values for key 'contact:mastodon' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Hackerspace' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "24/7"
- },
- {
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "limited"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "limited"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "limited"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "limited"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "limited"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "limited"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "limited"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "limited"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "limited"
- },
- {
- "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 'Personal theme')",
- "value": "designated"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "limited"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "start_date",
- "description": "Layer 'Hackerspace' shows and asks freeform values for key 'start_date' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "wlan"
- },
- {
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "terminal"
- },
- {
- "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 'Personal theme')",
- "value": "wired"
- },
- {
- "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 'Personal theme')",
- "value": "terminal;wifi"
- },
- {
- "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 'Personal theme') (This is only shown if internet_access!=no & internet_access~.+)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if internet_access!=no & internet_access~.+)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if internet_access!=no & internet_access~.+)",
- "value": "customers"
- },
- {
- "key": "internet_access:ssid",
- "description": "Layer 'Hackerspace' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Personal theme') (This is only shown if internet_access~^(.*wlan.*)$)"
- },
- {
- "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 'Personal theme') (This is only shown if internet_access~^(.*wlan.*)$)",
- "value": "Telekom"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Hospitals showing features with this tag",
- "value": "hospital"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "key": "name",
- "description": "Layer 'Hospitals' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "clinic"
- },
- {
- "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 'Personal theme')",
- "value": "hospital"
- },
- {
- "key": "phone",
- "description": "Layer 'Hospitals' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Hospitals' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Hospitals' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:email",
- "description": "Layer 'Hospitals' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Hospitals' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Hospitals' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "opening_hours:visitors",
- "description": "Layer 'Hospitals' shows and asks freeform values for key 'opening_hours:visitors' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "emergency",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "key": "colour",
- "description": "Layer 'Map of hydrants' shows and asks freeform values for key 'colour' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "yellow"
- },
- {
- "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 'Personal theme')",
- "value": "red"
- },
- {
- "key": "fire_hydrant:type",
- "description": "Layer 'Map of hydrants' shows and asks freeform values for key 'fire_hydrant:type' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "pillar"
- },
- {
- "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 'Personal theme')",
- "value": "pipe"
- },
- {
- "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 'Personal theme')",
- "value": "wall"
- },
- {
- "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 'Personal theme')",
- "value": "underground"
- },
- {
- "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 'Personal theme')",
- "value": "fire_hydrant"
- },
- {
- "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 'Personal theme')",
- "value": "fire_hydrant"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key emergency.",
- "value": ""
- },
- {
- "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 'Personal theme')",
- "value": "fire_hydrant"
- },
- {
- "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 'Personal theme') Picking this answer will delete the key emergency.",
- "value": ""
- },
- {
- "key": "fire_hydrant:diameter",
- "description": "Layer 'Map of hydrants' shows and asks freeform values for key 'fire_hydrant:diameter' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "couplings",
- "description": "Layer 'Map of hydrants' shows and asks freeform values for key 'couplings' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "couplings:type",
- "description": "Layer 'Map of hydrants' shows and asks freeform values for key 'couplings:type' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "Storz"
- },
- {
- "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 'Personal theme')",
- "value": "UNI"
- },
- {
- "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 'Personal theme')",
- "value": "Barcelona"
- },
- {
- "key": "couplings:diameters",
- "description": "Layer 'Map of hydrants' shows and asks freeform values for key 'couplings:diameters' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "key": "name",
- "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "closed"
- },
- {
- "key": "phone",
- "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Ice cream parlors' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:email",
- "description": "Layer 'Ice cream parlors' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Ice cream parlors' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "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 'Personal theme')",
- "value": "only"
- },
- {
- "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 'Personal theme')",
- "value": "yes"
- },
- {
- "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 'Personal theme')",
- "value": "limited"
- },
- {
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "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 'Personal theme')",
- "value": "no"
- },
- {
- "key": "indoor",
- "description": "The MapComplete theme Personal theme has a layer Indoors showing features with this tag",
- "value": "room"
- },
- {
- "key": "indoor",
- "description": "The MapComplete theme Personal theme has a layer Indoors showing features with this tag",
- "value": "area"
- },
- {
- "key": "indoor",
- "description": "The MapComplete theme Personal theme has a layer Indoors showing features with this tag",
- "value": "wall"
- },
- {
- "key": "indoor",
- "description": "The MapComplete theme Personal theme has a layer Indoors showing features with this tag",
- "value": "door"
- },
- {
- "key": "indoor",
- "description": "The MapComplete theme Personal theme has a layer Indoors showing features with this tag",
- "value": "level"
- },
- {
- "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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "key": "level",
- "description": "Layer 'Indoors' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Personal theme') (This is only shown if repeat_on=)"
- },
- {
- "key": "location",
- "description": "Layer 'Indoors' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Personal theme') (This is only shown if repeat_on=)",
- "value": "underground"
- },
- {
- "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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Indoors' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Personal theme') Picking this answer will delete the key level. (This is only shown if repeat_on=)",
- "value": ""
- },
- {
- "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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "1"
- },
- {
- "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 'Personal theme') (This is only shown if repeat_on=)",
- "value": "-1"
- },
- {
- "key": "ref",
- "description": "Layer 'Indoors' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Personal theme') (This is only shown if indoor=room | indoor=area | indoor=corridor)"
- },
- {
- "key": "name",
- "description": "Layer 'Indoors' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme') (This is only shown if indoor=room | indoor=area | indoor=corridor)"
- },
- {
- "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 'Personal theme')",
- "value": "administration"
- },
- {
- "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 'Personal theme')",
- "value": "auditorium"
- },
- {
- "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 'Personal theme')",
- "value": "bedroom"
- },
- {
- "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 'Personal theme')",
- "value": "chapel"
- },
- {
- "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 'Personal theme')",
- "value": "class"
- },
- {
- "key": "room",
- "description": "Layer 'Indoors' shows room=classroom with a fixed text, namely 'This is a classroom' (in the mapcomplete.org theme 'Personal theme')",
- "value": "classroom"
- },
- {
- "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 'Personal theme')",
- "value": "computer"
- },
- {
- "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 'Personal theme')",
- "value": "conference"
- },
- {
- "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 'Personal theme')",
- "value": "crypt"
- },
- {
- "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 'Personal theme')",
- "value": "kitchen"
- },
- {
- "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 'Personal theme')",
- "value": "laboratory"
- },
- {
- "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 'Personal theme')",
- "value": "library"
- },
- {
- "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 'Personal theme')",
- "value": "locker"
- },
- {
- "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 'Personal theme')",
- "value": "nursery"
- },
- {
- "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 'Personal theme')",
- "value": "office"
- },
- {
- "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 'Personal theme')",
- "value": "printer"
- },
- {
- "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 'Personal theme')",
- "value": "prison_cell"
- },
- {
- "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 'Personal theme')",
- "value": "restaurant"
- },
- {
- "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 'Personal theme')",
- "value": "security_check"
- },
- {
- "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 'Personal theme')",
- "value": "sport"
- },
- {
- "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 'Personal theme')",
- "value": "storage"
- },
- {
- "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 'Personal theme')",
- "value": "technical"
- },
- {
- "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 'Personal theme')",
- "value": "toilets"
- },
- {
- "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 'Personal theme')",
- "value": "waiting"
- },
- {
- "key": "capacity",
- "description": "Layer 'Indoors' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Personal theme') (This is only shown if room=waiting | room=restaurant | room=office | room=nursery | room=conference | room=auditorium | room=chapel | room=bedroom | room=classroom)"
- },
- {
- "key": "name:etymology:wikidata",
- "description": "Layer 'Indoors' shows and asks freeform values for key 'name:etymology:wikidata' (in the mapcomplete.org theme 'Personal theme') (This is only shown if name:etymology!=unknown & name~.+)"
- },
- {
- "key": "access",
- "description": "Layer 'Indoors' shows and asks freeform values for key 'access' (in the mapcomplete.org theme 'Personal theme') (This is only shown if amenity=toilets)"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets)",
- "value": "customers"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets)",
- "value": "key"
- },
- {
- "key": "access",
- "description": "Layer 'Indoors' shows access=public with a fixed text, namely 'Public access' (in the mapcomplete.org theme 'Personal theme') (This is only shown if amenity=toilets)",
- "value": "public"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets & access!=no)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets & access!=no)",
- "value": "no"
- },
- {
- "key": "charge",
- "description": "Layer 'Indoors' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Personal theme') (This is only shown if amenity=toilets & fee=yes)"
- },
- {
- "key": "payment:cash",
- "description": "Layer 'Indoors' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' (in the mapcomplete.org theme 'Personal theme') (This is only shown if amenity=toilets & fee=yes)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets & fee=yes)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets & fee=yes)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets & fee=yes)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets & fee=yes)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets & fee=yes)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets & fee=yes)",
- "value": "yes"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Indoors' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme') (This is only shown if amenity=toilets & access!=no)"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets & access!=no)",
- "value": "24/7"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets & access!=no)",
- "value": "closed"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets)",
- "value": "designated"
- },
- {
- "key": "door:width",
- "description": "Layer 'Indoors' shows and asks freeform values for key 'door:width' (in the mapcomplete.org theme 'Personal theme') (This is only shown if amenity=toilets & (wheelchair=yes | wheelchair=designated))"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets)",
- "value": "seated"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets)",
- "value": "urinal"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets)",
- "value": "squat"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets)",
- "value": "seated;urinal"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets)",
- "value": "no"
- },
- {
- "key": "changing_table:location",
- "description": "Layer 'Indoors' shows and asks freeform values for key 'changing_table:location' (in the mapcomplete.org theme 'Personal theme') (This is only shown if amenity=toilets & changing_table=yes)"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets & changing_table=yes)",
- "value": "female_toilet"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets & changing_table=yes)",
- "value": "male_toilet"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets & changing_table=yes)",
- "value": "wheelchair_toilet"
- },
- {
- "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 'Personal theme') (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 'Personal theme') (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 'Personal theme') (This is only shown if amenity=toilets)",
- "value": "no"
- },
- {
- "key": "toilets:paper_supplied",
- "description": "Layer 'Indoors' shows toilets:paper_supplied=yes with a fixed text, namely 'This toilet is equipped with toilet paper' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme') (This is only shown if amenity=toilets & toilets:position!=urinal)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if amenity=toilets & toilets:position!=urinal)",
- "value": "no"
- },
- {
- "key": "information",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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": "barrier",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "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 'Personal theme') (This is only shown if _geometry:type=Point)",
- "value": "raised"
- },
- {
- "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 'Personal theme') (This is only shown if _geometry:type=Point)",
- "value": "lowered"
- },
- {
- "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 'Personal theme') (This is only shown if _geometry:type=Point)",
- "value": "flush"
- },
- {
- "key": "kerb",
- "description": "Layer 'Kerbs' shows kerb=no with a fixed text, namely 'There is no kerb here' (in the mapcomplete.org theme 'Personal theme') (This is only shown if _geometry:type=Point)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if _geometry:type=Point)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if _geometry:type=Point)",
- "value": "yes"
- },
- {
- "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 'Personal theme') (This is only shown if _geometry:type=Point)",
- "value": "no"
- },
- {
- "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 'Personal theme') (This is only shown if _geometry:type=Point)",
- "value": "incorrect"
- },
- {
- "key": "kerb:height",
- "description": "Layer 'Kerbs' shows and asks freeform values for key 'kerb:height' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')",
- "value": "0"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Kindergartens and childcare showing features with this tag",
- "value": "childcare"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Kindergartens and childcare showing features with this tag",
- "value": "kindergarten"
- },
- {
- "key": "isced:level:2011",
- "description": "The MapComplete theme Personal theme has a layer Kindergartens and childcare showing features with this tag",
- "value": "early_childhood"
- },
- {
- "key": "id",
- "description": "Layer 'Kindergartens and 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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "key": "amenity",
- "description": "Layer 'Kindergartens and childcare' shows amenity=kindergarten with a fixed text, namely 'This is a kindergarten (also known as preschool) where small kids receive early education.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme')",
- "value": "kindergarten"
- },
- {
- "key": "amenity",
- "description": "Layer 'Kindergartens and childcare' shows amenity=childcare with a fixed text, namely 'This is a childcare facility, such as a nursery or daycare where small kids are looked after. They do not offer an education and are ofter run as private businesses' and allows to pick this as a default answer (in the mapcomplete.org theme 'Personal theme')",
- "value": "childcare"
- },
- {
- "key": "name",
- "description": "Layer 'Kindergartens and childcare' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Kindergartens and childcare' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Kindergartens and childcare' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Kindergartens and childcare' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Kindergartens and childcare' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:email",
- "description": "Layer 'Kindergartens and childcare' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Kindergartens and childcare' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Kindergartens and childcare' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Kindergartens and childcare' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Personal theme') (This is only shown if amenity=childcare)"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Kindergartens and childcare' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Personal theme') (This is only shown if amenity=childcare)",
- "value": "closed"
- },
- {
- "key": "capacity",
- "description": "Layer 'Kindergartens and childcare' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "man_made",
- "description": "The MapComplete theme Personal theme has a layer lighthouse showing features with this tag",
- "value": "lighthouse"
- },
- {
- "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 'Personal theme') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "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"
- },
- {
- "key": "wikidata",
- "description": "Layer 'lighthouse' shows and asks freeform values for key 'wikidata' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "wikipedia",
- "description": "Layer 'lighthouse' shows wikipedia~.+ with a fixed text, namely '{wikipedia():max-height:25rem}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "wikidata",
- "description": "Layer 'lighthouse' shows wikidata= with a fixed text, namely 'No Wikipedia page has been linked yet' (in the mapcomplete.org theme 'Personal theme') Picking this answer will delete the key wikidata.",
- "value": ""
- },
- {
- "key": "height",
- "description": "Layer 'lighthouse' shows and asks freeform values for key 'height' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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"
- },
- {
- "key": "name",
- "description": "Layer 'Love hotels' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Love hotels' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "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 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Love hotels' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Love hotels' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "operator:email",
- "description": "Layer 'Love hotels' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Love hotels' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Love hotels' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Personal theme')"
- },
- {
- "key": "tourism",
- "description": "The MapComplete theme Personal theme has a layer Maps showing features with this tag",
- "value": "map"
- },
- {
- "key": "information",
- "description": "The MapComplete theme Personal theme 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 'Personal theme') (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
[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) | |
|
[opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | |
|
[post_office](https://wiki.openstreetmap.org/wiki/Key:post_office) | Multiple choice | [post_partner](https://wiki.openstreetmap.org/wiki/Tag:post_office%3Dpost_partner) [](https://wiki.openstreetmap.org/wiki/Tag:post_office%3D) |
|
[brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [nsi](../SpecialInputElements.md#nsi) | |
@@ -187,10 +192,36 @@ This block shows the known images which are linked with the `image`-keys, but al
_This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}*
-### minimap
+### phone
-_This tagrendering has no question and is thus read-only_
-*{minimap(18): height: 5rem; overflow: hidden; border-radius:3rem; }*
+The question is `What is the phone number of {title()}?`
+*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
+
+ -
*{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
+
+This tagrendering has labels
+`contact`
+
+### email
+
+The question is `What is the email address of {title()}?`
+*{email}* is shown if `email` is set
+
+ -
*{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_
+ -
*{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_
+
+This tagrendering has labels
+`contact`
+
+### website
+
+The question is `What is the website of {title()}?`
+*{website}* is shown if `website` is set
+
+ -
*{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_
+
+This tagrendering has labels
+`contact`
### opening_hours
diff --git a/Docs/Themes/bicycle_parkings.md b/Docs/Themes/bicycle_parkings.md
index 13850f2915..277b0dd3e0 100644
--- a/Docs/Themes/bicycle_parkings.md
+++ b/Docs/Themes/bicycle_parkings.md
@@ -26,6 +26,7 @@ Available languages:
- ru
- uk
- hu
+ - nl
# Layers defined in this theme configuration file
These layers can not be reused in different themes.
diff --git a/Docs/Themes/blind_osm.md b/Docs/Themes/blind_osm.md
index 276ae33d70..5945e42703 100644
--- a/Docs/Themes/blind_osm.md
+++ b/Docs/Themes/blind_osm.md
@@ -14,6 +14,8 @@ This theme contains the following layers:
- [transit_stops](../Layers/transit_stops.md)
- [elevator](../Layers/elevator.md)
- [stairs](../Layers/stairs.md)
+ - [tactile_map](../Layers/tactile_map.md)
+ - [tactile_model](../Layers/tactile_model.md)
Available languages:
diff --git a/Docs/Themes/circular_economy.md b/Docs/Themes/circular_economy.md
index 13f8d35b09..7d63784290 100644
--- a/Docs/Themes/circular_economy.md
+++ b/Docs/Themes/circular_economy.md
@@ -26,6 +26,8 @@ Available languages:
- uk
- hu
- pl
+ - nl
+ - fr
# Table of contents
@@ -728,7 +730,7 @@ This tagrendering has labels
| id | question | osmTags |
-----|-----|----- |
| shop_types.0 | *What kind of shop is this?* (default) | |
-| shop_types.1 | Bicycle rental shop | shop=bicycle_rental |
+| shop_types.1 | Bicycle rental shop | shop=bicycle_rental | ((shop=rental & amenity=bicycle_rental)) |
| shop_types.2 | Farm Supply Shop | shop=agrarian |
| shop_types.3 | Liquor Store | shop=alcohol |
| shop_types.4 | Anime / Manga Shop | shop=anime |
diff --git a/Docs/Themes/climbing.md b/Docs/Themes/climbing.md
index b3fa8a4235..0d47a97977 100644
--- a/Docs/Themes/climbing.md
+++ b/Docs/Themes/climbing.md
@@ -756,7 +756,7 @@ This tagrendering has labels
| id | question | osmTags |
-----|-----|----- |
| shop_types.0 | *What kind of shop is this?* (default) | |
-| shop_types.1 | Bicycle rental shop | shop=bicycle_rental |
+| shop_types.1 | Bicycle rental shop | shop=bicycle_rental | ((shop=rental & amenity=bicycle_rental)) |
| shop_types.2 | Farm Supply Shop | shop=agrarian |
| shop_types.3 | Liquor Store | shop=alcohol |
| shop_types.4 | Anime / Manga Shop | shop=anime |
diff --git a/Docs/Themes/cycle_infra.md b/Docs/Themes/cycle_infra.md
index 8ed8507ddb..1a76fec5f8 100644
--- a/Docs/Themes/cycle_infra.md
+++ b/Docs/Themes/cycle_infra.md
@@ -12,6 +12,7 @@ This theme contains the following layers:
- [barrier](../Layers/barrier.md)
- [crossings](../Layers/crossings.md)
- [bicycle_counter](../Layers/bicycle_counter.md)
+ - [cyclist_waiting_aid](../Layers/cyclist_waiting_aid.md)
Available languages:
diff --git a/Docs/Themes/disaster_response.md b/Docs/Themes/disaster_response.md
index 0f2d2691ea..d94a8c2d12 100644
--- a/Docs/Themes/disaster_response.md
+++ b/Docs/Themes/disaster_response.md
@@ -33,6 +33,7 @@ Available languages:
- ru
- hu
- uk
+ - nl
# Layers defined in this theme configuration file
These layers can not be reused in different themes.
diff --git a/Docs/Themes/elongated_coin.md b/Docs/Themes/elongated_coin.md
index 60b9f8d71b..10f3956c0e 100644
--- a/Docs/Themes/elongated_coin.md
+++ b/Docs/Themes/elongated_coin.md
@@ -22,6 +22,7 @@ Available languages:
- pl
- hu
- uk
+ - nl
# Layers defined in this theme configuration file
These layers can not be reused in different themes.
diff --git a/Docs/Themes/fireplace.md b/Docs/Themes/fireplace.md
index 7b0465e54a..801bfdbf60 100644
--- a/Docs/Themes/fireplace.md
+++ b/Docs/Themes/fireplace.md
@@ -20,6 +20,7 @@ Available languages:
- cs
- hu
- uk
+ - nl
# Layers defined in this theme configuration file
These layers can not be reused in different themes.
diff --git a/Docs/Themes/ghostbikes.md b/Docs/Themes/ghostbikes.md
index 4b8a9f0e34..57c640520a 100644
--- a/Docs/Themes/ghostbikes.md
+++ b/Docs/Themes/ghostbikes.md
@@ -33,6 +33,7 @@ Available languages:
- ca
- cs
- pt
+ - uk
# Layers defined in this theme configuration file
These layers can not be reused in different themes.
diff --git a/Docs/Themes/ghostsigns.md b/Docs/Themes/ghostsigns.md
index 25b8d246a6..2d640d4db3 100644
--- a/Docs/Themes/ghostsigns.md
+++ b/Docs/Themes/ghostsigns.md
@@ -20,6 +20,7 @@ Available languages:
- es
- cs
- uk
+ - nl
# Table of contents
@@ -543,6 +544,25 @@ This tagrendering has labels
| artwork-artwork_type.12 | Tilework | artwork_type=tilework |
| artwork-artwork_type.13 | Woodcarving | artwork_type=woodcarving |
+| id | question | osmTags |
+-----|-----|----- |
+| memorial-type.0 | *What type of memorial is this?* (default) | |
+| memorial-type.1 | This is a statue | memorial=statue |
+| memorial-type.2 | This is a plaque | memorial=plaque |
+| memorial-type.3 | This is a commemorative bench | memorial=bench |
+| memorial-type.4 | This is a ghost bike - a bicycle painted white to remember a cyclist whom deceased because of a car crash | memorial=ghost_bike |
+| memorial-type.5 | This is a stolperstein (stumbing stone) | memorial=stolperstein |
+| memorial-type.6 | This is a stele | memorial=stele |
+| memorial-type.7 | This is a memorial stone | memorial=stone |
+| memorial-type.8 | This is a bust | memorial=bust |
+| memorial-type.9 | This is a sculpture | memorial=sculpture |
+| memorial-type.10 | This is an obelisk | memorial=obelisk |
+| memorial-type.11 | This is a cross | memorial=cross |
+| memorial-type.12 | This is a blue plaque | memorial=blue_plaque |
+| memorial-type.13 | This is a historic tank, permanently placed in public space as memorial | memorial=tank |
+| memorial-type.14 | This is a memorial tree | memorial=tree |
+| memorial-type.15 | This is a gravestone; the person is buried here | historic=tomb |
+
This document is autogenerated from [assets/themes/ghostsigns/ghostsigns.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/ghostsigns/ghostsigns.json)
diff --git a/Docs/Themes/glutenfree.md b/Docs/Themes/glutenfree.md
index 2b65bb4673..7b5f541769 100644
--- a/Docs/Themes/glutenfree.md
+++ b/Docs/Themes/glutenfree.md
@@ -26,6 +26,8 @@ Available languages:
- ru
- hu
- uk
+ - fr
+ - nl
# Table of contents
@@ -1521,7 +1523,7 @@ This tagrendering has labels
| id | question | osmTags |
-----|-----|----- |
| shop_types.0 | *What kind of shop is this?* (default) | |
-| shop_types.1 | Bicycle rental shop | shop=bicycle_rental |
+| shop_types.1 | Bicycle rental shop | shop=bicycle_rental | ((shop=rental & amenity=bicycle_rental)) |
| shop_types.2 | Farm Supply Shop | shop=agrarian |
| shop_types.3 | Liquor Store | shop=alcohol |
| shop_types.4 | Anime / Manga Shop | shop=anime |
diff --git a/Docs/Themes/guideposts.md b/Docs/Themes/guideposts.md
index 5efc58305a..898b5ed556 100644
--- a/Docs/Themes/guideposts.md
+++ b/Docs/Themes/guideposts.md
@@ -20,6 +20,7 @@ Available languages:
- ca
- ru
- uk
+ - nl
# Layers defined in this theme configuration file
These layers can not be reused in different themes.
diff --git a/Docs/Themes/healthcare.md b/Docs/Themes/healthcare.md
index 2008fa2a5e..68e38a69e3 100644
--- a/Docs/Themes/healthcare.md
+++ b/Docs/Themes/healthcare.md
@@ -758,7 +758,7 @@ This tagrendering has labels
| id | question | osmTags |
-----|-----|----- |
| shop_types.0 | *What kind of shop is this?* (default) | |
-| shop_types.1 | Bicycle rental shop | shop=bicycle_rental |
+| shop_types.1 | Bicycle rental shop | shop=bicycle_rental | ((shop=rental & amenity=bicycle_rental)) |
| shop_types.2 | Farm Supply Shop | shop=agrarian |
| shop_types.3 | Liquor Store | shop=alcohol |
| shop_types.4 | Anime / Manga Shop | shop=anime |
diff --git a/Docs/Themes/icecream.md b/Docs/Themes/icecream.md
index 3de1dd638b..01a6831203 100644
--- a/Docs/Themes/icecream.md
+++ b/Docs/Themes/icecream.md
@@ -22,6 +22,8 @@ Available languages:
- ru
- hu
- uk
+ - fr
+ - nl
# Layers defined in this theme configuration file
These layers can not be reused in different themes.
diff --git a/Docs/Themes/items_with_image.md b/Docs/Themes/items_with_image.md
index a5e9ad9dee..f3c66171a3 100644
--- a/Docs/Themes/items_with_image.md
+++ b/Docs/Themes/items_with_image.md
@@ -17,6 +17,7 @@ Available languages:
- es
- cs
- hu
+ - nl
# Layers defined in this theme configuration file
These layers can not be reused in different themes.
diff --git a/Docs/Themes/kerbs_and_crossings.md b/Docs/Themes/kerbs_and_crossings.md
index febea7fc6a..ecc67c1037 100644
--- a/Docs/Themes/kerbs_and_crossings.md
+++ b/Docs/Themes/kerbs_and_crossings.md
@@ -38,7 +38,7 @@ Available languages:
- [Supported attributes](#supported-attributes)
+ [images](#images)
+ [crossing-type](#crossing-type)
- + [crossing-is-zebra](#crossing-is-zebra)
+ + [markings](#markings)
+ [crossing-bicycle-allowed](#crossing-bicycle-allowed)
+ [crossing-has-island](#crossing-has-island)
+ [crossing-tactile](#crossing-tactile)
@@ -84,8 +84,8 @@ Elements must match the expression **
[crossing](https://wiki.openstreetmap.org/wiki/Key:crossing) | Multiple choice | [uncontrolled](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Duncontrolled) [traffic_signals](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dtraffic_signals) [unmarked](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dunmarked) |
-|
[crossing_ref](https://wiki.openstreetmap.org/wiki/Key:crossing_ref) | Multiple choice | [zebra](https://wiki.openstreetmap.org/wiki/Tag:crossing_ref%3Dzebra) [](https://wiki.openstreetmap.org/wiki/Tag:crossing_ref%3D) |
+|
[crossing](https://wiki.openstreetmap.org/wiki/Key:crossing) | Multiple choice | [uncontrolled](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Duncontrolled) [traffic_signals](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dtraffic_signals) |
+|
[crossing:markings](https://wiki.openstreetmap.org/wiki/Key:crossing:markings) | [string](../SpecialInputElements.md#string) | [no](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dno) [zebra](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dzebra) [lines](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dlines) [ladder](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dladder) [dashes](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Ddashes) [dots](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Ddots) [surface](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dsurface) [ladder:skewed](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dladder:skewed) [zebra:paired](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dzebra:paired) [zebra:bicolour](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dzebra:bicolour) [zebra:double](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dzebra:double) [pictograms](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dpictograms) [ladder:paired](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dladder:paired) [lines:paired](https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dlines:paired) |
|
[bicycle](https://wiki.openstreetmap.org/wiki/Key:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno) |
|
[crossing:island](https://wiki.openstreetmap.org/wiki/Key:crossing:island) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dno) |
|
[tactile_paving](https://wiki.openstreetmap.org/wiki/Key:tactile_paving) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dno) |
@@ -109,18 +109,30 @@ The question is `What kind of crossing is this?`
- *Crossing, without traffic lights* is shown if with crossing=uncontrolled
- *Crossing with traffic signals* is shown if with crossing=traffic_signals
- *Zebra crossing* is shown if with crossing=zebra. _This option cannot be chosen as answer_
- - *Crossing without crossing markings* is shown if with crossing=unmarked
+ - *Crossing without crossing markings* is shown if with crossing=unmarked. _This option cannot be chosen as answer_
This tagrendering is only visible in the popup if the following condition is met: highway=crossing
-### crossing-is-zebra
+### markings
-The question is `Is this is a zebra crossing?`
+The question is `What kind of markings does this crossing have?`
+*This crossing has {crossing:markings} markings* is shown if `crossing:markings` is set
- - *This is a zebra crossing* is shown if with crossing_ref=zebra
- - *This is not a zebra crossing* is shown if with crossing_ref=
-
-This tagrendering is only visible in the popup if the following condition is met: crossing=uncontrolled
+ -
*This crossing has no markings* is shown if with crossing:markings=no
+ -
*This crossing has zebra markings* is shown if with crossing:markings=zebra
+ - *This crossing has markings of an unknown type* is shown if with crossing:markings=yes. _This option cannot be chosen as answer_
+ -
*This crossings has lines on either side of the crossing* is shown if with crossing:markings=lines
+ -
*This crossing has lines on either side of the crossing, along with bars connecting them* is shown if with crossing:markings=ladder
+ -
*This crossing has dashed lines on either sides of the crossing* is shown if with crossing:markings=dashes
+ -
*This crossing has dotted lines on either sides of the crossing* is shown if with crossing:markings=dots
+ -
*This crossing is marked by using a different coloured surface* is shown if with crossing:markings=surface
+ -
*This crossing has lines on either side of the crossing, along with angled bars connecting them* is shown if with crossing:markings=ladder:skewed
+ - *This crossing has zebra markings with an interruption in every bar* is shown if with crossing:markings=zebra:paired
+ -
*This crossing has zebra markings in alternating colours* is shown if with crossing:markings=zebra:bicolour
+ -
*This crossing has double zebra markings* is shown if with crossing:markings=zebra:double
+ - *This crossing has pictograms on the road* is shown if with crossing:markings=pictograms
+ - *This crossing has lines on either side of the crossing, along with bars connecting them, with an interruption in every bar* is shown if with crossing:markings=ladder:paired
+ -
*This crossing has double lines on either side of the crossing* is shown if with crossing:markings=lines:paired
### crossing-bicycle-allowed
diff --git a/Docs/Themes/lactosefree.md b/Docs/Themes/lactosefree.md
index e44015fa1b..f49b25b489 100644
--- a/Docs/Themes/lactosefree.md
+++ b/Docs/Themes/lactosefree.md
@@ -24,6 +24,7 @@ Available languages:
- cs
- hu
- uk
+ - nl
# Table of contents
@@ -1519,7 +1520,7 @@ This tagrendering has labels
| id | question | osmTags |
-----|-----|----- |
| shop_types.0 | *What kind of shop is this?* (default) | |
-| shop_types.1 | Bicycle rental shop | shop=bicycle_rental |
+| shop_types.1 | Bicycle rental shop | shop=bicycle_rental | ((shop=rental & amenity=bicycle_rental)) |
| shop_types.2 | Farm Supply Shop | shop=agrarian |
| shop_types.3 | Liquor Store | shop=alcohol |
| shop_types.4 | Anime / Manga Shop | shop=anime |
diff --git a/Docs/Themes/lighthouses.md b/Docs/Themes/lighthouses.md
index e4d64d97aa..9ae0990fab 100644
--- a/Docs/Themes/lighthouses.md
+++ b/Docs/Themes/lighthouses.md
@@ -21,6 +21,8 @@ Available languages:
- cs
- hu
- uk
+ - fr
+ - nl
# Layers defined in this theme configuration file
These layers can not be reused in different themes.
diff --git a/Docs/Themes/mapcomplete-changes.md b/Docs/Themes/mapcomplete-changes.md
index 92a9ccb205..d357d7282a 100644
--- a/Docs/Themes/mapcomplete-changes.md
+++ b/Docs/Themes/mapcomplete-changes.md
@@ -17,6 +17,8 @@ Available languages:
- de
- cs
- es
+ - fr
+ - nl
# Table of contents
diff --git a/Docs/Themes/maps.md b/Docs/Themes/maps.md
index 3e1f96ba88..7c7ab91858 100644
--- a/Docs/Themes/maps.md
+++ b/Docs/Themes/maps.md
@@ -9,6 +9,8 @@ The theme introduction reads:
This theme contains the following layers:
- [map](../Layers/map.md)
+ - [tactile_map](../Layers/tactile_map.md)
+ - [tactile_model](../Layers/tactile_model.md)
Available languages:
diff --git a/Docs/Themes/openlovemap.md b/Docs/Themes/openlovemap.md
index c454a09208..c7abb0cd32 100644
--- a/Docs/Themes/openlovemap.md
+++ b/Docs/Themes/openlovemap.md
@@ -26,6 +26,8 @@ Available languages:
- es
- cs
- hu
+ - fr
+ - nl
# Table of contents
@@ -801,11 +803,11 @@ This tagrendering has labels
| id | question | osmTags |
-----|-----|----- |
| fetish.0 | *Does this shop offer fetish gear?* (default) | |
-| fetish.1 | This shop offers soft BDSM-gear, such as fluffy handcuffs, a 'fifty-shade-of-grey'-starterset, ... | fetish:bdsm:soft=yes |
-| fetish.2 | This shop offers specialized BDSM-gear, such as spreader bars, supplies for needle play, medical bondage supplies, impact tools, shackles, metal colors, cuffs, nipple clamps, shibari accessories, ... | fetish:bdsm:specialized=yes |
-| fetish.3 | This shop offers pet play accessories, such as puppy masks, animal masks, pony play, tails, hoof shoes, ... | fetish:pet_play=yes |
-| fetish.4 | This shop offers leather gear, including pants and shirts usable in daily life up till leather harnesses | fetish:leather=yes |
-| fetish.5 | This shop offers uniforms for roleplay, such nurse uniforms, military uniforms, police, school girl, french maid, ... | fetish:uniform=yes |
+| fetish.1 | This shop offers soft BDSM-gear, such as fluffy handcuffs, a 'fifty-shade-of-grey'-starterset, ... | fetish:bdsm:soft~^(.+;)?yes(;.+)$ |
+| fetish.2 | This shop offers specialized BDSM-gear, such as spreader bars, supplies for needle play, medical bondage supplies, impact tools, shackles, metal colors, cuffs, nipple clamps, shibari accessories, ... | fetish:bdsm:specialized~^(.+;)?yes(;.+)$ |
+| fetish.3 | This shop offers pet play accessories, such as puppy masks, animal masks, pony play, tails, hoof shoes, ... | fetish:pet_play~^(.+;)?yes(;.+)$ |
+| fetish.4 | This shop offers leather gear, including pants and shirts usable in daily life up till leather harnesses | fetish:leather~^(.+;)?yes(;.+)$ |
+| fetish.5 | This shop offers uniforms for roleplay, such nurse uniforms, military uniforms, police, school girl, french maid, ... | fetish:uniform~^(.+;)?yes(;.+)$ |
| id | question | osmTags |
-----|-----|----- |
@@ -818,7 +820,7 @@ This tagrendering has labels
| id | question | osmTags |
-----|-----|----- |
| shop_types.0 | *What kind of shop is this?* (default) | |
-| shop_types.1 | Bicycle rental shop | shop=bicycle_rental |
+| shop_types.1 | Bicycle rental shop | shop=bicycle_rental | ((shop=rental & amenity=bicycle_rental)) |
| shop_types.2 | Farm Supply Shop | shop=agrarian |
| shop_types.3 | Liquor Store | shop=alcohol |
| shop_types.4 | Anime / Manga Shop | shop=anime |
diff --git a/Docs/Themes/personal.md b/Docs/Themes/personal.md
index 472398c274..e2800de7bf 100644
--- a/Docs/Themes/personal.md
+++ b/Docs/Themes/personal.md
@@ -44,6 +44,7 @@ This theme contains the following layers:
- [crossings](../Layers/crossings.md)
- [current_view](../Layers/current_view.md)
- [cycleways_and_roads](../Layers/cycleways_and_roads.md)
+ - [cyclist_waiting_aid](../Layers/cyclist_waiting_aid.md)
- [defibrillator](../Layers/defibrillator.md)
- [dentist](../Layers/dentist.md)
- [disaster_response](../Layers/disaster_response.md)
@@ -119,6 +120,8 @@ This theme contains the following layers:
- [stairs](../Layers/stairs.md)
- [street_lamps](../Layers/street_lamps.md)
- [surveillance_camera](../Layers/surveillance_camera.md)
+ - [tactile_map](../Layers/tactile_map.md)
+ - [tactile_model](../Layers/tactile_model.md)
- [tertiary_education](../Layers/tertiary_education.md)
- [ticket_machine](../Layers/ticket_machine.md)
- [toilet](../Layers/toilet.md)
diff --git a/Docs/Themes/pets.md b/Docs/Themes/pets.md
index 07c4f96b3c..30d4d1c73a 100644
--- a/Docs/Themes/pets.md
+++ b/Docs/Themes/pets.md
@@ -1306,7 +1306,7 @@ This tagrendering has labels
| id | question | osmTags |
-----|-----|----- |
| shop_types.0 | *What kind of shop is this?* (default) | |
-| shop_types.1 | Bicycle rental shop | shop=bicycle_rental |
+| shop_types.1 | Bicycle rental shop | shop=bicycle_rental | ((shop=rental & amenity=bicycle_rental)) |
| shop_types.2 | Farm Supply Shop | shop=agrarian |
| shop_types.3 | Liquor Store | shop=alcohol |
| shop_types.4 | Anime / Manga Shop | shop=anime |
diff --git a/Docs/Themes/postboxes.md b/Docs/Themes/postboxes.md
index dd6e995879..2034a7f887 100644
--- a/Docs/Themes/postboxes.md
+++ b/Docs/Themes/postboxes.md
@@ -12,6 +12,7 @@ This theme contains the following layers:
- [postoffices](../Layers/postoffices.md)
- [parcel_lockers](../Layers/parcel_lockers.md)
- [shops](../Layers/shops.md)
+ - [walls_and_buildings](../Layers/walls_and_buildings.md)
Available languages:
diff --git a/Docs/Themes/ski.md b/Docs/Themes/ski.md
index 32936283f0..7df5a751cb 100644
--- a/Docs/Themes/ski.md
+++ b/Docs/Themes/ski.md
@@ -30,6 +30,7 @@ Available languages:
- cs
- hu
- uk
+ - nl
# Layers defined in this theme configuration file
These layers can not be reused in different themes.
diff --git a/Docs/Themes/sports.md b/Docs/Themes/sports.md
index 2301f07270..6b6ca9f6cc 100644
--- a/Docs/Themes/sports.md
+++ b/Docs/Themes/sports.md
@@ -745,7 +745,7 @@ This tagrendering has labels
| id | question | osmTags |
-----|-----|----- |
| shop_types.0 | *What kind of shop is this?* (default) | |
-| shop_types.1 | Bicycle rental shop | shop=bicycle_rental |
+| shop_types.1 | Bicycle rental shop | shop=bicycle_rental | ((shop=rental & amenity=bicycle_rental)) |
| shop_types.2 | Farm Supply Shop | shop=agrarian |
| shop_types.3 | Liquor Store | shop=alcohol |
| shop_types.4 | Anime / Manga Shop | shop=anime |
diff --git a/Docs/URL_Parameters.md b/Docs/URL_Parameters.md
index e9f30473e8..a940d9ad87 100644
--- a/Docs/URL_Parameters.md
+++ b/Docs/URL_Parameters.md
@@ -364,7 +364,7 @@ The default value is _0_
Used to complete the login
-This documentation is defined in the source code at [ThemeViewState.ts](/src/Models/ThemeViewState.ts#L188)
+This documentation is defined in the source code at [ThemeViewState.ts](/src/Models/ThemeViewState.ts#L189)
No default value set
diff --git a/Docs/wikiIndex.txt b/Docs/wikiIndex.txt
index 5621add51e..23b775812a 100644
--- a/Docs/wikiIndex.txt
+++ b/Docs/wikiIndex.txt
@@ -184,7 +184,7 @@
{{service_item
|name= [https://mapcomplete.org/circular_economy circular_economy]
|region= Worldwide
-|lang= {{#language:en|en}}, {{#language:es|en}}, {{#language:de|en}}, {{#language:ca|en}}, {{#language:cs|en}}, {{#language:uk|en}}, {{#language:pl|en}}
+|lang= {{#language:en|en}}, {{#language:es|en}}, {{#language:de|en}}, {{#language:ca|en}}, {{#language:cs|en}}, {{#language:uk|en}}, {{#language:pl|en}}, {{#language:nl|en}}
|descr= A MapComplete theme: Various items which help people to share, reuse or recycle
|material= {{yes|[https://mapcomplete.org/ Yes]}}
|image= MapComplete_Screenshot.png
@@ -211,7 +211,7 @@
{{service_item
|name= [https://mapcomplete.org/bicycle_parkings bicycle_parkings]
|region= Worldwide
-|lang= {{#language:en|en}}, {{#language:de|en}}, {{#language:es|en}}, {{#language:zh_Hans|en}}, {{#language:it|en}}, {{#language:fil|en}}, {{#language:ca|en}}, {{#language:cs|en}}, {{#language:uk|en}}, {{#language:pl|en}}
+|lang= {{#language:en|en}}, {{#language:de|en}}, {{#language:es|en}}, {{#language:zh_Hans|en}}, {{#language:it|en}}, {{#language:fil|en}}, {{#language:ca|en}}, {{#language:cs|en}}, {{#language:uk|en}}, {{#language:pl|en}}, {{#language:nl|en}}, {{#language:fr|en}}
|descr= A MapComplete theme: A map showing all types of bicycle parkings
|material= {{yes|[https://mapcomplete.org/ Yes]}}
|image= MapComplete_Screenshot.png
@@ -292,7 +292,7 @@
{{service_item
|name= [https://mapcomplete.org/disaster_response disaster_response]
|region= Worldwide
-|lang= {{#language:en|en}}, {{#language:it|en}}, {{#language:de|en}}, {{#language:es|en}}, {{#language:ca|en}}, {{#language:cs|en}}, {{#language:uk|en}}
+|lang= {{#language:en|en}}, {{#language:it|en}}, {{#language:de|en}}, {{#language:es|en}}, {{#language:ca|en}}, {{#language:cs|en}}, {{#language:uk|en}}, {{#language:nl|en}}
|descr= A MapComplete theme: This map contains elements meant for disaster preparedness and response
|material= {{yes|[https://mapcomplete.org/ Yes]}}
|image= MapComplete_Screenshot.png
@@ -310,7 +310,7 @@
{{service_item
|name= [https://mapcomplete.org/elongated_coin elongated_coin]
|region= Worldwide
-|lang= {{#language:en|en}}, {{#language:de|en}}, {{#language:es|en}}, {{#language:ca|en}}, {{#language:cs|en}}, {{#language:pl|en}}, {{#language:uk|en}}
+|lang= {{#language:en|en}}, {{#language:de|en}}, {{#language:es|en}}, {{#language:ca|en}}, {{#language:cs|en}}, {{#language:pl|en}}, {{#language:uk|en}}, {{#language:nl|en}}
|descr= A MapComplete theme: Find penny presses to create your own elongated coins
|material= {{yes|[https://mapcomplete.org/ Yes]}}
|image= MapComplete_Screenshot.png
@@ -328,7 +328,7 @@
{{service_item
|name= [https://mapcomplete.org/fireplace fireplace]
|region= Worldwide
-|lang= {{#language:de|en}}, {{#language:en|en}}, {{#language:es|en}}, {{#language:ca|en}}, {{#language:cs|en}}, {{#language:uk|en}}
+|lang= {{#language:de|en}}, {{#language:en|en}}, {{#language:es|en}}, {{#language:ca|en}}, {{#language:cs|en}}, {{#language:uk|en}}, {{#language:nl|en}}, {{#language:fr|en}}
|descr= A MapComplete theme: Outdoor place to make a fire or a fixed barbecue in an official place
|material= {{yes|[https://mapcomplete.org/ Yes]}}
|image= MapComplete_Screenshot.png
@@ -355,7 +355,7 @@
{{service_item
|name= [https://mapcomplete.org/ghostsigns ghostsigns]
|region= Worldwide
-|lang= {{#language:en|en}}, {{#language:de|en}}, {{#language:es|en}}, {{#language:ca|en}}, {{#language:cs|en}}, {{#language:uk|en}}
+|lang= {{#language:en|en}}, {{#language:de|en}}, {{#language:es|en}}, {{#language:ca|en}}, {{#language:cs|en}}, {{#language:uk|en}}, {{#language:fr|en}}, {{#language:nl|en}}
|descr= A MapComplete theme: A map showing disused signs on buildings
|material= {{yes|[https://mapcomplete.org/ Yes]}}
|image= MapComplete_Screenshot.png
@@ -364,7 +364,7 @@
{{service_item
|name= [https://mapcomplete.org/glutenfree glutenfree]
|region= Worldwide
-|lang= {{#language:en|en}}, {{#language:de|en}}, {{#language:it|en}}, {{#language:es|en}}, {{#language:ca|en}}, {{#language:cs|en}}, {{#language:uk|en}}
+|lang= {{#language:en|en}}, {{#language:de|en}}, {{#language:it|en}}, {{#language:es|en}}, {{#language:ca|en}}, {{#language:cs|en}}, {{#language:uk|en}}, {{#language:nl|en}}
|descr= A MapComplete theme: A crowdsourced map with glutenfree items
|material= {{yes|[https://mapcomplete.org/ Yes]}}
|image= MapComplete_Screenshot.png
@@ -373,7 +373,7 @@
{{service_item
|name= [https://mapcomplete.org/guideposts guideposts]
|region= Worldwide
-|lang= {{#language:en|en}}, {{#language:cs|en}}, {{#language:de|en}}, {{#language:es|en}}, {{#language:pl|en}}, {{#language:uk|en}}
+|lang= {{#language:en|en}}, {{#language:cs|en}}, {{#language:de|en}}, {{#language:es|en}}, {{#language:pl|en}}, {{#language:uk|en}}, {{#language:nl|en}}
|descr= A MapComplete theme: Guideposts (also known as fingerposts or finger posts) are often found along official hiking, cycling, skiing or horseback riding routes to indicate the directions to different destinations
The position of a signpost can be used by a hiker/biker/rider/s…
@@ -411,7 +411,7 @@ The position of a signpost can be used by a hiker/biker/rider/s…
{{service_item
|name= [https://mapcomplete.org/icecream icecream]
|region= Worldwide
-|lang= {{#language:en|en}}, {{#language:de|en}}, {{#language:cs|en}}, {{#language:ca|en}}, {{#language:es|en}}, {{#language:it|en}}
+|lang= {{#language:en|en}}, {{#language:de|en}}, {{#language:cs|en}}, {{#language:ca|en}}, {{#language:es|en}}, {{#language:it|en}}, {{#language:nl|en}}
|descr= A MapComplete theme: A map showing ice cream parlors and ice cream vending machines
|material= {{yes|[https://mapcomplete.org/ Yes]}}
|image= MapComplete_Screenshot.png
@@ -438,7 +438,7 @@ The position of a signpost can be used by a hiker/biker/rider/s…
{{service_item
|name= [https://mapcomplete.org/lactosefree lactosefree]
|region= Worldwide
-|lang= {{#language:en|en}}, {{#language:de|en}}, {{#language:es|en}}, {{#language:ca|en}}, {{#language:cs|en}}, {{#language:uk|en}}
+|lang= {{#language:en|en}}, {{#language:de|en}}, {{#language:es|en}}, {{#language:ca|en}}, {{#language:cs|en}}, {{#language:uk|en}}, {{#language:nl|en}}
|descr= A MapComplete theme: A crowdsourced map with lactose free shops and restaurants
|material= {{yes|[https://mapcomplete.org/ Yes]}}
|image= MapComplete_Screenshot.png
@@ -447,7 +447,7 @@ The position of a signpost can be used by a hiker/biker/rider/s…
{{service_item
|name= [https://mapcomplete.org/lighthouses lighthouses]
|region= Worldwide
-|lang= {{#language:en|en}}, {{#language:de|en}}, {{#language:it|en}}, {{#language:es|en}}, {{#language:cs|en}}, {{#language:uk|en}}
+|lang= {{#language:en|en}}, {{#language:de|en}}, {{#language:it|en}}, {{#language:es|en}}, {{#language:cs|en}}, {{#language:uk|en}}, {{#language:fr|en}}, {{#language:nl|en}}
|descr= A MapComplete theme: Lighthouses are tall buildings with a light on top to guide marine traffic
|material= {{yes|[https://mapcomplete.org/ Yes]}}
|image= MapComplete_Screenshot.png
@@ -573,7 +573,7 @@ The position of a signpost can be used by a hiker/biker/rider/s…
{{service_item
|name= [https://mapcomplete.org/ski ski]
|region= Worldwide
-|lang= {{#language:en|en}}, {{#language:de|en}}, {{#language:es|en}}, {{#language:cs|en}}, {{#language:uk|en}}
+|lang= {{#language:en|en}}, {{#language:de|en}}, {{#language:es|en}}, {{#language:cs|en}}, {{#language:uk|en}}, {{#language:fr|en}}, {{#language:nl|en}}
|descr= A MapComplete theme: Everything you need to go skiing
|material= {{yes|[https://mapcomplete.org/ Yes]}}
|image= MapComplete_Screenshot.png
diff --git a/README.md b/README.md
index 98b5a9ba5e..ba0f3a35c4 100644
--- a/README.md
+++ b/README.md
@@ -114,8 +114,6 @@ A typical user journey would be:
7. At 250 changesets, the tags get linked to the wiki.
-8. At 500 changesets, I expect contributors to be power users and to be comfortable with tagging schemes and such. The
- custom theme generator is unlocked.
## License
@@ -128,14 +126,14 @@ own change and are using it, I would like to know about it. Drop me a line, give
## Translating MapComplete
The core strings and builtin themes of MapComplete are translated
-on [Hosted Weblate](https://hosted.weblate.org/projects/mapcomplete/core/). You can easily make an account and start
+on [Weblate](https://translate.mapcomplete.org/projects/mapcomplete/core/). You can easily make an account and start
translating in their web-environment - no installation required.
You can even jump to the right translation string directly from MapComplete:

-[](https://hosted.weblate.org/engage/mapcomplete/)
+[](https://translate.mapcomplete.org/engage/mapcomplete/)
## Architecture
diff --git a/assets/layers/advertising/advertising.json b/assets/layers/advertising/advertising.json
index e034e2f992..a666a63c8f 100644
--- a/assets/layers/advertising/advertising.json
+++ b/assets/layers/advertising/advertising.json
@@ -31,7 +31,8 @@
"pt_BR": "Completaremos os dados das características de publicidade com referência, operador e iluminação",
"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": "Ми доповнимо дані з рекламних об'єктів посиланням, оператором та освітленням"
+ "uk": "Ми доповнимо дані з рекламних об'єктів посиланням, оператором та освітленням",
+ "nl": "We vullen de informatie over de advertentie aan met de referentie, de operator en de verlichting"
},
"source": {
"osmTags": {
@@ -41,7 +42,7 @@
]
}
},
- "minzoom": 15,
+ "minzoom": 13,
"title": {
"render": {
"*": "{advertising}"
@@ -63,7 +64,8 @@
"pl": "Bilbord",
"pt_BR": "Outdoor",
"zh_Hans": "广告牌",
- "pt": "Outdoor"
+ "pt": "Outdoor",
+ "uk": "Білборд"
}
},
{
@@ -82,7 +84,8 @@
"pl": "Tablica",
"pt_BR": "Quadro",
"zh_Hans": "木板",
- "pt": "Quadro"
+ "pt": "Quadro",
+ "uk": "Дошка оголошень"
}
},
{
@@ -100,7 +103,8 @@
"pl": "Pudełko plakatowe",
"pt_BR": "Caixa de pôster",
"zh_Hans": "海报盒",
- "pt": "Caixa de pôster"
+ "pt": "Caixa de pôster",
+ "uk": "Поштова скринька"
}
},
{
@@ -239,7 +243,7 @@
"en": "Totem",
"de": "Totem",
"cs": "Totem",
- "nl": "Aanplakzuil",
+ "nl": "Reclamezuil",
"fr": "Totem",
"eu": "Totem",
"pl": "Totem",
@@ -265,7 +269,8 @@
"pl": "Mural ścienny",
"pt_BR": "Pintura mural",
"zh_Hans": "墙上的画",
- "pt": "Pintura mural"
+ "pt": "Pintura mural",
+ "uk": "Настінний розпис"
}
}
]
@@ -440,7 +445,8 @@
"it": "un cartellone",
"zh_Hant": "一塊告示牌",
"ru": "билборд",
- "uk": "білборд"
+ "uk": "білборд",
+ "nl": "een reclamebord"
},
"description": {
"en": "A large outdoor advertising structure, typically found in high-traffic areas such as alongside busy roads",
@@ -455,7 +461,8 @@
"pl": "Duża struktura reklamowa na dworze, zwykle znajdująca się w obszarach z dużym ruchem, np. w pobliżu ruchliwych dróg",
"pt_BR": "Uma grande estrutura de publicidade outdoor, geralmente encontrada em áreas com alto tráfego, como ao longo de estradas movimentadas",
"it": "Grande struttura pubblicitaria all'aperto, trovata normalmente in aree ad alto traffico come accanto a strade molto trafficate",
- "uk": "Велика зовнішня рекламна конструкція, зазвичай розташована в місцях з високим трафіком, наприклад, уздовж жвавих доріг"
+ "uk": "Велика зовнішня рекламна конструкція, зазвичай розташована в місцях з високим трафіком, наприклад, уздовж жвавих доріг",
+ "nl": "Een grote structuur voor reclame, meestal te vinden in gebieden met veel verkeer, zoals langs drukke wegen"
},
"exampleImages": [
"./assets/themes/advertising/KFC_Billboard.jpg",
@@ -476,7 +483,8 @@
"cs": "billboard připevněný na stěnu",
"ca": "un cartell muntat a una paret",
"es": "una valla publicitaria montada en una pared",
- "uk": "білборд, прикріплений до стіни"
+ "uk": "білборд, прикріплений до стіни",
+ "nl": "een reclamebord bevestigd aan een muur"
},
"description": {
"en": "A large outdoor advertising structure, typically found in high-traffic areas such as alongside busy roads mounted on a wall",
@@ -485,7 +493,8 @@
"pl": "Duży obiekt reklamowy na zewnątrz, zazwyczaj znajduje się w obszarach z dużym ruchem, np. obok ruchliwych dróg na ścianie",
"ca": "Una gran estructura publicitària exterior, que normalment es troba en zones de gran trànsit, com ara al costat de carreteres transitades muntades a una paret",
"es": "Una gran estructura publicitaria exterior, que normalmente se encuentra en áreas de mucho tráfico, como junto a carreteras concurridas, montada en una pared",
- "uk": "Велика зовнішня рекламна конструкція, зазвичай розташована в місцях з високим трафіком, наприклад, уздовж жвавих доріг, встановлена на стіні"
+ "uk": "Велика зовнішня рекламна конструкція, зазвичай розташована в місцях з високим трафіком, наприклад, уздовж жвавих доріг, встановлена на стіні",
+ "nl": "Een grote structuur voor reclame, meestal te vinden in verkeersrijke gebieden zoals langs drukke wegen, bevestigd op een muur"
},
"exampleImages": [
"./assets/themes/advertising/billboard_wall.jpg"
@@ -507,7 +516,8 @@
"pt_BR": "uma caixa expositora independente",
"it": "un cartellone pubblicitario fissato a terra",
"zh_Hant": "獨自設立的海報框",
- "uk": "окремо стояча коробка для плакатів"
+ "uk": "окремо стояча коробка для плакатів",
+ "nl": "een vrijstaande posterbak"
},
"exampleImages": [
"./assets/themes/advertising/Mupi_spain.jpg",
@@ -530,7 +540,8 @@
"pt_BR": "uma caixa de pôster montada em uma parede",
"zh_Hans": "安装在墙上的海报盒子",
"it": "un cartellone pubblicitario fissato al muro",
- "uk": "коробка для плакатів, що кріпиться на стіну"
+ "uk": "коробка для плакатів, що кріпиться на стіну",
+ "nl": "een aan de muur gemonteerde posterbak"
},
"snapToLayer": [
"walls_and_buildings"
@@ -549,7 +560,8 @@
"es": "un expositor de carteles que forma parte de un refugio de transporte público",
"cs": "plakátovací skříňka, která je součástí přístřešku veřejné dopravy",
"ca": "un mupi que forma part d'un refugi de transport públic",
- "uk": "афішна скринька, що є частиною зупинки громадського транспорту"
+ "uk": "афішна скринька, що є частиною зупинки громадського транспорту",
+ "nl": "een posterbak die deel uitmaakt van een bushokje"
},
"snapToLayer": [
"shelter"
@@ -722,7 +734,8 @@
"es": "una pantalla montada en un refugio de transporte público",
"cs": "obrazovka namontovaná na dopravním přístřešku",
"ca": "una pantalla muntada en una marquesina",
- "uk": "екран, встановлений на тимчасовому укритті"
+ "uk": "екран, встановлений на тимчасовому укритті",
+ "nl": "een scherm gemonteerd op een schuilhokje"
},
"snapToLayer": [
"shelter"
@@ -787,7 +800,8 @@
"pt_BR": "um totem",
"zh_Hans": "图腾",
"it": "un totem",
- "uk": "тотем"
+ "uk": "тотем",
+ "nl": "eem reclamezuil"
},
"exampleImages": [
"./assets/themes/advertising/AdvertisingTotem_004.jpg",
@@ -812,7 +826,8 @@
"pl": "znak",
"zh_Hans": "标志",
"it": "un'insegna",
- "uk": "знак"
+ "uk": "знак",
+ "nl": "een bord"
},
"description": {
"en": "Used for advertising signs, neon signs, logos & institutional entrance signs",
@@ -826,7 +841,8 @@
"pl": "Używany do znaków reklamowych, neonów, logo i znaków wejściowych do instytucji",
"pt_BR": "Usado para placas de publicidade, letreiros de neon, logotipos e placas de entrada institucionais",
"it": "Utilizzato per insegna pubblicitaria, un'insegna al neon, i loghi o le indicazioni d'entrata",
- "uk": "Використовується для рекламних вивісок, неонових вивісок, логотипів та вхідних табличок установ"
+ "uk": "Використовується для рекламних вивісок, неонових вивісок, логотипів та вхідних табличок установ",
+ "nl": "Gebruikt voor reclameborden, neonborden, logo's & toegangsborden voor instellingen"
},
"exampleImages": [
"./assets/themes/advertising/Waitrose_sign.jpg",
@@ -855,7 +871,8 @@
"pt_BR": "uma escultura",
"zh_Hans": "雕像",
"it": "una scultura",
- "uk": "скульптура"
+ "uk": "скульптура",
+ "nl": "een beeldhouwwerk"
},
"exampleImages": [
"./assets/themes/advertising/Aircraft_Sculpture.jpg",
@@ -909,7 +926,8 @@
"pt_BR": "Isso é uma {advertising}",
"zh_Hans": "这是一个{advertising}",
"pt": "Isto é uma {advertising}",
- "fr": "C'est un {advertising}"
+ "fr": "C'est un {advertising}",
+ "uk": "Це {advertising}"
},
"question": {
"ca": "Quin tipus d'element publicitari és aquest?",
@@ -921,7 +939,8 @@
"pl": "Jakiego rodzaju jest to obiekt reklamowy?",
"pt_BR": "Que tipo de recurso de publicitário é este?",
"zh_Hans": "这是哪种类型的广告功能?",
- "pt": "Que tipo de recurso de publicitário é este?"
+ "pt": "Que tipo de recurso de publicitário é este?",
+ "uk": "Який це тип рекламного об'єкту?"
},
"freeform": {
"key": "advertising"
@@ -941,7 +960,8 @@
"pl": "To jest bilbord",
"pt_BR": "Isso é um outdoor",
"zh_Hans": "这是一个广告牌",
- "uk": "Це білборд"
+ "uk": "Це білборд",
+ "nl": "Dit is een reclamebord"
},
"icon": {
"path": "./assets/themes/advertising/billboard.svg",
@@ -961,7 +981,8 @@
"pl": "To jest tablica",
"pt_BR": "Isso é uma placa",
"zh_Hans": "这是一块板",
- "uk": "Це дошка"
+ "uk": "Це дошка",
+ "nl": "Dit is een bord"
},
"icon": {
"path": "./assets/themes/advertising/board.svg",
@@ -981,7 +1002,8 @@
"pt_BR": "Isto é uma coluna",
"pl": "To jest kolumna",
"zh_Hans": "这是一个专栏",
- "pt": "Isto é uma coluna"
+ "pt": "Isto é uma coluna",
+ "uk": "Це стовпчик"
},
"icon": {
"path": "./assets/themes/advertising/column.svg",
@@ -1023,7 +1045,8 @@
"pt_BR": "Isso é um quadro de pôster",
"zh_Hans": "这是海报盒",
"pt": "Isto é um quadro de pôster",
- "uk": "Це скринька для плакатів"
+ "uk": "Це скринька для плакатів",
+ "nl": "Dit is een posterbak"
},
"icon": {
"path": "./assets/themes/advertising/poster_box.svg",
@@ -1043,7 +1066,8 @@
"pt_BR": "Isso é uma tela",
"zh_Hans": "这是一个屏幕",
"pt": "Isto é um ecrã",
- "uk": "Це екран"
+ "uk": "Це екран",
+ "nl": "Dit is een scherm"
},
"icon": {
"path": "./assets/themes/advertising/screen.svg",
@@ -1063,7 +1087,8 @@
"pt_BR": "Isso é uma escultura",
"zh_Hans": "这是一个雕塑",
"pt": "Isto é uma escultura",
- "uk": "Це скульптура"
+ "uk": "Це скульптура",
+ "nl": "Dit is een beeldhouwerk"
},
"icon": {
"path": "./assets/themes/advertising/sculpture.svg",
@@ -1082,7 +1107,9 @@
"pt_BR": "Isto é uma placa",
"pl": "To jest znak",
"zh_Hans": "这是一个标志",
- "pt": "Isto é uma placa"
+ "pt": "Isto é uma placa",
+ "nl": "Dit is een teken",
+ "uk": "Це знак"
},
"icon": {
"path": "./assets/themes/advertising/sign.svg",
@@ -1101,7 +1128,8 @@
"pl": "To jest plandeka (odporny na warunki atmosferyczne kawałek materiału tekstylnego z przekazem reklamowym)",
"pt_BR": "Isso é uma lona (uma peça de tecido à prova de intempéries com uma mensagem publicitária)",
"zh_Hans": "这是防水布(带有广告信息的防风雨纺织品)",
- "pt": "Isto é uma lona (uma peça de tecido à prova de intempéries com uma mensagem publicitária)"
+ "pt": "Isto é uma lona (uma peça de tecido à prova de intempéries com uma mensagem publicitária)",
+ "uk": "Це брезент (стійкий до погодних умов шматок текстилю з рекламним повідомленням)"
},
"icon": {
"path": "./assets/themes/advertising/tarp.svg",
@@ -1120,7 +1148,9 @@
"pl": "To jest totem",
"pt_BR": "Isso é um totem",
"zh_Hans": "这是一个图腾",
- "pt": "Isto é um totem"
+ "pt": "Isto é um totem",
+ "nl": "Dit is een reclamezuil",
+ "uk": "Це тотем"
},
"icon": {
"path": "./assets/themes/advertising/totem.svg",
@@ -1140,7 +1170,8 @@
"pt_BR": "Isso é uma pintura mural",
"zh_Hans": "这是一幅壁画",
"pt": "Isto é uma pintura mural",
- "uk": "Це настінний розпис"
+ "uk": "Це настінний розпис",
+ "nl": "Dit is een muurschildering"
},
"icon": {
"path": "./assets/themes/advertising/wall_painting.svg",
@@ -1154,7 +1185,8 @@
"de": "Dies ist eine Kachelarbeit - die Werbung ist auf Fliesen gemalt",
"cs": "Jedná se o dlaždice - reklama je namalovaná na dlaždicích",
"es": "Se trata de un trabajo en azulejo: el anuncio está pintado en azulejos",
- "uk": "Це кахельна плитка - реклама намальована на плитці"
+ "uk": "Це кахельна плитка - реклама намальована на плитці",
+ "nl": "Dit is betegeling - de reclame is op tegels geschilderd"
}
},
{
@@ -1163,7 +1195,8 @@
"en": "This is a relief",
"de": "Dies ist ein Relief",
"cs": "Toto je reliéf",
- "es": "Se trata de un relieve"
+ "es": "Se trata de un relieve",
+ "nl": "Dit is een reliëf"
}
}
]
@@ -1181,7 +1214,8 @@
"pl": "Czy ta reklama przechodzi przez wiele różnych wiadomości?",
"pt_BR": "Este anúncio passa por várias mensagens em sequência?",
"zh_Hans": "该广告是否会在多条消息中循环播放?",
- "uk": "Чи циркулює ця реклама через кілька повідомлень?"
+ "uk": "Чи циркулює ця реклама через кілька повідомлень?",
+ "nl": "Doorloopt deze advertentie meerdere berichten?"
},
"condition": {
"#": "Screens are _always_ animated; flags, tarps, and wall_paintings cannot be animated; signs can be anything so we don't make guesses",
@@ -1208,7 +1242,8 @@
"pl": "Statyczne, zawsze pokazuje tą samą wiadomość",
"pt_BR": "Estático, mostra sempre a mesma mensagem",
"zh_Hans": "静态,始终显示相同的消息",
- "uk": "Статичний, завжди показує одне й те саме повідомлення"
+ "uk": "Статичний, завжди показує одне й те саме повідомлення",
+ "nl": "Statisch, toont altijd hetzelfde bericht"
}
},
{
@@ -1224,7 +1259,8 @@
"pl": "Ten obiekt ma wbudowany cyfrowy wyświetlacz do pokazywania cen lub innych informacji",
"pt_BR": "Este objeto possui um display digital incorporado para mostrar preços ou alguma outra mensagem",
"zh_Hans": "该对象有一个内置的数字显示器来显示价格或其他一些消息",
- "uk": "Цей об'єкт має вбудований цифровий дисплей для відображення цін або іншого повідомлення"
+ "uk": "Цей об'єкт має вбудований цифровий дисплей для відображення цін або іншого повідомлення",
+ "nl": "Dit object heeft een ingebouwd digitaal scherm om prijzen of andere berichten weer te geven"
},
"hideInAnswer": {
"and": [
@@ -1247,7 +1283,8 @@
"pt": "Trivision - o outdoor consiste em muitos prismas triangulares que giram regularmente",
"pt_BR": "Trivision - o outdoor consiste em muitos prismas triangulares que giram regularmente",
"zh_Hans": "Trivision - 广告牌由许多有规律旋转的三棱柱组成",
- "uk": "Поділ - білборд складається з багатьох трикутних призм, які регулярно обертаються"
+ "uk": "Поділ - білборд складається з багатьох трикутних призм, які регулярно обертаються",
+ "nl": "Trivision - het reclamebord bestaat uit verschillende driehoekige prisma's die regelmatig ronddraaien"
},
"icon": {
"class": "large",
@@ -1268,7 +1305,8 @@
"pt": "Pôsteres de rolagem",
"pt_BR": "Pôsteres deslizantes",
"zh_Hans": "滚动海报",
- "uk": "Прокрутка постерів"
+ "uk": "Прокрутка постерів",
+ "nl": "Roterende posters"
},
"hideInAnswer": {
"and": [
@@ -1290,7 +1328,8 @@
"pt": "Gira sobre si mesmo",
"pt_BR": "Gira sobre si mesmo",
"zh_Hans": "自行旋转",
- "uk": "Обертається на себе"
+ "uk": "Обертається на себе",
+ "nl": "Roteert vanzelf"
},
"hideInAnswer": {
"and": [
@@ -1446,7 +1485,8 @@
"pl": "Informacje dotyczące bezpieczeństwa",
"pt_BR": "Informações de segurança",
"zh_Hans": "安全信息",
- "uk": "Інформація про безпеку"
+ "uk": "Інформація про безпеку",
+ "nl": "Veiligheidsinformatie"
},
"hideInAnswer": {
"and": [
@@ -1469,7 +1509,8 @@
"pl": "Reklamy wyborcze",
"pt_BR": "Propaganda eleitoral",
"zh_Hans": "选举广告",
- "uk": "Передвиборча реклама"
+ "uk": "Передвиборча реклама",
+ "nl": "Verkiezingsadvertentie"
}
},
{
@@ -1529,7 +1570,8 @@
"pl": "Żeby wyrazić swoją opinię",
"pt_BR": "Para expressar sua opinião",
"zh_Hans": "表达您的意见",
- "uk": "Щоб висловити свою думку"
+ "uk": "Щоб висловити свою думку",
+ "nl": "Om je mening te geven"
},
"hideInAnswer": {
"or": [
@@ -1570,7 +1612,8 @@
"pl": "Znak finansowania",
"pt_BR": "Placa de financiamento",
"zh_Hans": "资助标志",
- "uk": "Ознака фінансування"
+ "uk": "Ознака фінансування",
+ "nl": "Financieringsteken"
},
"hideInAnswer": {
"or": [
@@ -1626,7 +1669,8 @@
"pl": "Z ilu stron można oglądać reklamy?",
"pt_BR": "De quantos lados você consegue visualizar os anúncios?",
"zh_Hans": "您可以从几个侧面观看广告?",
- "uk": "Зі скількох сторін можна дивитися рекламу?"
+ "uk": "Зі скількох сторін можна дивитися рекламу?",
+ "nl": "Vanaf hoeveel kanten kun je naar reclame kijken?"
},
"mappings": [
{
@@ -1644,7 +1688,8 @@
"pt_BR": "Este objeto tem anúncios em um único lado",
"zh_Hans": "该物体单面有广告",
"it": "Questo oggetto ha la pubblicità solo da un lato",
- "uk": "Цей об'єкт має рекламу з одного боку"
+ "uk": "Цей об'єкт має рекламу з одного боку",
+ "nl": "Dit object heeft reclame aan een enkele zijde"
}
},
{
@@ -1661,7 +1706,8 @@
"pl": "Ten obiekt ma reklamy po dwóch stronach",
"pt_BR": "Este objeto tem anúncios em ambos os lados",
"zh_Hans": "该物体双面有广告",
- "uk": "Цей об'єкт має рекламу з обох боків"
+ "uk": "Цей об'єкт має рекламу з обох боків",
+ "nl": "Dit object heeft reclame aan beide zijdes"
}
}
]
@@ -1713,7 +1759,8 @@
"es": "¿Este letrero es de un negocio que ya no existe o que ya no se mantiene?",
"cs": "Je tato značka určena pro již neexistující nebo neudržovaný podnik?",
"uk": "Це знак для бізнесу, який більше не існує або більше не підтримується?",
- "fr": "Est-ce l'enseigne d'un commerce qui n'existe plus ou n'est plus en activité ?"
+ "fr": "Est-ce l'enseigne d'un commerce qui n'existe plus ou n'est plus en activité ?",
+ "nl": "Is dit bord voor een bedrijf dat niet meer bestaat of niet meer wordt onderhouden?"
},
"mappings": [
{
@@ -1725,7 +1772,8 @@
"cs": "Jedná se o historický reklamní nápis (reklama na již neexistující podnik nebo velmi starý nápis s památkovou hodnotou)",
"es": "Se trata de un anuncio histórico (un anuncio de un negocio que ya no existe o un cartel muy antiguo con valor patrimonial)",
"uk": "Це історична рекламна вивіска (реклама підприємства, яке більше не існує, або дуже стара вивіска, що має історичну цінність)",
- "fr": "C'est une publicité historique (publicité pour un commerce qui n'existe plus ou une très vielle publicité avec un intérêt patrimonial)"
+ "fr": "C'est une publicité historique (publicité pour un commerce qui n'existe plus ou une très vielle publicité avec un intérêt patrimonial)",
+ "nl": "Dit is een historisch reclamebord (een advertentie voor een bedrijf dat niet meer bestaat of een heel oud bord met erfgoedwaarde)"
}
},
{
@@ -1736,7 +1784,8 @@
"cs": "Tento reklamní nápis nemá žádnou historickou hodnotu (podnik stále existuje a nemá žádnou památkovou hodnotu)",
"es": "Este anuncio no tiene valor histórico (el negocio sigue existiendo y no tiene valor patrimonial)",
"uk": "Ця рекламна вивіска не має історичної цінності (бізнес все ще існує і не має історичної цінності)",
- "fr": "Cette publicité n'a pas de valeur historique (le commerce existe toujours, mais n'a pas de valeur patrimoniale particulière)"
+ "fr": "Cette publicité n'a pas de valeur historique (le commerce existe toujours, mais n'a pas de valeur patrimoniale particulière)",
+ "nl": "Dit reclamebord heeft geen historische waarde (het bedrijf bestaat nog steeds en heeft geen erfgoedwaarde)"
}
}
]
diff --git a/assets/layers/aerialway/aerialway.json b/assets/layers/aerialway/aerialway.json
index f140424fce..ed3fdce9f8 100644
--- a/assets/layers/aerialway/aerialway.json
+++ b/assets/layers/aerialway/aerialway.json
@@ -5,7 +5,8 @@
"de": "Seilbahnen",
"cs": "Letecké trasy",
"ca": "Vies aeries",
- "es": "Teleféricos"
+ "es": "Teleféricos",
+ "nl": "Kabelbanen"
},
"description": {
"en": "Various forms of transport for passengers and goods that use wires, including cable cars, gondolas, chair lifts, drag lifts, and zip lines. ",
@@ -58,7 +59,8 @@
"pl": "{name}",
"es": "{name}",
"cs": "{name}",
- "ca": "{name}"
+ "ca": "{name}",
+ "nl": "{name}"
},
"condition": "name~*",
"classes": "bg-white p-1 px-2 rounded"
@@ -104,7 +106,8 @@
"en": "This is a cable car where the car goes up and down again on the same cable.",
"de": "Es handelt sich um eine Seilbahn, bei der die Kabine auf demselben Seil nach oben und wieder nach unten fährt.",
"cs": "Jedná se o lanovku, kde vagon jezdí nahoru a dolů po stejném laně.",
- "es": "Se trata de un teleférico donde la cabina sube y baja por el mismo cable."
+ "es": "Se trata de un teleférico donde la cabina sube y baja por el mismo cable.",
+ "nl": "Dit is een kabelbaan waar de gondel op dezelfde kabel naar boven en naar beneden gaat."
},
"icon": "./assets/layers/aerialway/cable_car.svg"
},
@@ -114,7 +117,8 @@
"en": "This is a gondola where the cars go around in continuous circles",
"de": "Es handelt sich um eine Seilbahn, bei der die Kabinen in ständigen Kreisen fahren",
"cs": "Jedná se o gondolu, kde vozy jezdí v nepřetržitých kruzích",
- "es": "Se trata de una góndola donde las cabinas giran en círculos continuos"
+ "es": "Se trata de una góndola donde las cabinas giran en círculos continuos",
+ "nl": "Dit is een kabellift waar de gondel in een continue circuit gaat"
},
"icon": "./assets/layers/aerialway/gondola_lift.svg"
},
@@ -124,7 +128,8 @@
"en": "An open chairlift with seats to sit on and open to the outside air.",
"de": "Ein offener Sessellift mit Sitzgelegenheiten und Zugang zur Außenluft.",
"cs": "Otevřená lanovka se sedačkami k sezení na čerstvém vzduchu.",
- "es": "Un telesilla abierto con asientos para sentarse y abierto al aire libre."
+ "es": "Un telesilla abierto con asientos para sentarse y abierto al aire libre.",
+ "nl": "Een open stoeltjeslift met zitjes om op te zitten."
},
"icon": "./assets/layers/aerialway/chair_lift.svg"
},
@@ -144,7 +149,8 @@
"de": "Ein Schlepplift",
"pl": "Wyciąg orczykowy",
"cs": "Vlek",
- "es": "Un remonte"
+ "es": "Un remonte",
+ "nl": "Een sleeplift"
},
"hideInAnswer": true
},
@@ -154,7 +160,8 @@
"en": "A drag lift with T-shaped carriers for two passengers at a time",
"de": "Ein Schlepplift mit T-förmigen Trägern für jeweils zwei Passagiere",
"cs": "Vlek s nosiči ve tvaru T pro dva cestující najednou",
- "es": "Un remonte con transportadores en forma de T para dos pasajeros a la vez"
+ "es": "Un remonte con transportadores en forma de T para dos pasajeros a la vez",
+ "nl": "Een sleeplift met T-vormige armen voor twee passagiers"
}
},
{
@@ -163,7 +170,8 @@
"en": "A drag lift with L-shaped bars for a single passenger at a time",
"de": "Ein Schlepplift mit L-förmigen Trägern für jeweils einen Passagier",
"cs": "Vlek s tyčemi ve tvaru písmene L pro jednoho cestujícího",
- "es": "Un remonte con barras en forma de L para un solo pasajero a la vez"
+ "es": "Un remonte con barras en forma de L para un solo pasajero a la vez",
+ "nl": "Een sleeplift met L-vormige stangen voor één passagier"
}
},
{
@@ -223,7 +231,8 @@
"pl": "To nie włącza czasu oczekiwania.",
"es": "Esto no incluye el tiempo de espera.",
"cs": "To nezahrnuje čekací dobu.",
- "ca": "Això exclou el temps d'espera."
+ "ca": "Això exclou el temps d'espera.",
+ "nl": "Dit is exclusief wachttijd."
},
"freeform": {
"key": "duration"
@@ -235,7 +244,8 @@
"pl": "Pojedynczy przejazd trwa {duration} minut",
"es": "Un viaje sencillo tarda {duration} minutos",
"cs": "Jedna jízda trvá {duration} minut",
- "ca": "Un viatge dura {duration} minuts"
+ "ca": "Un viatge dura {duration} minuts",
+ "nl": "Een enkele reis duurt {duration} minuten"
}
},
{
@@ -256,7 +266,8 @@
"de": "{aerialway:occupancy} Leute passen in eine Kabine",
"pl": "{aerialway:occupancy} osób mieści się w jednym wagonie",
"cs": "{aerialway:occupancy} osob se vejde do jednoho vozu",
- "es": "En una sola cabina caben {aerialway:occupancy} personas"
+ "es": "En una sola cabina caben {aerialway:occupancy} personas",
+ "nl": "Er kunnen {aerialway:occupancy} mensen in een cabine"
}
},
"opening_hours",
@@ -266,7 +277,8 @@
"en": "In what direction can this aerialway be taken?",
"de": "In welche Richtung kann diese Seilbahn genutzt werden?",
"cs": "Jakým směrem tato dráha může vést?",
- "es": "¿En qué dirección se puede tomar este teleférico?"
+ "es": "¿En qué dirección se puede tomar este teleférico?",
+ "nl": "In welke richting kan deze kabelbaan genomen worden?"
},
"mappings": [
{
@@ -276,7 +288,8 @@
"en": "This aerialway can only be taken to the top",
"de": "Diese Seilbahn kann nur nach oben gefahren werden",
"cs": "Touto lanovkou lze vyjet pouze na vrchol",
- "es": "Este teleférico solo se puede tomar hacia arriba"
+ "es": "Este teleférico solo se puede tomar hacia arriba",
+ "nl": "Deze kabelbaan kan alleen naar de top worden genomen"
}
},
{
@@ -285,7 +298,8 @@
"en": "This aerialway can be taken in both directions",
"de": "Diese Seilbahn kann in beide Richtungen befahren werden",
"cs": "Tuto dráhu lze využít v obou směrech",
- "es": "Este teleférico se puede tomar en ambas direcciones"
+ "es": "Este teleférico se puede tomar en ambas direcciones",
+ "nl": "Deze kabelbaan kan in beide richtingen genomen worden"
}
}
]
@@ -297,7 +311,8 @@
"de": "Die Seilbahn hat eine Länge von {_length:km} km",
"fr": "Cette voie aérienne fait {_length:km} kilomètre de long",
"cs": "Tato dráha je dlouhá {_length:km} kilometr",
- "es": "Este teleférico tiene {_length:km} kilómetros de longitud"
+ "es": "Este teleférico tiene {_length:km} kilómetros de longitud",
+ "nl": "Deze kabelbaan is {_length:km} kilometer lang"
}
}
],
diff --git a/assets/layers/animal_shelter/animal_shelter.json b/assets/layers/animal_shelter/animal_shelter.json
index e17f6e92fc..2821e8481d 100644
--- a/assets/layers/animal_shelter/animal_shelter.json
+++ b/assets/layers/animal_shelter/animal_shelter.json
@@ -32,7 +32,8 @@
"ca": "Refugi d'animals",
"pl": "Schronisko dla zwierząt",
"fr": "Un refuge animalier",
- "cs": "Útulek pro zvířata"
+ "cs": "Útulek pro zvířata",
+ "nl": "Dierenasiel"
},
"mappings": [
{
@@ -44,7 +45,8 @@
"zh_Hans": "{name}",
"ca": "{name}",
"pl": "{name}",
- "cs": "{name}"
+ "cs": "{name}",
+ "nl": "{name}"
}
}
]
@@ -131,7 +133,8 @@
"zh_Hans": "动物收容所的目的是什么?",
"ca": "Quina és la finalitat del refugi d'animals?",
"pl": "Jaki jest cel tego schroniska dla zwierząt?",
- "cs": "Jaký je účel útulku pro zvířata?"
+ "cs": "Jaký je účel útulku pro zvířata?",
+ "nl": "Wat is het doel van dit dierenasiel?"
},
"mappings": [
{
@@ -143,7 +146,8 @@
"ca": "Els animals romanen ací fins que son adoptats per un nou propietari",
"pl": "Zwierzęta są tutaj dopóki nie znajdą nowego właściciela",
"fr": "Les animaux sont gardés jusqu'à ce qu'ils soient adoptés par un nouveau maître",
- "cs": "Zvířata jsou zde držena do doby, než si je osvojí nový majitel"
+ "cs": "Zvířata jsou zde držena do doby, než si je osvojí nový majitel",
+ "nl": "Dieren worden hier gehouden totdat ze geadopteerd worden"
},
"if": "purpose=adoption"
},
@@ -155,7 +159,8 @@
"zh_Hans": "动物的余生都得到照顾",
"ca": "Els animals reben cures per a la resta de la seva vida",
"fr": "Les animaux sont recueillis pour le reste de leur vie",
- "cs": "Zvířata jsou v péči po zbytek života"
+ "cs": "Zvířata jsou v péči po zbytek života",
+ "nl": "Dieren worden hier verzorgd voor de rest van hun leven"
},
"if": "purpose=sanctuary"
},
@@ -168,7 +173,8 @@
"ca": "Els animals ferits es rehabiliten aquí fins que puguen ser alliberats de nou a la natura ",
"pl": "Ranne zwierzęta przechodzą tutaj rehabilitację do momentu, kiedy mogą zostać wypuszczone na wolność ",
"fr": "Les animaux blessés sont soignés jusqu'à ce qu'ils soient en état d'être relâchés dans la nature ",
- "cs": "Zraněná zvířata jsou zde rehabilitována do doby, než mohou být opět vypuštěna do přírody "
+ "cs": "Zraněná zvířata jsou zde rehabilitována do doby, než mohou být opět vypuštěna do přírody ",
+ "nl": "Gewonde dieren worden hier gerevalideerd totdat ze terug in het wild vrijgelaten worden "
},
"if": "purpose=release"
}
@@ -183,7 +189,8 @@
"pl": "Jakie zwierzęta są tutaj przyjmowane?",
"ca": "Quins animals s'accepten aquí?",
"cs": "Která zvířata jsou zde přijímána?",
- "es": "¿Qué animales son aceptados aquí?"
+ "es": "¿Qué animales son aceptados aquí?",
+ "nl": "Welke dieren worden hier opgevangen?"
},
"id": "boarded_animals",
"mappings": [
@@ -194,7 +201,8 @@
"de": "Hunde werden hier gehalten",
"pl": "Są tutaj trzymane psy",
"cs": "Chovají se zde psi",
- "es": "Aquí se mantienen perros"
+ "es": "Aquí se mantienen perros",
+ "nl": "Honden worden hier opgevangen"
}
},
{
@@ -204,7 +212,8 @@
"de": "Katzen werden hier gehalten",
"pl": "Są tutaj trzymane koty",
"cs": "Chovají se zde kočky",
- "es": "Aquí se mantienen gatos"
+ "es": "Aquí se mantienen gatos",
+ "nl": "Katten worden hier opgevangen"
}
},
{
@@ -214,7 +223,8 @@
"de": "Pferde werden hier gehalten",
"pl": "Są tutaj trzymane konie",
"cs": "Chovají se zde koně",
- "es": "Aquí se mantienen caballos"
+ "es": "Aquí se mantienen caballos",
+ "nl": "Paarden worden hier opgevangen"
}
},
{
@@ -224,7 +234,8 @@
"de": "Vögel werden hier gehalten",
"pl": "Są tutaj trzymane ptaki",
"cs": "Chovají se zde ptáci",
- "es": "Aquí se mantienen aves"
+ "es": "Aquí se mantienen aves",
+ "nl": "Vogels worden hier opgevangen"
}
},
{
@@ -234,7 +245,8 @@
"de": "Wildtiere werden hier gehalten",
"pl": "Są tutaj trzymane dzikie zwierzęta",
"cs": "Chovají se zde divoká zvířata",
- "es": "Aquí se mantienen animales salvajes"
+ "es": "Aquí se mantienen animales salvajes",
+ "nl": "Wilde dieren worden hier opgevangen"
}
}
],
@@ -242,7 +254,8 @@
"en": "{animal_shelter} is kept here",
"de": "{animal_shelter} wird hier gehalten",
"cs": "{animal_shelter} je uložen zde",
- "es": "{animal_shelter} se mantiene aquí"
+ "es": "{animal_shelter} se mantiene aquí",
+ "nl": "{animal_shelter} worden hier opgevangen"
},
"freeform": {
"key": "animal_shelter"
diff --git a/assets/layers/artwork/artwork.json b/assets/layers/artwork/artwork.json
index 32f04bd458..2747970621 100644
--- a/assets/layers/artwork/artwork.json
+++ b/assets/layers/artwork/artwork.json
@@ -706,7 +706,8 @@
"cs": "Existuje webová stránka s dalšími informacemi o tomto uměleckém díle?",
"ca": "Hi ha un lloc web amb més informació sobre aquesta obra d'art?",
"he": "האם יש אתר אינטרנט עם מידע נוסף על היצירה הזו?",
- "pt_BR": "Há um website com mais informações sobre essa arte?"
+ "pt_BR": "Há um website com mais informações sobre essa arte?",
+ "uk": "Чи є веб-сайт із додатковою інформацією про цей твір мистецтва?"
},
"render": {
"special": {
@@ -730,7 +731,8 @@
"da": "Yderligere oplysninger på dette websted",
"cs": "Více informací na této webové stránce",
"ca": "Més informació a aquesta pàgina web",
- "pt_BR": "Mais informações nesse website"
+ "pt_BR": "Mais informações nesse website",
+ "uk": "Більше інформації на цьому сайті"
}
}
},
@@ -824,7 +826,8 @@
"fr": "Cette œuvre est un mémorial",
"cs": "Toto dílo slouží také jako památník",
"es": "Esta obra de arte también sirve como monumento",
- "uk": "Цей витвір мистецтва також слугує меморіалом"
+ "uk": "Цей витвір мистецтва також слугує меморіалом",
+ "nl": "Dit kunstwerk doet ook dienst als herdenkingsmonument"
}
},
{
diff --git a/assets/layers/assisted_repair/assisted_repair.json b/assets/layers/assisted_repair/assisted_repair.json
index 4638d1d861..d3e159b8e2 100644
--- a/assets/layers/assisted_repair/assisted_repair.json
+++ b/assets/layers/assisted_repair/assisted_repair.json
@@ -135,7 +135,8 @@
"en": "Mobile phones are repaired here",
"de": "Mobiltelefone werden hier repariert",
"cs": "Zde se opravují mobilní telefony",
- "es": "Aquí se reparan teléfonos móviles"
+ "es": "Aquí se reparan teléfonos móviles",
+ "uk": "Тут ремонтують мобільні телефони"
},
"ifnot": "service:mobile_phone:repair=no"
},
diff --git a/assets/layers/atm/atm.json b/assets/layers/atm/atm.json
index d230f078a5..08ae9c6d06 100644
--- a/assets/layers/atm/atm.json
+++ b/assets/layers/atm/atm.json
@@ -550,7 +550,8 @@
"he": "לכספומט זה יש פלט דיבור, זמין בדרך כלל דרך שקע אוזניות",
"pt_BR": "Este caixa eletrônico possui saída de fala, geralmente disponível por meio de um plug de fone de ouvido",
"es": "Este cajero automático tiene salida de voz, generalmente disponible a través de una toma de auriculares",
- "pt": "Este multibanco tem saída de fala, geralmente disponível por meio de um plug de auscultadores"
+ "pt": "Este multibanco tem saída de fala, geralmente disponível por meio de um plug de auscultadores",
+ "uk": "Цей банкомат має мовний вихід, зазвичай доступний через роз'єм для навушників"
}
},
{
diff --git a/assets/layers/beehive/beehive.json b/assets/layers/beehive/beehive.json
new file mode 100644
index 0000000000..4bedb02a27
--- /dev/null
+++ b/assets/layers/beehive/beehive.json
@@ -0,0 +1,75 @@
+{
+ "id": "beehive",
+ "name": {
+ "en": "Beehives"
+ },
+ "description": {
+ "en": "Layer showing beehives"
+ },
+ "source": {
+ "osmTags": "man_made=beehive"
+ },
+ "minzoom": 11,
+ "title": {
+ "en": "Beehive"
+ },
+ "presets": [
+ {
+ "title": {
+ "en": "a beehive"
+ },
+ "tags": [
+ "man_made=beehive"
+ ]
+ }
+ ],
+ "tagRenderings": [
+ "images",
+ {
+ "id": "capacity",
+ "question": {
+ "en": "How many beehives are there?"
+ },
+ "freeform": {
+ "key": "capacity",
+ "type": "pnat",
+ "placeholder": {
+ "en": "Number of beehives"
+ }
+ },
+ "render": {
+ "en": "There are {capacity} beehives"
+ },
+ "mappings": [
+ {
+ "if": "capacity=1",
+ "then": {
+ "en": "There is 1 beehive"
+ }
+ }
+ ]
+ }
+ ],
+ "pointRendering": [
+ {
+ "location": [
+ "point",
+ "centroid"
+ ],
+ "marker": [
+ {
+ "icon": "circle",
+ "color": "white"
+ },
+ {
+ "icon": "./assets/layers/beehive/beehive.svg"
+ }
+ ]
+ }
+ ],
+ "allowMove": {
+ "enableImproveAccuracy": true,
+ "enableRelocation": true
+ },
+ "deletion": true
+}
\ No newline at end of file
diff --git a/assets/layers/beehive/beehive.svg b/assets/layers/beehive/beehive.svg
new file mode 100644
index 0000000000..df543ea1de
--- /dev/null
+++ b/assets/layers/beehive/beehive.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/assets/layers/beehive/beehive.svg.license b/assets/layers/beehive/beehive.svg.license
new file mode 100644
index 0000000000..c028557e37
--- /dev/null
+++ b/assets/layers/beehive/beehive.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: Delapouite
+SPDX-License-Identifier: CC BY 3.0
\ No newline at end of file
diff --git a/assets/layers/beehive/license_info.json b/assets/layers/beehive/license_info.json
new file mode 100644
index 0000000000..83c3b974a2
--- /dev/null
+++ b/assets/layers/beehive/license_info.json
@@ -0,0 +1,12 @@
+[
+ {
+ "path": "beehive.svg",
+ "license": "CC BY 3.0",
+ "authors": [
+ "Delapouite"
+ ],
+ "sources": [
+ "https://game-icons.net/1x1/delapouite/beehive.html"
+ ]
+ }
+]
\ No newline at end of file
diff --git a/assets/layers/bench/bench.json b/assets/layers/bench/bench.json
index 116c353439..2cf1b8c21f 100644
--- a/assets/layers/bench/bench.json
+++ b/assets/layers/bench/bench.json
@@ -22,7 +22,8 @@
"cs": "Lavičky",
"pa_PK": "بینچ",
"he": "ספסלים",
- "eu": "Bankuak"
+ "eu": "Bankuak",
+ "uk": "Лавки"
},
"description": {
"nl": "Een zitbank is een houten, metalen, stenen, … oppervlak waar een mens kan zitten. Deze laag toont ze en stelt er enkele vragen over.",
@@ -1196,7 +1197,8 @@
"he": "הוא אנדרטה",
"pt_BR": "é um memorial",
"es": "es un monumento",
- "pt": "é um memorial"
+ "pt": "é um memorial",
+ "uk": "це меморіал"
}
}
]
diff --git a/assets/layers/bench_at_pt/bench_at_pt.json b/assets/layers/bench_at_pt/bench_at_pt.json
index e0446271e1..827db3f230 100644
--- a/assets/layers/bench_at_pt/bench_at_pt.json
+++ b/assets/layers/bench_at_pt/bench_at_pt.json
@@ -17,7 +17,8 @@
"pt": "Bancos em pontos de transporte público",
"da": "Bænke ved stoppesteder for offentlig transport",
"cs": "Lavičky na zastávkách veřejné dopravy",
- "ca": "Bancs en una parada de transport públic"
+ "ca": "Bancs en una parada de transport públic",
+ "uk": "Лавки на зупинках громадського транспорту"
},
"description": {
"en": "A layer showing all public-transport-stops which do have a bench",
@@ -193,7 +194,8 @@
"cs": "Co je to za lavičku?",
"pt": "Que tipo de banco é este?",
"ca": "Quin tipus de banc és aquest?",
- "pt_BR": "Qual tipo de banco é esse?"
+ "pt_BR": "Qual tipo de banco é esse?",
+ "uk": "Що це за лавка?"
},
"mappings": [
{
@@ -208,7 +210,8 @@
"cs": "Zde je normální lavička k sezení",
"ca": "Aquí hi ha un banc normal",
"pt_BR": "Há um banco comum, para sentar, aqui",
- "pt": "Há um banco comum, para sentar, aqui"
+ "pt": "Há um banco comum, para sentar, aqui",
+ "uk": "Тут є звичайна лавка для сидіння"
}
},
{
@@ -242,7 +245,8 @@
"cs": "Zde není žádná lavička",
"pt": "Não há nenhum banco aqui",
"ca": "Aquí no hi ha cap banc",
- "pt_BR": "Não há banco aqui"
+ "pt_BR": "Não há banco aqui",
+ "uk": "Тут немає лавки"
}
}
]
diff --git a/assets/layers/bicycle_counter/bicycle_counter.json b/assets/layers/bicycle_counter/bicycle_counter.json
index d4a42a443a..1c14665dd6 100644
--- a/assets/layers/bicycle_counter/bicycle_counter.json
+++ b/assets/layers/bicycle_counter/bicycle_counter.json
@@ -193,7 +193,8 @@
"en": "Is there a website for this bicycle counter?",
"de": "Gibt es eine Website für die Fahrradzählstelle?",
"cs": "Existuje webová stránka tohoto počítadla jízdních kol?",
- "es": "¿Hay un sitio web para este contador de bicicletas?"
+ "es": "¿Hay un sitio web para este contador de bicicletas?",
+ "uk": "Є веб-сайт для цього велосипедного прилавка?"
},
"freeform": {
"key": "website",
@@ -202,7 +203,8 @@
"en": "Website of the counter",
"de": "Website der Zählstelle",
"cs": "Webové stránky počítadla",
- "es": "Sitio web del contador"
+ "es": "Sitio web del contador",
+ "uk": "Сайт лічильника"
}
},
"render": {
diff --git a/assets/layers/bike_cleaning/bike_cleaning.json b/assets/layers/bike_cleaning/bike_cleaning.json
index 78956543b4..c564c6f719 100644
--- a/assets/layers/bike_cleaning/bike_cleaning.json
+++ b/assets/layers/bike_cleaning/bike_cleaning.json
@@ -284,7 +284,10 @@
{
"question": {
"en": "Is this bicycle cleaning service automated?",
- "nl": "Is dit fietsschoonmaakpunt geautomatiseerd?"
+ "nl": "Is dit fietsschoonmaakpunt geautomatiseerd?",
+ "de": "Ist dieser Fahrradreinigungsdienst automatisiert?",
+ "cs": "Je tato služba čištění kol bez obsluhy?",
+ "es": "¿Está este servicio de limpieza de bicicletas automatizado?"
},
"id": "automated",
"mappings": [
@@ -292,14 +295,20 @@
"if": "automated=no",
"then": {
"en": "This is a manual bike washing station",
- "nl": "Dit is een handmatig fietsschoonmaakpunt"
+ "nl": "Dit is een handmatig fietsschoonmaakpunt",
+ "de": "Dies ist eine manuelle Fahrradwaschanlage",
+ "cs": "Jedná se o ruční mycí stanici kol",
+ "es": "Esta es una estación manual de lavado de bicicletas"
}
},
{
"if": "automated=yes",
"then": {
"en": "This is an automated bike wash",
- "nl": "Dit is een automatisch fietsschoonmaakpunt"
+ "nl": "Dit is een automatisch fietsschoonmaakpunt",
+ "de": "Dies ist eine automatische Fahrradwaschanlage",
+ "cs": "Jedná se o mytí kol bez obsluhy",
+ "es": "Esta es una estación automática de lavado de bicicletas"
}
}
],
@@ -308,7 +317,10 @@
{
"question": {
"nl": "Is dit fietsschoonmaakpunt zelfbediening?",
- "en": "Is this cleaning service self-service?"
+ "en": "Is this cleaning service self-service?",
+ "de": "Muss die Reinigung selbständig erfolgen?",
+ "cs": "Je tato mycí služba samoobslužná?",
+ "es": "¿Es este servicio de limpieza de autoservicio?"
},
"id": "self_service",
"mappings": [
@@ -316,14 +328,20 @@
"if": "self_service=yes",
"then": {
"nl": "Dit fietsschoonmaakpunt is zelfbediening",
- "en": "This cleaning service is self-service"
+ "en": "This cleaning service is self-service",
+ "de": "Die Reinigung erfolgt selbständig",
+ "cs": "Tato mycí služba je samoobslužná",
+ "es": "Este servicio de limpieza es de autoservicio"
}
},
{
"if": "self_service=no",
"then": {
"nl": "Dit fietsschoonmaakpunt wordt bediend door aanwezig personeel",
- "en": "This cleaning service is operated by an employee"
+ "en": "This cleaning service is operated by an employee",
+ "de": "Dieser Reinigungsdienst wird von einem Angestellten betrieben",
+ "cs": "Tuto mycí službu provozuje zaměstnanec",
+ "es": "Este servicio de limpieza está operado por un empleado"
}
}
],
diff --git a/assets/layers/bike_parking/bike_parking.json b/assets/layers/bike_parking/bike_parking.json
index 9e3031f165..2337fbca13 100644
--- a/assets/layers/bike_parking/bike_parking.json
+++ b/assets/layers/bike_parking/bike_parking.json
@@ -823,7 +823,8 @@
"de": "Man könnte diese Nummer anrufen, wenn es Probleme gibt, z. B. um nicht gewartete Fahrräder zu entfernen",
"ca": "És possible que es pugui trucar a aquest número en cas de problemes, p. per retirar les bicicletes abandonades",
"cs": "Na toto číslo je možné volat v případě problémů, např. při odstraňování neudržovaných jízdních kol",
- "es": "Se puede llamar a este número en caso de problemas, por ejemplo, para retirar bicicletas sin mantenimiento"
+ "es": "Se puede llamar a este número en caso de problemas, por ejemplo, para retirar bicicletas sin mantenimiento",
+ "uk": "За цим номером можна буде зателефонувати у разі виникнення проблем, наприклад, щоб прибрати недоглянуті велосипеди"
},
"icon": "./assets/layers/questions/phone.svg",
"freeform": {
diff --git a/assets/layers/birdhide/birdhide.json b/assets/layers/birdhide/birdhide.json
index 5b03da9dce..42dd017094 100644
--- a/assets/layers/birdhide/birdhide.json
+++ b/assets/layers/birdhide/birdhide.json
@@ -164,7 +164,8 @@
"fr": "un camouflage d’observation ornithologique",
"da": "et fugletårn",
"ca": "un observatori d'ocells",
- "es": "un escondrijo para pájaros"
+ "es": "un escondrijo para pájaros",
+ "cs": "ptačí pozorovatelna"
},
"description": {
"en": "A screen or wall with openings to watch birds",
diff --git a/assets/layers/cafe_pub/cafe_pub.json b/assets/layers/cafe_pub/cafe_pub.json
index df6bab66f7..1811e39828 100644
--- a/assets/layers/cafe_pub/cafe_pub.json
+++ b/assets/layers/cafe_pub/cafe_pub.json
@@ -401,6 +401,7 @@
"wheelchair-access",
"smoking",
"service:electricity",
+ "seating",
"dog-access",
"internet",
"internet-fee",
@@ -412,7 +413,9 @@
"accepts_cash",
"accepts_cards",
"has_internet",
- "has_electricity"
+ "has_electricity",
+ "outdoor_seating",
+ "indoor_seating"
],
"deletion": {
"softDeletionTags": {
@@ -439,4 +442,4 @@
]
},
"allowMove": true
-}
+}
\ No newline at end of file
diff --git a/assets/layers/caravansites/caravansites.json b/assets/layers/caravansites/caravansites.json
index 435f93f972..52f5ce88b6 100644
--- a/assets/layers/caravansites/caravansites.json
+++ b/assets/layers/caravansites/caravansites.json
@@ -762,7 +762,8 @@
"da": "Officiel hjemmeside: {website}",
"cs": "Oficiální webové stránky: {website}",
"pl": "Official website: {website}",
- "pt": "Site oficial: {website}"
+ "pt": "Site oficial: {website}",
+ "uk": "Офіційний веб-сайт: {website}"
},
"freeform": {
"type": "url",
@@ -786,7 +787,8 @@
"cs": "Má toto místo webové stránky?",
"eu": "Toki honek webgunerik ba al du?",
"pl": "Czy to miejsce ma stronę internetową?",
- "pt": "Este lugar tem um website?"
+ "pt": "Este lugar tem um website?",
+ "uk": "Це місце має веб-сайт?"
},
"id": "caravansites-website"
},
diff --git a/assets/layers/charging_station/charging_station.json b/assets/layers/charging_station/charging_station.json
index 7db256448f..fb09a0f9c2 100644
--- a/assets/layers/charging_station/charging_station.json
+++ b/assets/layers/charging_station/charging_station.json
@@ -74,9 +74,10 @@
"en": "A charging station",
"nl": "Oplaadpunten",
"ca": "Una estació de càrrega",
+ "cs": "Nabíjecí stanice",
"de": "Eine Ladestation",
- "fr": "Une station de recharge",
- "es": "Un punto de carga"
+ "es": "Un punto de carga",
+ "fr": "Une station de recharge"
},
"#": "no-question-hint-check",
"tagRenderings": [
@@ -89,8 +90,8 @@
"nl": "Welke voertuigen kunnen hier opgeladen worden?",
"ca": "Quins vehicles tenen permesa la càrrega aquí?",
"de": "Welche Fahrzeuge können hier laden?",
- "pl": "Jakie pojazdy mogą być tutaj ładowane?",
- "es": "¿Qué vehículos pueden cargar aquí?"
+ "es": "¿Qué vehículos pueden cargar aquí?",
+ "pl": "Jakie pojazdy mogą być tutaj ładowane?"
},
"multiAnswer": true,
"mappings": [
@@ -102,8 +103,8 @@
"nl": "Elektrische fietsen kunnen hier opgeladen worden",
"ca": "Aquí es poden carregar bicicletes",
"de": "Hier können Fahrräder laden",
- "pl": "Mogą tutaj być ładowane rowery",
- "es": "Aquí se pueden cargar bicicletas"
+ "es": "Aquí se pueden cargar bicicletas",
+ "pl": "Mogą tutaj być ładowane rowery"
}
},
{
@@ -114,8 +115,8 @@
"nl": "Elektrische auto's kunnen hier opgeladen worden",
"ca": "Aquí es poden carregar cotxes",
"de": "Hier können Autos laden",
- "pl": "Mogą tutaj być ładowane samochody",
- "es": "Aquí se pueden cargar coches"
+ "es": "Aquí se pueden cargar coches",
+ "pl": "Mogą tutaj być ładowane samochody"
}
},
{
@@ -126,8 +127,8 @@
"nl": "Elektrische scooters (snorfiets of bromfiets) kunnen hier opgeladen worden",
"ca": "Aquí es poden carregar Scooters",
"de": "Hier können Roller laden",
- "pl": "Mogą być tutaj ładowane hulajnogi",
- "es": "Aquí se pueden cargar patinetes"
+ "es": "Aquí se pueden cargar patinetes",
+ "pl": "Mogą być tutaj ładowane hulajnogi"
}
},
{
@@ -149,8 +150,8 @@
"nl": "Bussen kunnen hier opgeladen worden",
"ca": "Aquí es poden carregar autobusos",
"de": "Hier können Busse laden",
- "pl": "Mogą być tutaj ładowane autobusy",
- "es": "Aquí se pueden cargar autobuses"
+ "es": "Aquí se pueden cargar autobuses",
+ "pl": "Mogą być tutaj ładowane autobusy"
}
}
]
@@ -162,8 +163,8 @@
"nl": "Wie mag er dit oplaadpunt gebruiken?",
"ca": "Qui pot utilitzar aquesta estació de càrrega?",
"de": "Wer darf diese Ladestation benutzen?",
- "pl": "Kto może używać tej stacji ładowania?",
- "es": "¿Quién puede usar este punto de carga?"
+ "es": "¿Quién puede usar este punto de carga?",
+ "pl": "Kto może używać tej stacji ładowania?"
},
"render": {
"en": "Access is {access}",
@@ -187,8 +188,8 @@
"nl": "Toegankelijk voor iedereen (mogelijks met aanmelden en/of te betalen)",
"ca": "Qualsevol persona pot utilitzar aquesta estació de recàrrega (pot ser calgui un pagament)",
"de": "Jeder kann die Station nutzen (eventuell gegen Bezahlung)",
- "pl": "Każdy może używać tej stacji ładowania (opłata może być wymagana)",
- "es": "Cualquiera puede usar este punto de carga (puede ser necesario el pago)"
+ "es": "Cualquiera puede usar este punto de carga (puede ser necesario el pago)",
+ "pl": "Każdy może używać tej stacji ładowania (opłata może być wymagana)"
}
},
{
@@ -198,8 +199,8 @@
"nl": "Toegankelijk voor iedereen (mogelijks met aanmelden en/of te betalen)",
"ca": "Qualsevol persona pot utilitzar aquesta estació de recàrrega (pot ser calgui un pagament)",
"de": "Jeder kann diese Ladestation nutzen (eventuell gegen Bezahlung)",
- "pl": "Każdy może używać tej stacji ładowania (opłata może być wymagana)",
- "es": "Cualquiera puede usar este punto de carga (puede ser necesario el pago)"
+ "es": "Cualquiera puede usar este punto de carga (puede ser necesario el pago)",
+ "pl": "Każdy może używać tej stacji ładowania (opłata może być wymagana)"
},
"hideInAnswer": true
},
@@ -252,16 +253,16 @@
"nl": "{capacity} voertuigen kunnen hier op hetzelfde moment opgeladen worden",
"ca": "Aquí poden carregar {capacity} vehicles a l'hora",
"de": "Hier können {capacity} Fahrzeuge gleichzeitig laden",
- "pl": "{capacity} pojazdów może być tutaj ładowanych jednocześnie",
- "es": "{capacity} vehículos se pueden cargar aquí al mismo tiempo"
+ "es": "{capacity} vehículos se pueden cargar aquí al mismo tiempo",
+ "pl": "{capacity} pojazdów może być tutaj ładowanych jednocześnie"
},
"question": {
"en": "How much vehicles can be charged here at the same time?",
"nl": "Hoeveel voertuigen kunnen hier opgeladen worden?",
"ca": "Quants vehicles poden carregar a la vegada?",
"de": "Wie viele Fahrzeuge können hier gleichzeitig laden?",
- "pl": "Ile pojazdów może być tutaj ładowanych jednocześnie?",
- "es": "¿Cuántos vehículos se pueden cargar aquí al mismo tiempo?"
+ "es": "¿Cuántos vehículos se pueden cargar aquí al mismo tiempo?",
+ "pl": "Ile pojazdów może być tutaj ładowanych jednocześnie?"
},
"freeform": {
"key": "capacity",
@@ -1153,7 +1154,8 @@
"en": "USB to charge phones and small electronics",
"nl": "USB om GSMs en kleine electronica op te laden",
"de": "USB zum Aufladen von Handys und kleinen Elektrogeräten",
- "es": "USB para cargar teléfonos y pequeños dispositivos electrónicos"
+ "es": "USB para cargar teléfonos y pequeños dispositivos electrónicos",
+ "uk": "USB для зарядки телефонів і дрібної електроніки"
},
"icon": {
"path": "./assets/layers/charging_station/usb_port.svg",
@@ -1171,7 +1173,8 @@
"en": "USB to charge phones and small electronics",
"nl": "USB om GSMs en kleine electronica op te laden",
"de": "USB zum Aufladen von Handys und kleinen Elektrogeräten",
- "es": "USB para cargar teléfonos y pequeños dispositivos electrónicos"
+ "es": "USB para cargar teléfonos y pequeños dispositivos electrónicos",
+ "uk": "USB для зарядки телефонів і дрібної електроніки"
},
"hideInAnswer": true,
"icon": {
@@ -1787,6 +1790,7 @@
{
"en": "Tesla Supercharger",
"nl": "Tesla Supercharger",
+ "cs": "Tesla Supercharger",
"de": "Tesla Supercharger",
"es": "Tesla Supercharger"
},
@@ -1947,7 +1951,8 @@
"en": "USB to charge phones and small electronics",
"nl": "USB om GSMs en kleine electronica op te laden",
"de": "USB zum Aufladen von Handys und kleinen Elektrogeräten",
- "es": "USB para cargar teléfonos y pequeños dispositivos electrónicos"
+ "es": "USB para cargar teléfonos y pequeños dispositivos electrónicos",
+ "uk": "USB для зарядки телефонів і дрібної електроніки"
},
"usb_port.svg",
[
@@ -2252,8 +2257,8 @@
"nl": "Wanneer is dit oplaadpunt beschikbaar??",
"ca": "Quan està oberta aquesta estació de càrrega?",
"de": "Wann ist die Ladestation geöffnet?",
- "pl": "Kiedy jest otwarta ta stacja ładowania?",
- "es": "¿Cuándo está abierto este punto de carga?"
+ "es": "¿Cuándo está abierto este punto de carga?",
+ "pl": "Kiedy jest otwarta ta stacja ładowania?"
}
},
"id": "OH"
@@ -2313,8 +2318,8 @@
"en": "Free to use",
"ca": "Ús gratuït",
"de": "Kostenlose Nutzung",
- "pl": "Darmowa",
- "es": "De uso gratuito"
+ "es": "De uso gratuito",
+ "pl": "Darmowa"
},
"hideInAnswer": true
},
@@ -2403,8 +2408,8 @@
"nl": "Aanmelden met een lidkaart is mogelijk",
"ca": "Autenticació mitjançant una targeta de soci",
"de": "Authentifizierung durch eine Mitgliedskarte",
- "fr": "Authentification par carte de membre",
- "es": "Autenticación mediante tarjeta de socio"
+ "es": "Autenticación mediante tarjeta de socio",
+ "fr": "Authentification par carte de membre"
}
},
{
@@ -2415,8 +2420,8 @@
"nl": "Aanmelden via een applicatie is mogelijk",
"ca": "Autenticació mitjançant una aplicació",
"de": "Authentifizierung per App",
- "fr": "Authentification par une application",
- "es": "Autenticación mediante una aplicación"
+ "es": "Autenticación mediante una aplicación",
+ "fr": "Authentification par une application"
}
},
{
@@ -2426,8 +2431,9 @@
"en": "Authentication via phone call is available",
"nl": "Aanmelden door te bellen naar een telefoonnummer is mogelijk",
"de": "Authentifizierung per Anruf ist möglich",
+ "es": "Hay disponible autenticación por llamada telefónica",
"fr": "Authentification possible par appel téléphonique",
- "es": "Hay disponible autenticación por llamada telefónica"
+ "uk": "Доступна автентифікація за допомогою телефонного дзвінка"
}
},
{
@@ -2437,8 +2443,8 @@
"en": "Authentication via SMS is available",
"nl": "Aanmelden via SMS is mogelijk",
"de": "Authentifizierung per SMS ist möglich",
- "fr": "Authentification possible par SMS",
- "es": "Hay disponible autenticación por SMS"
+ "es": "Hay disponible autenticación por SMS",
+ "fr": "Authentification possible par SMS"
}
},
{
@@ -2500,14 +2506,16 @@
"nl": "Aanmelden door te bellen of te SMS'en naar {authentication:phone_call:number}",
"ca": "Autentiqueu-vos trucant o enviant SMS a {authentication:phone_call:number}",
"de": "Authentifiziere dich, indem du anrufst oder eine SMS sendest an {authentication:phone_call:number}",
- "es": "Autentifícate llamando o enviando un SMS a {authentication:phone_call:number}"
+ "es": "Autentifícate llamando o enviando un SMS a {authentication:phone_call:number}",
+ "uk": "Авторизуйтесь, зателефонувавши або надіславши SMS на {authentication:phone_call:number}"
},
"question": {
"en": "What's the phone number for authentication call or SMS?",
"nl": "Wat is het telefoonnummer dat men moet bellen of SMS'en om zich aan te melden?",
"ca": "Quin és el número de telèfon per a la trucada d'autenticació o SMS?",
"de": "Wie lautet die Telefonnummer für den Authentifizierungsanruf oder die SMS?",
- "es": "¿Cuál es el número de teléfono para la llamada o SMS de autenticación?"
+ "es": "¿Cuál es el número de teléfono para la llamada o SMS de autenticación?",
+ "uk": "Який номер телефону для аутентифікаційного дзвінка або SMS?"
},
"freeform": {
"key": "authentication:phone_call:number",
@@ -2522,43 +2530,15 @@
},
{
"id": "maxstay",
- "question": {
- "en": "What is the maximum amount of time one is allowed to stay here?",
- "nl": "Hoelang mag een voertuig hier blijven staan?",
- "ca": "Quina és la quantitat màxima de temps que es permet permaneixer aquí?",
- "de": "Wie lange darf man hier maximal parken?",
- "es": "¿Cuál es el tiempo máximo que se permite permanecer aquí?"
- },
- "freeform": {
- "key": "maxstay",
- "type": "pfloat"
- },
- "render": {
- "en": "One can stay at most {canonical(maxstay)}",
- "nl": "De maximale parkeertijd hier is {canonical(maxstay)}",
- "ca": "Un pot quedar-se com a màxim {canonical(maxstay)}",
- "de": "Die maximale Parkdauer beträgt {canonical(maxstay)}",
- "es": "Se puede permanecer como máximo {canonical(maxstay)}"
- },
- "mappings": [
- {
- "if": "maxstay=unlimited",
- "then": {
- "en": "No timelimit on leaving your vehicle here",
- "nl": "Geen maximum parkeertijd",
- "ca": "No hi ha límit de temps per a deixar el teu vehicle aquí",
- "de": "Keine Höchstparkdauer",
- "es": "Sin límite de tiempo para dejar tu vehículo aquí"
- }
+ "builtin": "maxstay",
+ "override": {
+ "condition": {
+ "or": [
+ "motorcar=yes",
+ "hgv=yes",
+ "bus=yes"
+ ]
}
- ],
- "condition": {
- "or": [
- "maxstay~*",
- "motorcar=yes",
- "hgv=yes",
- "bus=yes"
- ]
}
},
{
@@ -2568,18 +2548,19 @@
"nl": "Maakt deel uit van het {network}-netwerk",
"ca": "Part de la xarxa {network}",
"de": "Teil des Netzwerks {network}",
+ "es": "Parte de la red {network}",
"pl": "Część sieci {network}",
- "uk": "Частина мережі {network}",
- "es": "Parte de la red {network}"
+ "uk": "Частина мережі {network}"
},
"question": {
"en": "Is this charging station part of a network?",
"nl": "Is dit oplaadpunt deel van een groter netwerk?",
"ca": "Aquesta estació de càrrega forma part d'una xarxa?",
+ "cs": "Je tato nabíjecí stanice součástí sítě?",
"de": "Ist diese Ladestation Teil eines Netzwerks?",
+ "es": "¿Este punto de carga forma parte de una red?",
"pl": "Czy ta stacja ładowania jest częścią sieci?",
- "uk": "Чи є ця зарядна станція частиною мережі?",
- "es": "¿Este punto de carga forma parte de una red?"
+ "uk": "Чи є ця зарядна станція частиною мережі?"
},
"freeform": {
"key": "network"
@@ -2591,8 +2572,8 @@
"en": "Not part of a bigger network, e.g. because the charging station is maintained by a local business",
"nl": "Maakt geen deel uit van een groter netwerk, een lokale zaak of organisatie beheert dit oplaadpunt",
"de": "Nicht Teil eines größeren Netzwerks, z. B. weil die Ladestation von einem lokalen Unternehmen betrieben wird",
- "uk": "Не є частиною більшої мережі, наприклад, тому що зарядна станція обслуговується місцевим підприємством",
- "es": "No forma parte de una red mayor, por ejemplo, porque el punto de carga es mantenido por un negocio local"
+ "es": "No forma parte de una red mayor, por ejemplo, porque el punto de carga es mantenido por un negocio local",
+ "uk": "Не є частиною більшої мережі, наприклад, тому що зарядна станція обслуговується місцевим підприємством"
}
},
{
@@ -2600,10 +2581,11 @@
"then": {
"en": "Not part of a bigger network",
"nl": "Maakt geen deel uit van een groter netwerk",
+ "cs": "Není součástí větší sítě",
"de": "Nicht Teil eines größeren Netzwerks",
+ "es": "No forma parte de una red mayor",
"pl": "Nie jest częścią większej sieci",
- "uk": "Не є частиною великої мережі",
- "es": "No forma parte de una red mayor"
+ "uk": "Не є частиною великої мережі"
},
"hideInAnswer": true
},
@@ -2659,8 +2641,8 @@
"nl": "Wordt beheerd door {operator}",
"ca": "Aquesta estació de càrrega l'opera {operator}",
"de": "Die Station wird betrieben von {operator}",
- "pl": "Ta stacja ładowania jest obsługiwana przez {operator}",
- "es": "Este punto de carga es operado por {operator}"
+ "es": "Este punto de carga es operado por {operator}",
+ "pl": "Ta stacja ładowania jest obsługiwana przez {operator}"
},
"freeform": {
"key": "operator"
@@ -2694,16 +2676,18 @@
"nl": "Wat is het telefoonnummer van de beheerder van dit oplaadpunt?",
"ca": "A quin número es pot cridar si hi ha algun problema amb aquest punt de càrrega?",
"de": "Welche Nummer kann man anrufen, wenn es ein Problem mit dieser Ladestation gibt?",
+ "es": "¿A qué número se puede llamar si hay un problema con este punto de carga?",
"pl": "Na jaki numer można zadzwonić w przypadku problemów z tą stacją ładowania?",
- "es": "¿A qué número se puede llamar si hay un problema con este punto de carga?"
+ "uk": "За яким номером можна зателефонувати, якщо виникла проблема з цією зарядною станцією?"
},
"render": {
"en": "In case of problems, call {phone}",
"nl": "Bij problemen, bel naar {phone}",
"ca": "En cas de problemes, truqueu a {phone}",
"de": "Bei Problemen, anrufen unter {phone}",
+ "es": "En caso de problemas, llama a {phone}",
"pl": "W przypadku problemów zadzwoń na {phone}",
- "es": "En caso de problemas, llama a {phone}"
+ "uk": "У разі виникнення проблем телефонуйте {phone}"
},
"freeform": {
"key": "phone",
@@ -2725,8 +2709,8 @@
"nl": "Bij problemen, email naar {email}",
"ca": "En cas de problemes, envia un email a {email}",
"de": "Bei Problemen senden Sie bitte eine E-Mail an {email}",
- "pl": "W przypadku problemów, wyślij emaila do {email}",
- "es": "En caso de problemas, envía un correo electrónico a {email}"
+ "es": "En caso de problemas, envía un correo electrónico a {email}",
+ "pl": "W przypadku problemów, wyślij emaila do {email}"
},
"freeform": {
"key": "email",
@@ -2739,13 +2723,15 @@
"en": "What is the website where one can find more information about this charging station?",
"nl": "Wat is de website waar men meer info kan vinden over dit oplaadpunt?",
"de": "Auf welcher Webseite kann man weitere Informationen über diese Ladestation finden?",
- "es": "¿Cuál es la página web donde se puede encontrar más información sobre este punto de carga?"
+ "es": "¿Cuál es la página web donde se puede encontrar más información sobre este punto de carga?",
+ "uk": "На якому веб-сайті можна знайти більше інформації про цю зарядну станцію?"
},
"render": {
"en": "More info on {website}",
"nl": "Meer informatie op {website}",
"de": "Weitere Informationen unter {website}",
- "es": "Más información en {website}"
+ "es": "Más información en {website}",
+ "uk": "Більше інформації на {website}"
},
"freeform": {
"key": "website",
@@ -2759,15 +2745,15 @@
"en": "What is the reference number of this charging station?",
"nl": "Wat is het referentienummer van dit oplaadstation?",
"de": "Welche Kennnummer hat die Ladestation?",
- "pl": "Jaki jest numer referencyjny tej stacji ładowania?",
- "es": "¿Cuál es el número de referencia de este punto de carga?"
+ "es": "¿Cuál es el número de referencia de este punto de carga?",
+ "pl": "Jaki jest numer referencyjny tej stacji ładowania?"
},
"render": {
"en": "Reference number is {ref}",
"nl": "Het referentienummer van dit oplaadpunt is {ref}",
"de": "Die Kennziffer ist {ref}",
- "pl": "Numer referencyjny to {ref}",
- "es": "El número de referencia es {ref}"
+ "es": "El número de referencia es {ref}",
+ "pl": "Numer referencyjny to {ref}"
},
"freeform": {
"key": "ref"
@@ -2800,9 +2786,9 @@
"nl": "Dit oplaadpunt werkt",
"ca": "Aquesta estació de càrrega funciona",
"de": "Die Station ist in Betrieb",
+ "es": "Este punto de carga funciona",
"fr": "Cette station de recharge fonctionne",
- "pl": "Ta stacja ładowania działa",
- "es": "Este punto de carga funciona"
+ "pl": "Ta stacja ładowania działa"
}
},
{
@@ -2820,8 +2806,8 @@
"nl": "Dit oplaadpunt is kapot",
"ca": "Aquesta estació de carrega està trencada",
"de": "Die Station ist defekt",
- "pl": "Ta stacja ładowania jest zepsuta",
- "es": "Este punto de carga está roto"
+ "es": "Este punto de carga está roto",
+ "pl": "Ta stacja ładowania jest zepsuta"
}
},
{
@@ -2839,8 +2825,8 @@
"nl": "Hier zal binnenkort een oplaadpunt gebouwd worden",
"ca": "Aquí està prevista una estació de recàrrega",
"de": "Die Station ist erst in Planung",
- "pl": "Planowana jest tutaj stacja ładowania",
- "es": "Aquí se planea un punto de carga"
+ "es": "Aquí se planea un punto de carga",
+ "pl": "Planowana jest tutaj stacja ładowania"
}
},
{
@@ -2857,8 +2843,8 @@
"en": "A charging station is constructed here",
"nl": "Hier wordt op dit moment een oplaadpunt gebouwd",
"de": "Die Station ist aktuell im Bau",
- "pl": "Budowana jest tutaj stacja ładowania",
- "es": "Aquí se está construyendo un punto de carga"
+ "es": "Aquí se está construyendo un punto de carga",
+ "pl": "Budowana jest tutaj stacja ładowania"
}
},
{
@@ -3048,10 +3034,11 @@
"en": "All vehicle types",
"nl": "Alle voertuigen",
"ca": "Tots els tipus de vehicles",
+ "cs": "Všechny typy vozidel",
"de": "Ladestationen für alle Fahrzeugtypen",
+ "es": "Todos los tipos de vehículos",
"fr": "Tous les types de véhicules",
- "it": "Tutti i tipi di veicoli",
- "es": "Todos los tipos de vehículos"
+ "it": "Tutti i tipi di veicoli"
}
},
{
@@ -3059,10 +3046,11 @@
"en": "Charging station for bicycles",
"nl": "Oplaadpunten voor fietsen",
"ca": "Punt de recàrrega per a bicicletes",
+ "cs": "Nabíjecí stanice pro kola",
"de": "Ladestationen für Fahrräder",
+ "es": "Punto de carga para bicicletas",
"fr": "Station de recharge pour vélos",
- "it": "Stazione di ricarica per biciclette",
- "es": "Punto de carga para bicicletas"
+ "it": "Stazione di ricarica per biciclette"
},
"osmTags": "bicycle=yes"
},
@@ -3071,10 +3059,11 @@
"en": "Charging station for cars",
"nl": "Oplaadpunten voor auto's",
"ca": "Estació de càrrega per a cotxes",
+ "cs": "Nabíjecí stanice pro auta",
"de": "Ladestationen für Autos",
+ "es": "Punto de carga para coches",
"fr": "Station de recharge pour voitures",
- "it": "Stazione di ricarica per auto",
- "es": "Punto de carga para coches"
+ "it": "Stazione di ricarica per auto"
},
"osmTags": {
"or": [
@@ -3093,10 +3082,11 @@
"en": "Only working charging stations",
"nl": "Enkel werkende oplaadpunten",
"ca": "Només estacions de recàrrega en funcionament",
+ "cs": "Pouze funkční nabíjecí stanice",
"de": "Nur Ladestationen in Betrieb",
+ "es": "Solo puntos de carga en funcionamiento",
"fr": "Seulement les stations de recharge qui fonctionnent",
- "it": "Solo stazioni di ricarica funzionanti",
- "es": "Solo puntos de carga en funcionamiento"
+ "it": "Solo stazioni di ricarica funzionanti"
},
"osmTags": {
"and": [
@@ -3115,9 +3105,10 @@
"en": "All connectors",
"nl": "Alle types",
"ca": "Tots els connectors",
+ "cs": "Všechny konektory",
"de": "Alle Anschlüsse",
- "it": "Tutti i connettori",
- "es": "Todos los conectores"
+ "es": "Todos los conectores",
+ "it": "Tutti i connettori"
}
},
{
@@ -3246,7 +3237,8 @@
"en": "Has a
Drive-through opening hours
{opening_hours_table(opening_hours:drive_through)}",
+ "nl": "Openingsuren van de drive-through
{opening_hours_table(opening_hours:drive_through)}"
+ }
+ },
{
"question": {
"nl": "Heeft deze eetgelegenheid een vegetarische optie?",
@@ -1339,6 +1390,7 @@
"lactose_free",
"smoking",
"service:electricity",
+ "seating",
"dog-access",
"internet",
"internet-fee",
@@ -1486,6 +1538,8 @@
"filters.sugar_free",
"filters.gluten_free",
"filters.lactose_free",
+ "outdoor_seating",
+ "indoor_seating",
"accepts_cash",
"accepts_cards",
"dogs"
@@ -1543,4 +1597,4 @@
]
},
"allowMove": true
-}
+}
\ No newline at end of file
diff --git a/assets/layers/gps_track/gps_track.json b/assets/layers/gps_track/gps_track.json
index c827be9c15..bd6fb7a080 100644
--- a/assets/layers/gps_track/gps_track.json
+++ b/assets/layers/gps_track/gps_track.json
@@ -59,7 +59,8 @@
"fr": "C'est le chemin que vous avez parcouru depuis l'ouverture de ce site. Ne vous inquiétez pas - ceci n'est visible que pour vous et personne d'autre. Vos données de localisation ne sont jamais envoyées hors de l'appareil.",
"ca": "Aquest és el camí que heu recorregut des que s'ha obert aquest lloc web. No et preocupis: això només és visible per a tu i ningú més. Les vostres dades d'ubicació mai s'envien fora del dispositiu.",
"cs": "To je cesta, kterou jste urazili od otevření těchto webových stránek. Nemějte obavy - je viditelná pouze pro vás a pro nikoho jiného. Údaje o vaší poloze nejsou nikdy odesílány mimo zařízení.",
- "es": "Esta es la traza que has recorrido desde que se abrió este sitio web. No te preocupes, solo tú puedes verla y nadie más. Tus datos de ubicación nunca se envían fuera del dispositivo."
+ "es": "Esta es la traza que has recorrido desde que se abrió este sitio web. No te preocupes, solo tú puedes verla y nadie más. Tus datos de ubicación nunca se envían fuera del dispositivo.",
+ "uk": "Це шлях, який ви пройшли з моменту відкриття веб-сайту. Не хвилюйтеся – це видно лише вам і нікому більше. Дані про ваше місцезнаходження ніколи не надсилаються за межі пристрою."
}
},
"export_as_gpx",
diff --git a/assets/layers/hospital/hospital.json b/assets/layers/hospital/hospital.json
index 4caeec99fa..c806050eb9 100644
--- a/assets/layers/hospital/hospital.json
+++ b/assets/layers/hospital/hospital.json
@@ -8,7 +8,8 @@
"ca": "Hospitals",
"ru": "Больницы",
"cs": "Nemocnice",
- "es": "Hospitales"
+ "es": "Hospitales",
+ "uk": "Лікарні"
},
"description": {
"en": "A layer showing hospital grounds",
diff --git a/assets/layers/icons/icons.json b/assets/layers/icons/icons.json
index 6b1d1fdf2f..bc89dc6b9b 100644
--- a/assets/layers/icons/icons.json
+++ b/assets/layers/icons/icons.json
@@ -130,7 +130,8 @@
"de": "Telefon",
"pl": "telefon",
"cs": "telefon",
- "es": "teléfono"
+ "es": "teléfono",
+ "uk": "телефон"
}
}
},
@@ -149,7 +150,8 @@
"de": "Telefon",
"pl": "telefon",
"cs": "telefon",
- "es": "teléfono"
+ "es": "teléfono",
+ "uk": "телефон"
}
}
}
diff --git a/assets/layers/insect_hotel/insect_hotel.json b/assets/layers/insect_hotel/insect_hotel.json
new file mode 100644
index 0000000000..acb872b341
--- /dev/null
+++ b/assets/layers/insect_hotel/insect_hotel.json
@@ -0,0 +1,51 @@
+{
+ "id": "insect_hotel",
+ "name": {
+ "en": "Insect Hotels",
+ "nl": "Insectenhotels"
+ },
+ "description": {
+ "en": "Layer showing insect hotels",
+ "nl": "Laag met insectenhotels"
+ },
+ "source": {
+ "osmTags": "man_made=insect_hotel"
+ },
+ "minzoom": 11,
+ "title": {
+ "en": "Insect Hotel",
+ "nl": "Insectenhotel"
+ },
+ "presets": [
+ {
+ "title": {
+ "en": "an insect hotel",
+ "nl": "een insectenhotel"
+ },
+ "tags": [
+ "man_made=insect_hotel"
+ ]
+ }
+ ],
+ "tagRenderings": [
+ "images"
+ ],
+ "pointRendering": [
+ {
+ "location": [
+ "point",
+ "centroid"
+ ],
+ "marker": [
+ {
+ "icon": "./assets/layers/insect_hotel/insect_hotel.svg"
+ }
+ ]
+ }
+ ],
+ "allowMove": {
+ "enableImproveAccuracy": true,
+ "enableRelocation": true
+ },
+ "deletion": true
+}
\ No newline at end of file
diff --git a/assets/layers/insect_hotel/insect_hotel.svg b/assets/layers/insect_hotel/insect_hotel.svg
new file mode 100644
index 0000000000..a612d917a5
--- /dev/null
+++ b/assets/layers/insect_hotel/insect_hotel.svg
@@ -0,0 +1,187 @@
+
+
diff --git a/assets/layers/insect_hotel/insect_hotel.svg.license b/assets/layers/insect_hotel/insect_hotel.svg.license
new file mode 100644
index 0000000000..75299f8845
--- /dev/null
+++ b/assets/layers/insect_hotel/insect_hotel.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: Robin van der Linde
+SPDX-License-Identifier: CC0-1.0
\ No newline at end of file
diff --git a/assets/layers/insect_hotel/license_info.json b/assets/layers/insect_hotel/license_info.json
new file mode 100644
index 0000000000..1b8152aefd
--- /dev/null
+++ b/assets/layers/insect_hotel/license_info.json
@@ -0,0 +1,10 @@
+[
+ {
+ "path": "insect_hotel.svg",
+ "license": "CC0-1.0",
+ "authors": [
+ "Robin van der Linde"
+ ],
+ "sources": []
+ }
+]
\ No newline at end of file
diff --git a/assets/layers/memorial/memorial.json b/assets/layers/memorial/memorial.json
index f481fe08a4..c06bdcd345 100644
--- a/assets/layers/memorial/memorial.json
+++ b/assets/layers/memorial/memorial.json
@@ -291,7 +291,6 @@
"key": "memorial"
},
"filter": true
-
},
{
"id": "inscription",
diff --git a/assets/layers/nature_reserve/nature_reserve.json b/assets/layers/nature_reserve/nature_reserve.json
index 1817365679..a72aac68e8 100644
--- a/assets/layers/nature_reserve/nature_reserve.json
+++ b/assets/layers/nature_reserve/nature_reserve.json
@@ -495,7 +495,8 @@
"de": "Welche Telefonnummer kann man bei Fragen und Problemen zu diesem Gebiet anrufen?",
"ca": "A quin número de telèfon es pot trucar amb preguntes i problemes amb aquest parc natural?",
"cs": "Na jaké telefonní číslo lze volat v případě dotazů a problémů s touto přírodní rezervací?",
- "es": "¿Qué número de teléfono se puede llamar para preguntas y problemas con esta reserva natural?"
+ "es": "¿Qué número de teléfono se puede llamar para preguntas y problemas con esta reserva natural?",
+ "uk": "За яким номером телефону можна звертатися з питаннями та проблемами, пов'язаними з цим заповідником?"
},
"render": {
"*": "{phone}"
@@ -513,7 +514,8 @@
"de": "Respektieren Sie die Privatsphäre. Geben Sie nur dann eine Telefonnummer an, wenn diese allgemein bekannt ist",
"ca": "Respecteu la privadesa: només empleneu una adreça de número de telèfon personal si es publica àmpliament",
"cs": "Respektujte soukromí - adresu s osobním telefonním číslem vyplňte pouze v případě, že je široce zveřejněna",
- "es": "Respeta la privacidad: sólo rellena una dirección de número de teléfono personal si esto se publica ampliamente"
+ "es": "Respeta la privacidad: sólo rellena una dirección de número de teléfono personal si esto se publica ampliamente",
+ "uk": "Поважайте приватність - вказуйте особистий номер телефону лише в тому випадку, якщо він є загальнодоступним"
}
},
{
diff --git a/assets/layers/note/note.json b/assets/layers/note/note.json
index 271336a113..b8262f8d44 100644
--- a/assets/layers/note/note.json
+++ b/assets/layers/note/note.json
@@ -28,6 +28,7 @@
"_is_import_note:=(() => {const lines = feat.properties['_first_comment'].split('\\n'); const matchesMapCompleteURL = lines.map(l => l.match(\".*https://mapcomplete.\\(osm.be|org\\)/\\([a-zA-Z_-]+\\)\\(.html\\).*#import\")); const matchedIndexes = matchesMapCompleteURL.map((doesMatch, i) => [doesMatch !== null, i]).filter(v => v[0]).map(v => v[1]); return matchedIndexes[0] })()"
],
"minzoom": 7,
+ "isShown": "_total_comments>0",
"title": {
"render": {
"en": "Note",
diff --git a/assets/layers/parking/parking.json b/assets/layers/parking/parking.json
index e19631b03d..2cbaeb2f0b 100644
--- a/assets/layers/parking/parking.json
+++ b/assets/layers/parking/parking.json
@@ -101,7 +101,8 @@
"fr": "C'est un parking en surface",
"ca": "Aquest és un aparcament en superfície",
"cs": "Jedná se o povrchové parkoviště",
- "es": "Este es un aparcamiento en superficie"
+ "es": "Este es un aparcamiento en superficie",
+ "uk": "Це наземний паркінг"
}
},
{
@@ -113,7 +114,8 @@
"fr": "C'est un lieu de stationnement à côté d'une route",
"ca": "Es tracta d'un aparcament al costat d'un carrer",
"cs": "Jedná se o parkoviště vedle ulice",
- "es": "Esta es una bahía de aparcamiento junto a una calle"
+ "es": "Esta es una bahía de aparcamiento junto a una calle",
+ "uk": "Це паркувальний майданчик поруч з вулицею"
}
},
{
@@ -126,7 +128,8 @@
"ca": "Aquest és un aparcament subterrani",
"pl": "To jest podziemny parking",
"cs": "Jedná se o podzemní garáž",
- "es": "Este es un aparcamiento subterráneo"
+ "es": "Este es un aparcamiento subterráneo",
+ "uk": "Це підземний паркінг"
}
},
{
@@ -139,7 +142,8 @@
"pl": "To jest wielopiętrowy parking",
"ca": "Es tracta d'un garatge de diverses plantes",
"cs": "Jedná se o vícepodlažní parkovací garáž",
- "es": "Este es un aparcamiento de varios pisos"
+ "es": "Este es un aparcamiento de varios pisos",
+ "uk": "Це багатоповерховий паркінг"
}
},
{
@@ -150,7 +154,8 @@
"de": "Dies ist ein Parkdeck auf dem Dach",
"fr": "C'est un parking sur le toit",
"cs": "Jedná se o střešní parkoviště",
- "es": "Este es un aparcamiento en azotea"
+ "es": "Este es un aparcamiento en azotea",
+ "uk": "Це паркувальний майданчик на даху"
}
},
{
@@ -163,7 +168,8 @@
"pl": "To jest pas do parkowania na jezdni",
"ca": "Aquest és un carril per aparcar al carrer",
"cs": "Jedná se o pruh pro parkování na silnici",
- "es": "Este es un carril para aparcar en la carretera"
+ "es": "Este es un carril para aparcar en la carretera",
+ "uk": "Це смуга для паркування на дорозі"
}
},
{
@@ -174,7 +180,8 @@
"de": "Dies ist ein durch Carports überdachter Parkplatz",
"fr": "C'est un parking couvert avec des abris auto",
"cs": "Jedná se o parkoviště kryté přístřešky pro auta",
- "es": "Este aparcamiento está cubierto por cocheras"
+ "es": "Este aparcamiento está cubierto por cocheras",
+ "uk": "Це парковка, закрита навісами для автомобілів"
}
},
{
@@ -185,7 +192,8 @@
"de": "Dies ist ein Parkplatz bestehend aus Garagenboxen",
"fr": "C'est un parking composé de box de garage",
"cs": "Jedná se o parkoviště skládající se z garážových boxů",
- "es": "Este es un aparcamiento que consta de boxes de garaje"
+ "es": "Este es un aparcamiento que consta de boxes de garaje",
+ "uk": "Це паркінг, що складається з гаражних боксів"
}
},
{
@@ -197,7 +205,8 @@
"fr": "C'est un parking sur une aire de stationnement",
"ca": "Aquest és un aparcament en una zona de descans",
"cs": "Jedná se o parkoviště na odpočívadle",
- "es": "Este es un aparcamiento en una zona de descanso"
+ "es": "Este es un aparcamiento en una zona de descanso",
+ "uk": "Це парковка на проїжджій частині"
}
},
{
@@ -208,7 +217,8 @@
"de": "Hier gibt es Parkmöglichkeiten unter einer offenen Dachkonstruktion",
"fr": "C'est un parking composé de cabanons",
"cs": "Jedná se o parkoviště tvořené přístřešky",
- "es": "Este es un aparcamiento que consta de cobertizos"
+ "es": "Este es un aparcamiento que consta de cobertizos",
+ "uk": "Це парковка, що складається з навісів"
}
}
],
@@ -220,7 +230,8 @@
"ca": "Quin tipus d'aparcament és aquest?",
"pl": "Jaki to rodzaj parkingu?",
"cs": "Jaký je druh parkování?",
- "es": "¿Qué tipo de aparcamiento es este?"
+ "es": "¿Qué tipo de aparcamiento es este?",
+ "uk": "Що це за парковка?"
}
},
{
@@ -272,7 +283,7 @@
"if": "capacity:disabled=0",
"then": {
"en": "There are no disabled parking spots",
- "nl": "Er zijn geen parkeerplaatsen voor gehandicapten",
+ "nl": "Er zijn geen parkeerplaatsen voor personen met een beperking",
"de": "Es gibt keine barrierefreien Stellplätze",
"fr": "Il n'y a pas de places de stationnement pour personnes à mobilité réduite",
"ca": "No hi ha places d'aparcament per a persones amb mobilitat reduïda",
@@ -284,7 +295,7 @@
],
"question": {
"en": "How many disabled parking spots are there at this parking?",
- "nl": "Hoeveel parkeerplaatsen voor gehandicapten zijn er op deze parking?",
+ "nl": "Hoeveel parkeerplaatsen voor personen met een beperking zijn er op deze parking?",
"de": "Wie viele barrierefreie Stellplätze gibt es auf diesem Parkplatz?",
"fr": "Combien y a-t-il de places de stationnement pour personnes à mobilité réduite dans ce parking ?",
"ca": "Quantes places d'aparcament per a persones amb mobilitat reduïda hi ha al parking?",
@@ -294,7 +305,7 @@
},
"render": {
"en": "There are {capacity:disabled} disabled parking spots",
- "nl": "Er zijn {capacity:disabled} parkeerplaatsen voor gehandicapten",
+ "nl": "Er zijn {capacity:disabled} parkeerplaatsen voor personen met een beperking",
"de": "Es gibt {capacity:disabled} barrierefreie Stellplätze",
"fr": "Il y a {capacity:disabled} places de stationnement pour personnes à mobilité réduite",
"ca": "Hi ha {capacity:disabled} places d'aparcament per a discapacitats",
@@ -339,7 +350,8 @@
"cs": "Počet parkovacích míst {capacity}",
"es": "Hay {capacity} plazas de aparcamiento"
}
- }
+ },
+ "maxstay"
],
"deletion": {
"softDeletionTags": {
@@ -354,4 +366,4 @@
"enableRelocation": false,
"enableImproveAccuracy": true
}
-}
+}
\ No newline at end of file
diff --git a/assets/layers/pharmacy/pharmacy.json b/assets/layers/pharmacy/pharmacy.json
index 258a88d04b..14cc6ae8f0 100644
--- a/assets/layers/pharmacy/pharmacy.json
+++ b/assets/layers/pharmacy/pharmacy.json
@@ -8,7 +8,8 @@
"ca": "Farmàcies",
"fr": "Pharmacies",
"cs": "Lékárny",
- "es": "Farmacias"
+ "es": "Farmacias",
+ "uk": "Аптеки"
},
"description": {
"en": "A layer showing pharmacies, which (probably) dispense prescription drugs",
@@ -140,62 +141,15 @@
"pl": "Nazwa tej apteki to {name}",
"es": "Esta farmacia se llama {name}",
"uk": "Ця аптека називається {name}"
- }
+ },
+ "onSoftDelete": [
+ "name="
+ ]
},
"opening_hours",
"contact",
"payment-options",
- {
- "id": "wheelchair",
- "question": {
- "en": "Is this pharmacy easy to access on a wheelchair?",
- "de": "Ist die Apotheke für Rollstuhlfahrer leicht zugänglich?",
- "nl": "Is het mogelijk om deze apotheek te bereiken met een rolstoel?",
- "ca": "És fàcil accedir a aquesta farmàcia amb una cadira de rodes?",
- "fr": "Cette pharmacie est-elle facilement accessible en chaise roulante ?",
- "cs": "Je tato lékárna snadno přístupná na invalidním vozíku?",
- "es": "¿Es esta farmacia de fácil acceso en silla de ruedas?"
- },
- "mappings": [
- {
- "if": "wheelchair=yes",
- "then": {
- "en": "This pharmacy is easy to access on a wheelchair",
- "ca": "Aquesta farmàcia és fàcil d'accedir en una cadira de rodes",
- "de": "Die Apotheke ist für Rollstuhlfahrer leicht zugänglich",
- "nl": "Deze apotheek is makkelijk te bereiken met een rolstoel",
- "fr": "Cette pharmacie est facile d'accès en chaise roulante",
- "cs": "Tato lékárna je snadno přístupná na invalidním vozíku",
- "pl": "Ta apteka jest łatwo dostępna na wózku",
- "es": "Esta farmacia es de fácil acceso en silla de ruedas"
- }
- },
- {
- "if": "wheelchair=no",
- "then": {
- "en": "This pharmacy is hard to access on a wheelchair",
- "de": "Die Apotheke ist für Rollstuhlfahrer nur schwer zugänglich",
- "nl": "Deze apotheek is moeilijk te bereiken met een rolstoel",
- "ca": "Aquesta farmàcia es difícil d'accedir amb una cadira de rodes",
- "fr": "Cette pharmacie est difficilement accessible en chaise roulante",
- "cs": "Tato lékárna je těžko přístupná na invalidním vozíku",
- "es": "Esta farmacia es de difícil acceso en silla de ruedas"
- }
- },
- {
- "if": "wheelchair=limited",
- "then": {
- "en": "This pharmacy has limited access for wheelchair users",
- "de": "Die Apotheke ist für Rollstuhlfahrer nur eingeschränkt zugänglich",
- "nl": "Deze apotheek is bereikbaar met een rolstoel, maar het is niet makkelijk",
- "ca": "Aquesta farmàcia té un accés limitat per a usuaris amb cadira de rodes",
- "fr": "L'accès à cette pharmacie est limité en chaise roulante",
- "cs": "Tato lékárna má omezený přístup pro vozíčkáře",
- "es": "Esta farmacia tiene acceso limitado para usuarios de silla de ruedas"
- }
- }
- ]
- }
+ "wheelchair"
],
"filter": [
{
@@ -209,7 +163,8 @@
"fr": "A une drive",
"ca": "Té autoservei",
"cs": "Má průjezd",
- "es": "¿Tiene servicio de auto-recogida?"
+ "es": "¿Tiene servicio de auto-recogida?",
+ "uk": "Має проїзд"
},
"osmTags": "drive_through=yes"
}
@@ -226,7 +181,8 @@
"fr": "Pharmacie pouvant délivrer des médicaments sous prescription",
"ca": "Farmàcia que subministra medicaments amb recepta",
"cs": "Lékárna schopná poskytovat léky na předpis",
- "es": "¿La farmacia puede proporcionar medicamentos con receta?"
+ "es": "¿La farmacia puede proporcionar medicamentos con receta?",
+ "uk": "Аптека, здатна надавати рецептурні ліки"
},
"osmTags": "dispensing=yes"
}
@@ -234,6 +190,13 @@
},
"open_now"
],
- "deletion": true,
+ "deletion": {
+ "softDeletionTags": {
+ "and": [
+ "amenity=",
+ "fixme="
+ ]
+ }
+ },
"allowMove": true
}
diff --git a/assets/layers/physiotherapist/physiotherapist.json b/assets/layers/physiotherapist/physiotherapist.json
index cd3342cc7a..0a0f6327a9 100644
--- a/assets/layers/physiotherapist/physiotherapist.json
+++ b/assets/layers/physiotherapist/physiotherapist.json
@@ -7,7 +7,8 @@
"ca": "Fisioterapeuta",
"cs": "Fyzioterapeut",
"pl": "Fizjoterapeuta",
- "es": "Fisioterapeuta"
+ "es": "Fisioterapeuta",
+ "uk": "Фізіотерапевт"
},
"description": {
"en": "This layer shows physiotherapists",
diff --git a/assets/layers/picnic_table/picnic_table.json b/assets/layers/picnic_table/picnic_table.json
index 9eb0f021dd..bcda2f1766 100644
--- a/assets/layers/picnic_table/picnic_table.json
+++ b/assets/layers/picnic_table/picnic_table.json
@@ -9,7 +9,8 @@
"de": "Picknick-Tische",
"ca": "Taules de pícnic",
"es": "Mesas de Picnic",
- "cs": "Piknikové stoly"
+ "cs": "Piknikové stoly",
+ "uk": "Столи для пікніка"
},
"description": {
"en": "The layer showing picnic tables",
diff --git a/assets/layers/playground/playground.json b/assets/layers/playground/playground.json
index 56415ee37e..1db655f2f9 100644
--- a/assets/layers/playground/playground.json
+++ b/assets/layers/playground/playground.json
@@ -11,7 +11,8 @@
"pa_PK": "کھید دے میدان",
"cs": "Dětská hřiště",
"pl": "Place zabaw",
- "es": "Parques Infantiles"
+ "es": "Parques Infantiles",
+ "uk": "Дитячі майданчики"
},
"description": {
"nl": "Speeltuinen",
@@ -666,7 +667,8 @@
"it": "{phone}",
"es": "{phone}",
"cs": "{phone}",
- "pl": "{phone}"
+ "pl": "{phone}",
+ "uk": "{phone}"
},
"freeform": {
"key": "phone",
diff --git a/assets/layers/playground_equipment/playground_equipment.json b/assets/layers/playground_equipment/playground_equipment.json
index ad6eef4746..98f1017c34 100644
--- a/assets/layers/playground_equipment/playground_equipment.json
+++ b/assets/layers/playground_equipment/playground_equipment.json
@@ -3,7 +3,8 @@
"name": {
"en": "Playground equipment",
"de": "Spielgeräte",
- "es": "Equipamiento del Parque Infantil"
+ "es": "Equipamiento del Parque Infantil",
+ "uk": "Обладнання для дитячих майданчиків"
},
"description": {
"en": "Layer showing playground equipment",
diff --git a/assets/layers/postboxes/postboxes.json b/assets/layers/postboxes/postboxes.json
index 78a07dd8d3..23cb8e9df8 100644
--- a/assets/layers/postboxes/postboxes.json
+++ b/assets/layers/postboxes/postboxes.json
@@ -49,8 +49,19 @@
}
},
"keywords": {
- "en": ["post","post box","letter","letterbox"],
- "nl": ["brieven","post","brief","brievenbus","pakjes"]
+ "en": [
+ "post",
+ "post box",
+ "letter",
+ "letterbox"
+ ],
+ "nl": [
+ "brieven",
+ "post",
+ "brief",
+ "brievenbus",
+ "pakjes"
+ ]
},
"pointRendering": [
{
@@ -122,7 +133,9 @@
],
"title": {
"en": "a postbox on a wall",
- "nl": "een brievenbus tegen een muur"
+ "nl": "een brievenbus tegen een muur",
+ "de": "ein Briefkasten an einer Wand",
+ "es": "un buzón en una pared"
},
"snapToLayer": [
"walls_and_buildings"
@@ -138,10 +151,14 @@
{
"id": "operator",
"question": {
- "en": "Who operates this postbox?"
+ "en": "Who operates this postbox?",
+ "de": "Wer betreibt diesen Briefkasten?",
+ "es": "¿Quién gestiona este buzón?"
},
"render": {
- "en": "This postbox is operated by {operator}"
+ "en": "This postbox is operated by {operator}",
+ "de": "Dieser Briefkasten wird von {operator} betrieben",
+ "es": "Este buzón es operado por {operator}."
},
"freeform": {
"key": "operator"
diff --git a/assets/layers/postoffices/postoffices.json b/assets/layers/postoffices/postoffices.json
index e6f4954ae2..535db32a78 100644
--- a/assets/layers/postoffices/postoffices.json
+++ b/assets/layers/postoffices/postoffices.json
@@ -211,7 +211,8 @@
"render": {
"en": "This is a {brand} post office",
"de": "Dies ist eine Poststelle von {brand}",
- "es": "Esta es una oficina de correos {brand}"
+ "es": "Esta es una oficina de correos {brand}",
+ "uk": "Це поштове відділення {brand}"
},
"freeform": {
"type": "nsi",
diff --git a/assets/layers/public_bookcase/public_bookcase.json b/assets/layers/public_bookcase/public_bookcase.json
index 041d5bc949..e66e030602 100644
--- a/assets/layers/public_bookcase/public_bookcase.json
+++ b/assets/layers/public_bookcase/public_bookcase.json
@@ -549,7 +549,8 @@
"hu": "További információ ezen a weboldalon",
"ca": "Més informació al web",
"cs": "Více informací na webových stránkách",
- "es": "Más información en la web"
+ "es": "Más información en la web",
+ "uk": "Більше інформації на сайті"
}
}
},
@@ -563,7 +564,8 @@
"hu": "Van-e olyan weboldal, ahol további információ található erről a nyilvános könyvespolcról?",
"ca": "Hi ha algun lloc web amb més informació sobre aquesta prestatgeria pública?",
"cs": "Existuje webová stránka s dalšími informacemi o této veřejné knihobudce?",
- "es": "¿Hay un sitio web con más información sobre este librero público?"
+ "es": "¿Hay un sitio web con más información sobre este librero público?",
+ "uk": "Чи є веб-сайт із додатковою інформацією про цю публічну книжкову шафу?"
},
"freeform": {
"key": "website",
diff --git a/assets/layers/questions/questions.json b/assets/layers/questions/questions.json
index a5b70f1828..cc6516521f 100644
--- a/assets/layers/questions/questions.json
+++ b/assets/layers/questions/questions.json
@@ -215,8 +215,12 @@
"en": "Edit phone number",
"nl": "Pas telefoonnummer aan",
"de": "Telefonnummer bearbeiten",
- "es": "Editar número de teléfono"
- }
+ "es": "Editar número de teléfono",
+ "uk": "Редагувати номер телефону"
+ },
+ "onSoftDelete": [
+ "phone="
+ ]
},
{
"id": "mastodon",
@@ -234,7 +238,11 @@
"render": {
"*": "{fediverse_link(contact:mastodon)}"
},
- "icon": "./assets/svg/mastodon.svg"
+ "icon": "./assets/svg/mastodon.svg",
+ "onSoftDelete": [
+ "contact:mastodon=",
+ "mastodon="
+ ]
},
{
"id": "facebook",
@@ -263,7 +271,10 @@
"de": "
U kunt uw exacte locatie volgen (enkel mobiel) en in de linkerbenedenhoek categorieën selecteren die voor u relevant zijn. U kunt deze tool ook gebruiken om 'spelden' aan de kaart toe te voegen of te bewerken en meer gegevens te verstrekken door de vragen te beantwoorden.
Alle wijzigingen die u maakt worden automatisch opgeslagen in de wereldwijde database van OpenStreetMap en kunnen door anderen vrij worden hergebruikt.
Bekijk voor meer info over cyclofix ook cyclofix.osm.be.",
- "fr": "Le but de cette carte est de présenter aux cyclistes une solution facile à utiliser pour trouver l'infrastructure appropriée à leurs besoins.
Vous pouvez suivre votre localisation précise (mobile uniquement) et sélectionner les couches qui vous concernent dans le coin inférieur gauche. Vous pouvez également utiliser cet outil pour ajouter ou modifier des épingles (points d'intérêt) sur la carte et fournir plus de données en répondant aux questions.
Toutes les modifications que vous apportez seront automatiquement enregistrées dans la base de données mondiale d'OpenStreetMap et peuvent être librement réutilisées par d'autres.
Pour plus d'informations sur le projet cyclofix, rendez-vous sur cyclofix.osm.be.",
+ "nl": "Een kaart waarop fietsers gepaste infrastructuur kunnen vinden zoals fietspompen, drinkwater, fietsenwinkels, reparatiepunten of stallingen.",
+ "fr": "Une carte pour permettre aux cyclistes de trouver les infrastructures appropriées à leurs besoins, telles que des pompes à vélo, de l'eau potable, des vélocystes, des stations de réparation ou des parkings.",
"gl": "O obxectivo deste mapa é amosar ós ciclistas unha solución doada de empregar para atopar a infraestrutura axeitada para as súas necesidades.
Podes obter a túa localización precisa (só para dispositivos móbiles) e escoller as capas que sexan relevantes para ti na esquina inferior esquerda. Tamén podes empregar esta ferramenta para engadir ou editar puntos de interese ó mapa e fornecer máis datos respondendo as cuestións.
Todas as modificacións que fagas serán gardadas de xeito automático na base de datos global do OpenStreetMap e outros poderán reutilizalos libremente.
Para máis información sobre o proxecto cyclofix, vai a cyclofix.osm.be.",
"de": "Eine Karte, die Radfahrern hilft, die für ihre Bedürfnisse geeignete Infrastruktur zu finden, z. B. Fahrradpumpen, Trinkwasser, Fahrradläden, Reparaturstationen oder Parkmöglichkeiten.",
"ja": "このマップの目的は、サイクリストのニーズに適した施設を見つけるための使いやすいソリューションを提供することです。
正確な位置を追跡し(モバイルのみ)、左下コーナーで関連するレイヤを選択できます。このツールを使用して、マップにピン(注目点)を追加または編集したり、質問に答えることでより多くのデータを提供することもできます。
変更内容はすべてOpenStreetMapのグローバルデータベースに自動的に保存され、他のユーザーが自由に再利用できます。
cyclofixプロジェクトの詳細については、 cyclofix.osm.be を参照してください。",
diff --git a/assets/themes/disaster_response/disaster_response.json b/assets/themes/disaster_response/disaster_response.json
index c851f5271d..2feec6ce80 100644
--- a/assets/themes/disaster_response/disaster_response.json
+++ b/assets/themes/disaster_response/disaster_response.json
@@ -10,7 +10,8 @@
"cs": "Reakce na katastrofy a záchranné služby",
"ru": "Ликвидация последствий стихийных бедствий и аварийные службы",
"hu": "Katasztrófaelhárítás és sürgősségi szolgálatok",
- "uk": "Реагування на стихійні лиха та аварійні служби"
+ "uk": "Реагування на стихійні лиха та аварійні служби",
+ "nl": "Rampbestrijding en hulpdiensten"
},
"description": {
"en": "This map contains elements meant for disaster preparedness and response.",
@@ -19,7 +20,8 @@
"es": "Este mapa contiene elementos destinados a la preparación y respuesta ante desastres.",
"ca": "Aquest mapa conté elements destinants a la preparació i resposta davant desastres.",
"cs": "Tato mapa obsahuje prvky určené pro připravenost na katastrofy a reakci na ně.",
- "uk": "Ця мапа містить обʼєкти, призначені для забезпечення готовності до стихійних лих та реагування на них."
+ "uk": "Ця мапа містить обʼєкти, призначені для забезпечення готовності до стихійних лих та реагування на них.",
+ "nl": "Deze kaart bevat elementen die bedoeld zijn voor rampbestrijding en -voorbereiding."
},
"icon": "./assets/themes/disaster_response/CivilDefence.svg",
"socialImage": "./assets/themes/disaster_response/social.svg",
diff --git a/assets/themes/education/education.json b/assets/themes/education/education.json
index 7962d0a340..796580e288 100644
--- a/assets/themes/education/education.json
+++ b/assets/themes/education/education.json
@@ -21,7 +21,7 @@
},
"description": {
"en": "On this map, you'll find information about all types of schools and education and can easily add more information",
- "nl": "Deze kaart toont info over verschillende onderwijsinstellingen zoals kleuterscholen, middelbare scholen en tertiair onderwijs.",
+ "nl": "Deze kaart toont info over scholen en onderwijsinstellingen. Je kan er gemakkelijk meer informatie aan toevoegen",
"de": "Auf dieser Karte können Sie Informationen über Bildungseinrichtungen finden und hinzufügen",
"fr": "Sur cette carte, vous trouverez des informations concernant tous les types d'écoles et d'enseignement. Vous pouvez facilement ajouter plus d'informations",
"ca": "En aquest mapa trobareu informació sobre tots els tipus d'escoles i educació i podreu afegir fàcilment més informació",
diff --git a/assets/themes/elongated_coin/elongated_coin.json b/assets/themes/elongated_coin/elongated_coin.json
index 62900eac83..d18467cc40 100644
--- a/assets/themes/elongated_coin/elongated_coin.json
+++ b/assets/themes/elongated_coin/elongated_coin.json
@@ -8,7 +8,8 @@
"cs": "Stroje na ražbu mincí",
"pl": "Prasy do groszy",
"hu": "Kinyújtottérem-automaták",
- "uk": "Монетні преси"
+ "uk": "Монетні преси",
+ "nl": "Muntpersen"
},
"description": {
"en": "Find penny presses to create your own elongated coins.",
@@ -17,7 +18,8 @@
"ca": "Trobeu premses de cèntims per crear les vostres pròpies monedes allargades.",
"cs": "Najděte automaty na ražbu suvenýrových mincí.",
"pl": "Znajdź prasy do groszy, aby stworzyć własne wydłużone monety.",
- "uk": "Знайдіть преси для монет, щоб створити власні витягнуті монети."
+ "uk": "Знайдіть преси для монет, щоб створити власні витягнуті монети.",
+ "nl": "Zoek muntpersen om uitgerokken munten te maken."
},
"icon": "./assets/themes/elongated_coin/penny.svg",
"startZoom": 11,
diff --git a/assets/themes/etymology/etymology.json b/assets/themes/etymology/etymology.json
index c85882821f..dbc4ecb15e 100644
--- a/assets/themes/etymology/etymology.json
+++ b/assets/themes/etymology/etymology.json
@@ -2,13 +2,13 @@
"id": "etymology",
"title": {
"en": "Etymology - what is a place named after?",
- "nl": "Etymologie - waarnaar is een straat vernoemd?",
+ "nl": "Etymologie - waarnaar is een plaats naar vernoemd?",
"de": "Etymologie - Wonach ist ein Ort benannt?",
"it": "Etimologia - da cosa prende nome un luogo?",
"ru": "Открытая этимологическая карта",
"zh_Hant": "開放詞源地圖",
"hu": "Etimológiai térkép – miről kapta a nevét ez a hely?",
- "fr": "Étymologie - d'où les rues tirent leur nom ?",
+ "fr": "Étymologie - d'où les lieux tirent leur nom ?",
"ca": "Etimologia: com rep el nom un lloc?",
"da": "Etymology - hvad er et sted opkaldt efter?",
"nb_NO": "Åpent etymologikart",
@@ -301,6 +301,31 @@
}
}
}
+ },
+ {
+ "builtin": "etymology",
+ "override": {
+ "id": "parks_without_etymology",
+ "=name": {
+ "en": "Parks without etymology information"
+ },
+ "minzoom": 18,
+ "isCounted": false,
+ "source": {
+ "osmTags": {
+ "and": [
+ "name~*",
+ {
+ "or": [
+ "leisure=park",
+ "landuse=village_green",
+ "landuse=recreation_ground"
+ ]
+ }
+ ]
+ }
+ }
+ }
}
]
}
diff --git a/assets/themes/fireplace/fireplace.json b/assets/themes/fireplace/fireplace.json
index 0ebec5245a..fb1a3b1ffe 100644
--- a/assets/themes/fireplace/fireplace.json
+++ b/assets/themes/fireplace/fireplace.json
@@ -7,7 +7,8 @@
"ca": "Xemeneies i barbacoes",
"cs": "Ohniště a grily",
"hu": "Tűzrakó- és grillezőhelyek",
- "uk": "Вогнища та барбекю"
+ "uk": "Вогнища та барбекю",
+ "nl": "Haarden en barbecues"
},
"description": {
"de": "Stelle im Freien zum Feuermachen oder ein ortsfest installierter Grill an einer offizielle Stelle.",
@@ -15,7 +16,9 @@
"es": "Lugar al aire libre para hacer fuego o una barbacoa/parrilla fija en un lugar oficial.",
"ca": "Lloc a l'aire lliure adequat per a fer foc i barbacoes.",
"cs": "Venkovní místo pro rozdělání ohně nebo grilování na oficiálním místě.",
- "uk": "Відкрите місце для розведення багаття або стаціонарне барбекю в офіційному місці."
+ "uk": "Відкрите місце для розведення багаття або стаціонарне барбекю в офіційному місці.",
+ "nl": "Buitenruimte om een vuur te maken of een vaste barbecue op een officiële plaats.",
+ "fr": "Lieu extérieur pour faire un feu ou barbecue fixe dans un lieu officiel."
},
"icon": "./assets/layers/assembly_point/fire.svg",
"layers": [
diff --git a/assets/themes/food/food.json b/assets/themes/food/food.json
index ebecb7b815..b40c0a415b 100644
--- a/assets/themes/food/food.json
+++ b/assets/themes/food/food.json
@@ -2,7 +2,7 @@
"id": "food",
"title": {
"en": "Restaurants and fast food",
- "nl": "Eetgelegenheden",
+ "nl": "Restaurants en fastfood",
"de": "Restaurants und Schnellimbisse",
"it": "Ristoranti e fast food",
"nb_NO": "Restauranter og søppelmat",
@@ -18,7 +18,7 @@
"uk": "Ресторани та фаст-фуд"
},
"description": {
- "nl": "Restaurants en fast food",
+ "nl": "Restaurants en fastfood",
"en": "Restaurants and fast food",
"de": "Restaurants und Schnellimbisse",
"es": "Restaurantes y comida rápida",
@@ -26,7 +26,7 @@
"fr": "Restaurants et restaurants à service rapide",
"da": "Restauranter og fastfood",
"ca": "Restaurants i menjar ràpid",
- "cs": "Restaurace a rychlého občerstvení",
+ "cs": "Restaurace a rychlé občerstvení",
"pl": "Restauracje i fast foody",
"it": "Ristoranti e fast food",
"uk": "Ресторани та фаст-фуд"
diff --git a/assets/themes/fritures/fritures.json b/assets/themes/fritures/fritures.json
index 931ec2c052..83a6e03ca5 100644
--- a/assets/themes/fritures/fritures.json
+++ b/assets/themes/fritures/fritures.json
@@ -68,7 +68,8 @@
"en": "No oil type preference",
"de": "Kein Öltyp bevorzugt",
"es": "Sin preferencia de tipo de aceite",
- "cs": "Žádný preferovaný typ oleje"
+ "cs": "Žádný preferovaný typ oleje",
+ "nl": "Geen voorkeur voor een bepaald type frituurolie"
}
},
{
@@ -77,7 +78,8 @@
"de": "Nur Friteusen mit Pflanzenöl anzeigen",
"ca": "Només mostra freiduries que utilitzen oli vegetal",
"es": "Mostrar solo freidoras que usan aceite vegetal",
- "cs": "Zobrazit pouze jídla smažená na rostlinném oleji"
+ "cs": "Zobrazit pouze jídla smažená na rostlinném oleji",
+ "nl": "Toon enkel frituren die plantaardige frituurolie gebruiken"
},
"osmTags": "friture:oil=vegetable"
},
@@ -87,7 +89,8 @@
"de": "Nur Friteusen mit tierischem Öl anzeigen",
"ca": "Només mostra freiduries que utilitzen oli animal",
"es": "Mostrar solo freidoras que usan aceite animal",
- "cs": "Zobrazit pouze jídla smažená na živočišném oleji"
+ "cs": "Zobrazit pouze jídla smažená na živočišném oleji",
+ "nl": "Toon enkel frituren die dierlijk frietvet gebruiken"
},
"osmTags": "friture:oil=animal"
}
diff --git a/assets/themes/ghostbikes/ghostbikes.json b/assets/themes/ghostbikes/ghostbikes.json
index 389395dd81..50b4c7b1e6 100644
--- a/assets/themes/ghostbikes/ghostbikes.json
+++ b/assets/themes/ghostbikes/ghostbikes.json
@@ -26,7 +26,7 @@
},
"description": {
"en": "A ghost bike is a memorial for a cyclist who died in a traffic accident, in the form of a white bicycle placed permanently near the accident location.
On this map, one can see all the ghost bikes which are known by OpenStreetMap. Is a ghost bike missing? Everyone can add or update information here - you only need to have a (free) OpenStreetMap account.
Op deze kaart zie je alle witte fietsen die door OpenStreetMap gekend zijn. Ontbreekt er een Witte Fiets of wens je informatie aan te passen? Meld je dan aan met een (gratis) OpenStreetMap account.",
+ "nl": "Een Witte Fiets of Spookfiets is een aandenken aan een fietser die bij een verkeersongeval om het leven kwam. Het gaat om een fiets die volledig wit is geschilderd en in de buurt van het ongeval werd geplaatst.
Op deze kaart zie je alle witte fietsen die door OpenStreetMap gekend zijn. Ontbreekt er een Witte Fiets of wens je informatie aan te passen? Meld je dan aan met een (gratis) OpenStreetMap account.
Auf dieser Karte sehen Sie alle Geisterräder, die in OpenStreetMap eingetragen sind. Fehlt ein Geisterrad? Jeder kann hier Informationen hinzufügen oder aktualisieren - Sie benötigen nur ein (kostenloses) OpenStreetMap-Konto.
このマップには、OpenStreetMapで知られているゴーストバイクがすべて表示されます。ゴーストバイクは行方不明ですか?誰でもここで情報の追加や更新ができます。必要なのは(無料の)OpenStreetMapアカウントだけです。",
"zh_Hant": "幽靈單車是用來紀念死於交通事故的單車騎士,在事發地點附近放置白色單車。
在這份地圖上面,你可以看到所有在開放街圖已知的幽靈單車。有缺漏的幽靈單車嗎?所有人都可以在這邊新增或是更新資訊-只有你有(免費)開放街圖帳號。",
diff --git a/assets/themes/ghostsigns/ghostsigns.json b/assets/themes/ghostsigns/ghostsigns.json
index 7b58ccf6e2..ec10a17f35 100644
--- a/assets/themes/ghostsigns/ghostsigns.json
+++ b/assets/themes/ghostsigns/ghostsigns.json
@@ -5,7 +5,8 @@
"de": "Geisterzeichen",
"es": "Letreros fantasma",
"cs": "Nápisy na zdech",
- "uk": "Примарні знаки"
+ "uk": "Примарні знаки",
+ "nl": "Spookreclames"
},
"description": {
"en": "A map showing disused signs on buildings",
@@ -13,7 +14,9 @@
"es": "Un mapa que muestra letreros en desuso en los edificios",
"ca": "Un mapa que mostra els rètols en desús dels edificis",
"cs": "Mapa zobrazující nepoužívané nápisy na budovách",
- "uk": "Мапа, на якій показані вивіски на будівлях, що не використовуються"
+ "uk": "Мапа, на якій показані вивіски на будівлях, що не використовуються",
+ "fr": "Une carte montrant les enseignes désaffectées sur des bâtiments",
+ "nl": "Een kaart met ongebruikte borden op gebouwen"
},
"icon": "./assets/themes/advertising/wall_painting.svg",
"layers": [
@@ -45,7 +48,9 @@
"en": "Is this artwork a historic advertisement?",
"de": "Ist dieses Kunstwerk eine historische Werbung?",
"es": "¿Es esta obra de arte un anuncio histórico?",
- "cs": "Je toto dílo historickou reklamou?"
+ "cs": "Je toto dílo historickou reklamou?",
+ "fr": "Est-ce que cette œuvre d'art est une publicité historique ?",
+ "nl": "Is dit kunstwerk een historische advertentie?"
},
"mappings": [
{
@@ -57,7 +62,9 @@
"en": "This artwork is a historic advertisement",
"de": "Dieses Kunstwerk ist eine historische Werbung",
"es": "Esta obra de arte es un anuncio histórico",
- "cs": "Toto dílo je historickou reklamou"
+ "cs": "Toto dílo je historickou reklamou",
+ "fr": "Cette œuvre d'art est une publicité historique",
+ "nl": "Dit kunstwerk is een historische advertentie"
}
},
{
@@ -69,7 +76,9 @@
"en": "This artwork is not a historic advertisement",
"de": "Dieses Kunstwerk ist keine historische Werbung",
"es": "Esta obra de arte no es un anuncio histórico",
- "cs": "Toto dílo není historickou reklamou"
+ "cs": "Toto dílo není historickou reklamou",
+ "fr": "Cette œuvre d'art n'est pas une publicité historique",
+ "nl": "Dit kunstwerk is geen historische advertentie"
}
}
]
diff --git a/assets/themes/glutenfree/glutenfree.json b/assets/themes/glutenfree/glutenfree.json
index b3933cff44..85ec0b6511 100644
--- a/assets/themes/glutenfree/glutenfree.json
+++ b/assets/themes/glutenfree/glutenfree.json
@@ -9,7 +9,9 @@
"cs": "Bez lepku",
"ru": "Без глютена",
"hu": "Gluténmentes helyek",
- "uk": "Без глютену"
+ "uk": "Без глютену",
+ "fr": "Sans gluten",
+ "nl": "Glutenvrij"
},
"description": {
"en": "A crowdsourced map with glutenfree items",
@@ -18,7 +20,8 @@
"es": "Un mapa colaborativo con artículos sin gluten",
"ca": "Un mapa col·lectiu amb articles sense gluten",
"cs": "Mapa s bezlepkovými položkami vytvořená pomocí crowdsourcingu",
- "uk": "Колективна мапа з безглютеновими продуктами"
+ "uk": "Колективна мапа з безглютеновими продуктами",
+ "nl": "Een gecrowdsourcete kaart met glutenvrije artikelen"
},
"icon": "./assets/layers/questions/glutenfree.svg",
"layers": [
diff --git a/assets/themes/grb/grb.json b/assets/themes/grb/grb.json
index 9bacdb89d9..4b7ca9a086 100644
--- a/assets/themes/grb/grb.json
+++ b/assets/themes/grb/grb.json
@@ -163,7 +163,8 @@
"ca": "Ha estat importat des de GRB, el número de referència és {source:geometry:ref}",
"cs": "Byl importován z GRB, referenční číslo je {source:geometry:ref}",
"es": "Ha sido importado de GRB, el número de referencia es {source:geometry:ref}",
- "pl": "Został zaimportowany z GRB, numer referencyjny to {source:geometry:ref}"
+ "pl": "Został zaimportowany z GRB, numer referencyjny to {source:geometry:ref}",
+ "nl": "Werd geïmporteerd vanuit GRB, het referentienummer is {source:geometry:ref}"
},
"condition": "source:geometry:ref~*"
},
diff --git a/assets/themes/guideposts/guideposts.json b/assets/themes/guideposts/guideposts.json
index 001f4f6d61..6530453df3 100644
--- a/assets/themes/guideposts/guideposts.json
+++ b/assets/themes/guideposts/guideposts.json
@@ -8,7 +8,8 @@
"pl": "Drogowskazy",
"ca": "Pal guia",
"ru": "Указатели",
- "uk": "Вказівники"
+ "uk": "Вказівники",
+ "nl": "Wegwijzers"
},
"description": {
"en": "Guideposts (also known as fingerposts or finger posts) are often found along official hiking, cycling, skiing or horseback riding routes to indicate the directions to different destinations. Additionally, they are often named after a region or place and show the altitude.\n\nThe position of a signpost can be used by a hiker/biker/rider/skier as a confirmation of the current position, especially if they use a printed map without a GPS receiver. ",
@@ -16,7 +17,8 @@
"de": "Wegweiser an offiziellen Wander-, Rad-, Ski- oder Reitstrecken, um Richtungen zu verschiedenen Zielen anzuzeigen. Sie sind oft nach einer Region oder einem Ort benannt und zeigen die Höhe an.\n\nDie Position eines Wegweisers kann von Wanderern, Radfahrern, Reitern oder Skifahrern als Bestätigung der aktuellen Position genutzt werden, insbesondere wenn sie eine gedruckte Karte ohne GPS-Empfänger verwenden. ",
"es": "Los postes indicadores (también conocidos como señalización o \"fingerposts\") suelen encontrarse a lo largo de rutas oficiales de senderismo, ciclismo, esquí o equitación para indicar las direcciones a diferentes destinos. Además, a menudo llevan el nombre de una región o lugar y muestran la altitud.\n\nLa posición de un poste indicador puede ser utilizada por un excursionista/ciclista/jinete/esquiador como confirmación de la posición actual, especialmente si utiliza un mapa impreso sin un receptor GPS. ",
"pl": "Drogowskazy (znane również jako \"palce na słupkach\") często znajdują się wzdłuż oficjalnych szlaków pieszych, rowerowych, narciarskich lub konnych i wskazują drogę do różnych miejsc. Ponadto często noszą nazwy regionu lub miejsca i wskazują wysokość.\n\nPozycja drogowskazu może być wykorzystana przez turystę/rowerzystę/jeźdźca/narciarza jako potwierdzenie aktualnej pozycji, zwłaszcza jeśli korzysta z drukowanej mapy bez odbiornika GPS. ",
- "uk": "Орієнтири (також відомі як вказівні стовпчики) часто зустрічаються вздовж офіційних пішохідних, велосипедних, лижних або кінних маршрутів, щоб вказати напрямок до різних пунктів призначення. Крім того, вони часто названі на честь регіону або місця і показують висоту над рівнем моря.\n\nПоложення вказівника може використовуватися пішоходом/велосипедистом/вершником/лижником як підтвердження поточного положення, особливо якщо він користується друкованою картою без GPS-приймача. "
+ "uk": "Орієнтири (також відомі як вказівні стовпчики) часто зустрічаються вздовж офіційних пішохідних, велосипедних, лижних або кінних маршрутів, щоб вказати напрямок до різних пунктів призначення. Крім того, вони часто названі на честь регіону або місця і показують висоту над рівнем моря.\n\nПоложення вказівника може використовуватися пішоходом/велосипедистом/вершником/лижником як підтвердження поточного положення, особливо якщо він користується друкованою картою без GPS-приймача. ",
+ "nl": "Wegwijzers (ook wel handwijzer genoemd) zijn vaak te vinden langs officiële wandel-, fiets-, ski- of paardrijroutes om de richtingen naar verschillende bestemmingen aan te geven. Vaak zijn ze vernoemd naar een regio of plaats en geven ze de hoogte aan.\n\nDe positie van een wegwijzer kan door een wandelaar/fietser/renner/skiër worden gebruikt als bevestiging van de huidige positie, vooral als ze een gedrukte kaart zonder GPS-ontvanger gebruiken. "
},
"icon": "./assets/layers/guidepost/guidepost.svg",
"layers": [
diff --git a/assets/themes/icecream/icecream.json b/assets/themes/icecream/icecream.json
index 264acbe1eb..ac850858fe 100644
--- a/assets/themes/icecream/icecream.json
+++ b/assets/themes/icecream/icecream.json
@@ -10,7 +10,9 @@
"it": "Gelato",
"ru": "Мороженое",
"hu": "Fagylalt",
- "uk": "Морозиво"
+ "uk": "Морозиво",
+ "fr": "Glace",
+ "nl": "IJs"
},
"description": {
"en": "A map showing ice cream parlors and ice cream vending machines",
@@ -18,7 +20,8 @@
"cs": "Mapa zobrazující prodej zmrzliny a automaty na zmrzlinu",
"ca": "Un mapa que mostra les gelateries i les màquines expenedores de gelats",
"es": "Un mapa que muestra heladerías y máquinas expendedoras de helados",
- "it": "Una mappa che mostra le gelaterie e i distributori automatici di gelato"
+ "it": "Una mappa che mostra le gelaterie e i distributori automatici di gelato",
+ "nl": "Een kaart met ijssalons en ijsautomaten"
},
"icon": "./assets/layers/ice_cream/ice_cream.svg",
"layers": [
diff --git a/assets/themes/insects/insects.json b/assets/themes/insects/insects.json
new file mode 100644
index 0000000000..4612c84e0b
--- /dev/null
+++ b/assets/themes/insects/insects.json
@@ -0,0 +1,16 @@
+{
+ "id": "insects",
+ "title": {
+ "en": "Insect Hotels",
+ "nl": "Insectenhotels"
+ },
+ "description": {
+ "en": "Insect hotels provide shelter for insects.",
+ "nl": "Insectenhotels bieden onderdak aan insecten."
+ },
+ "icon": "./assets/layers/insect_hotel/insect_hotel.svg",
+ "layers": [
+ "insect_hotel",
+ "beehive"
+ ]
+}
\ No newline at end of file
diff --git a/assets/themes/items_with_image/items_with_image.json b/assets/themes/items_with_image/items_with_image.json
index fa9445ba48..01921e63ca 100644
--- a/assets/themes/items_with_image/items_with_image.json
+++ b/assets/themes/items_with_image/items_with_image.json
@@ -5,13 +5,15 @@
"de": "Alle Elemente mit Bildern",
"es": "Todos los elementos con imágenes",
"cs": "Všechny položky s obrázky",
- "hu": "Minden képpel rendelkező térképobjektum"
+ "hu": "Minden képpel rendelkező térképobjektum",
+ "nl": "Alle items met afbeeldingen"
},
"description": {
"en": "A map showing all items on OSM which have an image. This theme is a very bad fit for MapComplete as someone is not able to directly add a picture. However, this theme is mostly here to include this all into the database, which'll allow this to quickly fetch images nearby for other features",
"de": "Eine Karte, die alle Objekte auf OSM zeigt, die ein Bild haben. Dieses Thema ist sehr schlecht für MapComplete geeignet, da man nicht direkt ein Bild hinzufügen kann. Dieses Thema ist jedoch hauptsächlich dazu da, um alles in die Datenbank aufzunehmen, was es ermöglicht, Bilder in der Nähe für andere Funktionen schnell zu finden",
"es": "Un mapa que muestra todos los elementos en OSM que tienen una imagen. Este tema no es adecuado para MapComplete, ya que no se puede agregar una imagen directamente. Sin embargo, este tema está aquí principalmente para incluir todo esto en la base de datos, lo que permitirá obtener rápidamente imágenes cercanas para otras funciones",
- "cs": "Mapa zobrazující všechny položky v OSM, které mají obrázek. Toto téma je pro MapComplete velmi nevhodné, protože někdo nemůže přímo přidat obrázek. Nicméně toto téma je zde hlavně proto, aby to vše zahrnovalo do databáze, což umožní rychle načítat obrázky v okolí pro další funkce"
+ "cs": "Mapa zobrazující všechny položky v OSM, které mají obrázek. Toto téma je pro MapComplete velmi nevhodné, protože někdo nemůže přímo přidat obrázek. Nicméně toto téma je zde hlavně proto, aby to vše zahrnovalo do databáze, což umožní rychle načítat obrázky v okolí pro další funkce",
+ "nl": "Een kaart die alle items op OSM toont die een afbeelding hebben. Dit thema past heel slecht bij MapComplete omdat het niet mogelijk is een afbeelding toe te voegen. Dit thema is er vooral om alles in de database op te nemen, waardoor het snel afbeeldingen in de buurt kan ophalen voor andere functies"
},
"icon": "./assets/layers/item_with_image/camera.svg",
"hideFromOverview": true,
diff --git a/assets/themes/lactosefree/lactosefree.json b/assets/themes/lactosefree/lactosefree.json
index 5453819cfb..d09cc3f5ae 100644
--- a/assets/themes/lactosefree/lactosefree.json
+++ b/assets/themes/lactosefree/lactosefree.json
@@ -7,7 +7,8 @@
"ca": "Botigues i restaurants amb productes sense lactosa",
"cs": "Bezlaktózové obchody a restaurace",
"hu": "Laktózmentes boltok és éttermek",
- "uk": "Магазини та ресторани без лактози"
+ "uk": "Магазини та ресторани без лактози",
+ "nl": "Lactosevrije winkels en restaurants"
},
"description": {
"en": "A crowdsourced map with lactose free shops and restaurants",
@@ -15,7 +16,8 @@
"es": "Un mapa colaborativo con tiendas y restaurantes sin lactosa",
"ca": "Un mapa col·lectiu amb botigues i restaurants sense lactosa",
"cs": "Mapa bezlaktózových obchodů a restaurací vytvořená crowdsourcingem",
- "uk": "Колективна мапа з магазинами та ресторанами з безлактозними продуктами"
+ "uk": "Колективна мапа з магазинами та ресторанами з безлактозними продуктами",
+ "nl": "Een gecrowdsourcete kaart met lactosevrije winkels en restaurants"
},
"icon": "./assets/layers/questions/lactose_free.svg",
"layers": [
diff --git a/assets/themes/lighthouses/lighthouses.json b/assets/themes/lighthouses/lighthouses.json
index 7d6a934bdb..d4ca190e54 100644
--- a/assets/themes/lighthouses/lighthouses.json
+++ b/assets/themes/lighthouses/lighthouses.json
@@ -9,7 +9,9 @@
"ca": "Fars",
"cs": "Majáky",
"hu": "Világítótornyok",
- "uk": "Маяки"
+ "uk": "Маяки",
+ "fr": "Phares",
+ "nl": "Vuurtorens"
},
"description": {
"en": "Lighthouses are tall buildings with a light on top to guide marine traffic.",
@@ -17,7 +19,9 @@
"it": "I fari sono edifici alti con una luce in cima per guidare il traffico marittimo.",
"es": "Los faros son edificios altos con una luz en la parte superior para guiar el tráfico marítimo.",
"cs": "Majáky jsou vysoké budovy se světlem na vrcholu, které slouží k vedení námořní dopravy.",
- "uk": "Маяки - це високі будівлі зі світлом на вершині, що спрямовують морський рух."
+ "uk": "Маяки - це високі будівлі зі світлом на вершині, що спрямовують морський рух.",
+ "fr": "Les phares sont des hauts bâtiments avec une lumière au sommet pour guider le trafic maritime.",
+ "nl": "Vuurtorens zijn hoge gebouwen met een licht erop om het scheepvaartverkeer te leiden."
},
"icon": "./assets/themes/lighthouses/lighthouse.svg",
"startLat": 51.33884,
diff --git a/assets/themes/mapcomplete-changes/mapcomplete-changes.json b/assets/themes/mapcomplete-changes/mapcomplete-changes.json
index 7011f4506a..f064647058 100644
--- a/assets/themes/mapcomplete-changes/mapcomplete-changes.json
+++ b/assets/themes/mapcomplete-changes/mapcomplete-changes.json
@@ -4,20 +4,26 @@
"en": "Changes made with MapComplete",
"de": "Änderungen mit MapComplete",
"cs": "Změny provedené pomocí MapComplete",
- "es": "Cambios realizados con MapComplete"
+ "es": "Cambios realizados con MapComplete",
+ "fr": "Modifications faites avec MapComplete",
+ "nl": "Wijzigingen gemaakt met MapComplete"
},
"shortDescription": {
"en": "Shows changes made by MapComplete",
"de": "Zeigt die von MapComplete vorgenommenen Änderungen an",
"cs": "Zobrazuje změny provedené nástrojem MapComplete",
- "es": "Muestra los cambios realizados por MapComplete"
+ "es": "Muestra los cambios realizados por MapComplete",
+ "fr": "Afficher les modifications faites avec MapComplete",
+ "nl": "Toont wijzigingen gemaakt met MapComplete"
},
"description": {
"en": "This maps shows all the changes made with MapComplete",
"de": "Diese Karte zeigt alle mit MapComplete vorgenommenen Änderungen",
"es": "Este mapa muestra todos los cambios realizados con MapComplete",
"pl": "Ta mapa pokazuje wszystkie zmiany wprowadzone za pomocą MapComplete",
- "cs": "Tyto mapy zobrazují všechny změny provedené pomocí MapComplete"
+ "cs": "Tyto mapy zobrazují všechny změny provedené pomocí MapComplete",
+ "fr": "Cette carte montre tous les changements effectués avec MapComplete",
+ "nl": "Deze kaarten tonen alle wijzigingen die zijn gemaakt met MapComplete"
},
"icon": "./assets/svg/logo.svg",
"hideFromOverview": true,
@@ -30,7 +36,10 @@
"name": {
"en": "Changeset centers",
"de": "Changeset-Zentren",
- "es": "Centro del conjunto de cambios"
+ "es": "Centros de conjuntos de cambios",
+ "fr": "Centre du groupe de modifications",
+ "nl": "Changeset centra",
+ "cs": "Changeset centra"
},
"minzoom": 0,
"source": {
@@ -43,14 +52,16 @@
"en": "Changeset for {theme}",
"de": "Änderungssatz für {theme}",
"cs": "Sada změn pro {theme}",
- "es": "Conjunto de cambios para {theme}"
+ "es": "Conjunto de cambios para {theme}",
+ "nl": "Changeset voor {theme}"
}
},
"description": {
"en": "Shows all MapComplete changes",
"de": "Zeigt alle MapComplete-Änderungen",
"es": "Muestra todos los cambios de MapComplete",
- "cs": "Zobrazí všechny změny MapComplete"
+ "cs": "Zobrazí všechny změny MapComplete",
+ "nl": "Toon alle MapComplete-wijzigingen"
},
"tagRenderings": [
{
@@ -59,7 +70,8 @@
"en": "Changeset {id}",
"de": "Änderungssatz {id}",
"cs": "Sada změn {id}",
- "es": "Conjunto de cambios {id}"
+ "es": "Conjunto de cambios {id}",
+ "nl": "Changeset {id}"
}
},
{
@@ -68,7 +80,8 @@
"en": "What contributor did make this change?",
"de": "Wer hat zu dieser Änderung beigetragen?",
"cs": "Který přispěvatel provedl tuto změnu?",
- "es": "¿Qué colaborador realizó este cambio?"
+ "es": "¿Qué colaborador realizó este cambio?",
+ "nl": "Welke bijdrager maakte deze verandering?"
},
"freeform": {
"key": "user"
@@ -77,7 +90,9 @@
"en": "Change made by {user}",
"de": "Änderung vorgenommen von {user}",
"cs": "Změna provedena uživatelem {user}",
- "es": "Cambio realizado por {user}"
+ "es": "Cambio realizado por {user}",
+ "fr": "Modification faite par {user}",
+ "nl": "Wijziging aangebracht door {user}"
}
},
{
@@ -86,7 +101,8 @@
"en": "What theme was used to make this change?",
"de": "Welches Thema wurde für diese Änderung verwendet?",
"cs": "Jaký motiv byl použit k provedení této změny?",
- "es": "¿Qué tema se utilizó para hacer este cambio?"
+ "es": "¿Qué tema se utilizó para realizar este cambio?",
+ "nl": "Welk thema werd gebruikt voor deze wijziging?"
},
"freeform": {
"key": "theme"
@@ -94,7 +110,9 @@
"render": {
"en": "Change with theme {theme}",
"de": "Änderung mit Thema {theme}",
- "es": "Cambiar con el tema {theme}"
+ "es": "Cambio con el tema {theme}",
+ "nl": "Verander met thema {theme}",
+ "cs": "Změna pomocí tématu {theme}"
}
},
{
@@ -106,13 +124,15 @@
"en": "What locale (language) was this change made in?",
"de": "In welcher Sprache (Locale) wurde diese Änderung vorgenommen?",
"cs": "V jakém prostředí (jazyce) byla tato změna provedena?",
- "es": "¿En qué idioma (ubicación) se realizó este cambio?"
+ "es": "¿En qué configuración regional (idioma) se realizó este cambio?",
+ "nl": "In welke 'locale' (taal) is deze wijziging gemaakt?"
},
"render": {
"en": "User locale is {locale}",
"de": "Die Benutzersprache ist {locale}",
"cs": "Uživatelské prostředí je {locale}",
- "es": "La configuración local del usuario es {locale}"
+ "es": "Configuración regional del usuario es {locale}",
+ "nl": "De gebruikerstaal (locale) is {locale}"
}
},
{
@@ -121,13 +141,15 @@
"en": "Change with with {host}",
"de": "Änderung mit {host}",
"cs": "Změnit pomocí {host}",
- "es": "Cambiado con {host}"
+ "es": "Cambio realizado con {host}",
+ "nl": "Gewijzigd met {host}"
},
"question": {
"en": "What host (website) was this change made with?",
"de": "Bei welchem Host (Website) wurde diese Änderung vorgenommen?",
"cs": "U jakého hostitele (webové stránky) byla tato změna provedena?",
- "es": "¿Con qué host (página web) se hizo este cambio?"
+ "es": "¿Con qué anfitrión (sitio web) se realizó este cambio?",
+ "nl": "Met welke host (website) is deze wijziging gemaakt?"
},
"freeform": {
"key": "host"
@@ -151,13 +173,17 @@
"en": "What version of MapComplete was used to make this change?",
"de": "Welche Version von MapComplete wurde verwendet, um diese Änderung vorzunehmen?",
"cs": "Jaká verze aplikace MapComplete byla použita k provedení této změny?",
- "es": "¿Qué versión de MapComplete se utilizó para hacer este cambio?"
+ "es": "¿Qué versión de MapComplete se utilizó para realizar este cambio?",
+ "fr": "Quelle version de MapCompletee a été utilisée pour faire cette modification ?",
+ "nl": "Welke versie van MapComplete is gebruikt voor deze wijziging?"
},
"render": {
"en": "Made with {editor}",
"de": "Erstellt mit {editor}",
"cs": "Vytvořeno pomocí {editor}",
- "es": "Hecho con {editor}"
+ "es": "Hecho con {editor}",
+ "fr": "Fait avec {editor}",
+ "nl": "Gemaakt met {editor}"
},
"freeform": {
"key": "editor"
@@ -351,6 +377,10 @@
"if": "theme=indoors",
"then": "./assets/layers/entrance/entrance.svg"
},
+ {
+ "if": "theme=insects",
+ "then": "./assets/layers/insect_hotel/insect_hotel.svg"
+ },
{
"if": "theme=items_with_image",
"then": "./assets/layers/item_with_image/camera.svg"
@@ -557,9 +587,11 @@
"question": {
"en": "Themename contains {search}",
"de": "Themenname enthält {search}",
- "es": "El nombre contiene {search}",
+ "es": "El nombre del tema contiene {search}",
"pl": "Nazwa tematu zawiera {search}",
- "cs": "Název obsahuje {search}"
+ "cs": "Název obsahuje {search}",
+ "fr": "Le nom du thème contient {search}",
+ "nl": "Themanaam bevat {search}"
}
}
]
@@ -578,7 +610,9 @@
"en": "Themename does not contain {search}",
"de": "Themename enthält nicht {search}",
"es": "El nombre del tema no contiene {search}",
- "cs": "Název motivu neobsahuje {search}"
+ "cs": "Název motivu neobsahuje {search}",
+ "fr": "Le nom du thème ne contient pas {search}",
+ "nl": "Themanaam bevat geen {search}"
}
}
]
@@ -597,7 +631,9 @@
"en": "Made by contributor {search}",
"de": "Erstellt von Mitwirkendem {search}",
"es": "Hecho por el colaborador {search}",
- "cs": "Vytvořeno přispěvatelem {search}"
+ "cs": "Vytvořeno přispěvatelem {search}",
+ "fr": "Fait par le·a contributeur·trice {search}",
+ "nl": "Toegevoegd door {search}"
}
}
]
@@ -615,8 +651,10 @@
"question": {
"en": "Not made by contributor {search}",
"de": "Nicht erstellt von Mitwirkendem {search}",
- "es": "No realizado por el colaborador {search}",
- "cs": "Nevytvořeno přispěvatelem {search}"
+ "es": "No hecho por el colaborador {search}",
+ "cs": "Nevytvořeno přispěvatelem {search}",
+ "fr": "Pas fait par le·a contributeur·trice {search}",
+ "nl": "Niet toegevoegd door {search}"
}
}
]
@@ -635,8 +673,10 @@
"question": {
"en": "Made before {search}",
"de": "Erstellt vor {search}",
- "es": "Realizado antes de {search}",
- "cs": "Vytvořeno před {search}"
+ "es": "Hecho antes de {search}",
+ "cs": "Vytvořeno před {search}",
+ "fr": "Fait avant {search}",
+ "nl": "Toegevoegd vóór {search}"
}
}
]
@@ -655,8 +695,10 @@
"question": {
"en": "Made after {search}",
"de": "Erstellt nach {search}",
- "es": "Realizado después de {search}",
- "cs": "Vytvořeno po {search}"
+ "es": "Hecho después de {search}",
+ "cs": "Vytvořeno po {search}",
+ "fr": "Fait après {search}",
+ "nl": "Toegevoegd na {search}"
}
}
]
@@ -674,8 +716,10 @@
"question": {
"en": "User language (iso-code) {search}",
"de": "Benutzersprache (ISO-Code) {search}",
- "es": "Idioma del usuario (código iso) {search}",
- "cs": "Jazyk uživatele (iso-kód) {search}"
+ "es": "Idioma del usuario (código ISO) {search}",
+ "cs": "Jazyk uživatele (iso-kód) {search}",
+ "fr": "Langage utilisateur (code iso) {search}",
+ "nl": "Gebruikerstaal (iso-code) {search}"
}
}
]
@@ -694,7 +738,8 @@
"en": "Made with host {search}",
"de": "Erstellt mit Host {search}",
"cs": "Vytvořeno pomocí hostitele {search}",
- "es": "Hecho con host {search}"
+ "es": "Hecho con el anfitrión {search}",
+ "nl": "Gemaakt met {search}"
}
}
]
@@ -708,7 +753,8 @@
"en": "Changeset added at least one image",
"de": "Changeset hat mindestens ein Bild hinzugefügt",
"cs": "Sada změn přidala alespoň jeden obrázek",
- "es": "El conjunto de cambios ha añadido al menos una imagen"
+ "es": "El conjunto de cambios agregó al menos una imagen",
+ "nl": "Changeset voegde minstens één afbeelding toe"
}
}
]
@@ -722,7 +768,8 @@
"en": "Exclude GRB theme",
"de": "GRB-Thema ausschließen",
"cs": "Vyloučit motiv GRB",
- "es": "Excluir tema GRB"
+ "es": "Excluir el tema GRB",
+ "nl": "GRB-thema uitsluiten"
}
}
]
@@ -735,8 +782,9 @@
"question": {
"en": "Exclude etymology theme",
"de": "Etymologie-Thema ausschließen",
- "es": "Excluir el tema de la etimología",
- "cs": "Vyloučit etymologii tématu"
+ "es": "Excluir el tema de etimología",
+ "cs": "Vyloučit etymologii tématu",
+ "nl": "Thema etymologie uitsluiten"
}
}
]
@@ -754,7 +802,9 @@
"en": "More statistics can be found here",
"de": "Weitere Statistiken findest du hier",
"cs": "Další statistiky najdete zde",
- "es": "Se pueden encontrar más estadísticas aquí"
+ "es": "Puedes encontrar más estadísticas aquí",
+ "fr": "Plus de statistiques peuvent être trouvées ici",
+ "nl": "Meer statistieken vind je hier"
}
},
{
diff --git a/assets/themes/mapcomplete-changes/mapcomplete-changes.proto.json b/assets/themes/mapcomplete-changes/mapcomplete-changes.proto.json
index 954e6eb63d..acfec3ff12 100644
--- a/assets/themes/mapcomplete-changes/mapcomplete-changes.proto.json
+++ b/assets/themes/mapcomplete-changes/mapcomplete-changes.proto.json
@@ -4,20 +4,26 @@
"en": "Changes made with MapComplete",
"de": "Änderungen mit MapComplete",
"cs": "Změny provedené pomocí MapComplete",
- "es": "Cambios realizados con MapComplete"
+ "es": "Cambios realizados con MapComplete",
+ "fr": "Modifications faites avec MapComplete",
+ "nl": "Wijzigingen gemaakt met MapComplete"
},
"shortDescription": {
"en": "Shows changes made by MapComplete",
"de": "Zeigt die von MapComplete vorgenommenen Änderungen an",
"cs": "Zobrazuje změny provedené nástrojem MapComplete",
- "es": "Muestra los cambios realizados por MapComplete"
+ "es": "Muestra los cambios realizados por MapComplete",
+ "fr": "Afficher les modifications faites avec MapComplete",
+ "nl": "Toont wijzigingen gemaakt met MapComplete"
},
"description": {
"en": "This maps shows all the changes made with MapComplete",
"de": "Diese Karte zeigt alle mit MapComplete vorgenommenen Änderungen",
"es": "Este mapa muestra todos los cambios realizados con MapComplete",
"pl": "Ta mapa pokazuje wszystkie zmiany wprowadzone za pomocą MapComplete",
- "cs": "Tyto mapy zobrazují všechny změny provedené pomocí MapComplete"
+ "cs": "Tyto mapy zobrazují všechny změny provedené pomocí MapComplete",
+ "fr": "Cette carte montre tous les changements effectués avec MapComplete",
+ "nl": "Deze kaarten tonen alle wijzigingen die zijn gemaakt met MapComplete"
},
"icon": "./assets/svg/logo.svg",
"hideFromOverview": true,
@@ -30,7 +36,10 @@
"name": {
"en": "Changeset centers",
"de": "Changeset-Zentren",
- "es": "Centros de conjuntos de cambios"
+ "es": "Centros de conjuntos de cambios",
+ "fr": "Centre du groupe de modifications",
+ "nl": "Changeset centra",
+ "cs": "Changeset centra"
},
"minzoom": 0,
"source": {
@@ -43,14 +52,16 @@
"en": "Changeset for {theme}",
"de": "Änderungssatz für {theme}",
"cs": "Sada změn pro {theme}",
- "es": "Conjunto de cambios para {theme}"
+ "es": "Conjunto de cambios para {theme}",
+ "nl": "Changeset voor {theme}"
}
},
"description": {
"en": "Shows all MapComplete changes",
"de": "Zeigt alle MapComplete-Änderungen",
"es": "Muestra todos los cambios de MapComplete",
- "cs": "Zobrazí všechny změny MapComplete"
+ "cs": "Zobrazí všechny změny MapComplete",
+ "nl": "Toon alle MapComplete-wijzigingen"
},
"tagRenderings": [
{
@@ -59,7 +70,8 @@
"en": "Changeset {id}",
"de": "Änderungssatz {id}",
"cs": "Sada změn {id}",
- "es": "Conjunto de cambios {id}"
+ "es": "Conjunto de cambios {id}",
+ "nl": "Changeset {id}"
}
},
{
@@ -68,7 +80,8 @@
"en": "What contributor did make this change?",
"de": "Wer hat zu dieser Änderung beigetragen?",
"cs": "Který přispěvatel provedl tuto změnu?",
- "es": "¿Qué colaborador realizó este cambio?"
+ "es": "¿Qué colaborador realizó este cambio?",
+ "nl": "Welke bijdrager maakte deze verandering?"
},
"freeform": {
"key": "user"
@@ -77,7 +90,9 @@
"en": "Change made by {user}",
"de": "Änderung vorgenommen von {user}",
"cs": "Změna provedena uživatelem {user}",
- "es": "Cambio realizado por {user}"
+ "es": "Cambio realizado por {user}",
+ "fr": "Modification faite par {user}",
+ "nl": "Wijziging aangebracht door {user}"
}
},
{
@@ -86,7 +101,8 @@
"en": "What theme was used to make this change?",
"de": "Welches Thema wurde für diese Änderung verwendet?",
"cs": "Jaký motiv byl použit k provedení této změny?",
- "es": "¿Qué tema se utilizó para realizar este cambio?"
+ "es": "¿Qué tema se utilizó para realizar este cambio?",
+ "nl": "Welk thema werd gebruikt voor deze wijziging?"
},
"freeform": {
"key": "theme"
@@ -94,7 +110,9 @@
"render": {
"en": "Change with theme {theme}",
"de": "Änderung mit Thema {theme}",
- "es": "Cambio con el tema {theme}"
+ "es": "Cambio con el tema {theme}",
+ "nl": "Verander met thema {theme}",
+ "cs": "Změna pomocí tématu {theme}"
}
},
{
@@ -106,13 +124,15 @@
"en": "What locale (language) was this change made in?",
"de": "In welcher Sprache (Locale) wurde diese Änderung vorgenommen?",
"cs": "V jakém prostředí (jazyce) byla tato změna provedena?",
- "es": "¿En qué configuración regional (idioma) se realizó este cambio?"
+ "es": "¿En qué configuración regional (idioma) se realizó este cambio?",
+ "nl": "In welke 'locale' (taal) is deze wijziging gemaakt?"
},
"render": {
"en": "User locale is {locale}",
"de": "Die Benutzersprache ist {locale}",
"cs": "Uživatelské prostředí je {locale}",
- "es": "Configuración regional del usuario es {locale}"
+ "es": "Configuración regional del usuario es {locale}",
+ "nl": "De gebruikerstaal (locale) is {locale}"
}
},
{
@@ -121,13 +141,15 @@
"en": "Change with with {host}",
"de": "Änderung mit {host}",
"cs": "Změnit pomocí {host}",
- "es": "Cambio realizado con {host}"
+ "es": "Cambio realizado con {host}",
+ "nl": "Gewijzigd met {host}"
},
"question": {
"en": "What host (website) was this change made with?",
"de": "Bei welchem Host (Website) wurde diese Änderung vorgenommen?",
"cs": "U jakého hostitele (webové stránky) byla tato změna provedena?",
- "es": "¿Con qué anfitrión (sitio web) se realizó este cambio?"
+ "es": "¿Con qué anfitrión (sitio web) se realizó este cambio?",
+ "nl": "Met welke host (website) is deze wijziging gemaakt?"
},
"freeform": {
"key": "host"
@@ -151,13 +173,17 @@
"en": "What version of MapComplete was used to make this change?",
"de": "Welche Version von MapComplete wurde verwendet, um diese Änderung vorzunehmen?",
"cs": "Jaká verze aplikace MapComplete byla použita k provedení této změny?",
- "es": "¿Qué versión de MapComplete se utilizó para realizar este cambio?"
+ "es": "¿Qué versión de MapComplete se utilizó para realizar este cambio?",
+ "fr": "Quelle version de MapCompletee a été utilisée pour faire cette modification ?",
+ "nl": "Welke versie van MapComplete is gebruikt voor deze wijziging?"
},
"render": {
"en": "Made with {editor}",
"de": "Erstellt mit {editor}",
"cs": "Vytvořeno pomocí {editor}",
- "es": "Hecho con {editor}"
+ "es": "Hecho con {editor}",
+ "fr": "Fait avec {editor}",
+ "nl": "Gemaakt met {editor}"
},
"freeform": {
"key": "editor"
@@ -197,7 +223,9 @@
"de": "Themenname enthält {search}",
"es": "El nombre del tema contiene {search}",
"pl": "Nazwa tematu zawiera {search}",
- "cs": "Název obsahuje {search}"
+ "cs": "Název obsahuje {search}",
+ "fr": "Le nom du thème contient {search}",
+ "nl": "Themanaam bevat {search}"
}
}
]
@@ -216,7 +244,9 @@
"en": "Themename does not contain {search}",
"de": "Themename enthält nicht {search}",
"es": "El nombre del tema no contiene {search}",
- "cs": "Název motivu neobsahuje {search}"
+ "cs": "Název motivu neobsahuje {search}",
+ "fr": "Le nom du thème ne contient pas {search}",
+ "nl": "Themanaam bevat geen {search}"
}
}
]
@@ -235,7 +265,9 @@
"en": "Made by contributor {search}",
"de": "Erstellt von Mitwirkendem {search}",
"es": "Hecho por el colaborador {search}",
- "cs": "Vytvořeno přispěvatelem {search}"
+ "cs": "Vytvořeno přispěvatelem {search}",
+ "fr": "Fait par le·a contributeur·trice {search}",
+ "nl": "Toegevoegd door {search}"
}
}
]
@@ -254,7 +286,9 @@
"en": "Not made by contributor {search}",
"de": "Nicht erstellt von Mitwirkendem {search}",
"es": "No hecho por el colaborador {search}",
- "cs": "Nevytvořeno přispěvatelem {search}"
+ "cs": "Nevytvořeno přispěvatelem {search}",
+ "fr": "Pas fait par le·a contributeur·trice {search}",
+ "nl": "Niet toegevoegd door {search}"
}
}
]
@@ -274,7 +308,9 @@
"en": "Made before {search}",
"de": "Erstellt vor {search}",
"es": "Hecho antes de {search}",
- "cs": "Vytvořeno před {search}"
+ "cs": "Vytvořeno před {search}",
+ "fr": "Fait avant {search}",
+ "nl": "Toegevoegd vóór {search}"
}
}
]
@@ -294,7 +330,9 @@
"en": "Made after {search}",
"de": "Erstellt nach {search}",
"es": "Hecho después de {search}",
- "cs": "Vytvořeno po {search}"
+ "cs": "Vytvořeno po {search}",
+ "fr": "Fait après {search}",
+ "nl": "Toegevoegd na {search}"
}
}
]
@@ -313,7 +351,9 @@
"en": "User language (iso-code) {search}",
"de": "Benutzersprache (ISO-Code) {search}",
"es": "Idioma del usuario (código ISO) {search}",
- "cs": "Jazyk uživatele (iso-kód) {search}"
+ "cs": "Jazyk uživatele (iso-kód) {search}",
+ "fr": "Langage utilisateur (code iso) {search}",
+ "nl": "Gebruikerstaal (iso-code) {search}"
}
}
]
@@ -332,7 +372,8 @@
"en": "Made with host {search}",
"de": "Erstellt mit Host {search}",
"cs": "Vytvořeno pomocí hostitele {search}",
- "es": "Hecho con el anfitrión {search}"
+ "es": "Hecho con el anfitrión {search}",
+ "nl": "Gemaakt met {search}"
}
}
]
@@ -346,7 +387,8 @@
"en": "Changeset added at least one image",
"de": "Changeset hat mindestens ein Bild hinzugefügt",
"cs": "Sada změn přidala alespoň jeden obrázek",
- "es": "El conjunto de cambios agregó al menos una imagen"
+ "es": "El conjunto de cambios agregó al menos una imagen",
+ "nl": "Changeset voegde minstens één afbeelding toe"
}
}
]
@@ -360,7 +402,8 @@
"en": "Exclude GRB theme",
"de": "GRB-Thema ausschließen",
"cs": "Vyloučit motiv GRB",
- "es": "Excluir el tema GRB"
+ "es": "Excluir el tema GRB",
+ "nl": "GRB-thema uitsluiten"
}
}
]
@@ -374,7 +417,8 @@
"en": "Exclude etymology theme",
"de": "Etymologie-Thema ausschließen",
"es": "Excluir el tema de etimología",
- "cs": "Vyloučit etymologii tématu"
+ "cs": "Vyloučit etymologii tématu",
+ "nl": "Thema etymologie uitsluiten"
}
}
]
@@ -392,7 +436,9 @@
"en": "More statistics can be found here",
"de": "Weitere Statistiken findest du hier",
"cs": "Další statistiky najdete zde",
- "es": "Puedes encontrar más estadísticas aquí"
+ "es": "Puedes encontrar más estadísticas aquí",
+ "fr": "Plus de statistiques peuvent être trouvées ici",
+ "nl": "Meer statistieken vind je hier"
}
},
{
diff --git a/assets/themes/maproulette/maproulette.json b/assets/themes/maproulette/maproulette.json
index 03ba82f4cc..89d1806a78 100644
--- a/assets/themes/maproulette/maproulette.json
+++ b/assets/themes/maproulette/maproulette.json
@@ -19,7 +19,7 @@
"de": "Thema mit MapRoulette-Aufgaben, die Sie suchen, filtern und beheben können.",
"fr": "Thème MapRoulette permettant d’afficher, rechercher, filtrer et résoudre les tâches.",
"da": "Tema, der viser MapRoulette-opgaver, så du kan søge, filtrere og rette dem.",
- "nl": "Thema met MapRoulette taken, waar je ze kunt zoeken, filteren en ze oplossen.",
+ "nl": "Thema met MapRoulette taken, waar je ze kunt zoeken, filteren en oplossen.",
"es": "Tema que muestra las tareas de MapRoulette, permitiéndote buscarlas, filtrarlas y solucionarlas.",
"cs": "Téma zobrazující úkoly MapRoulette, které umožňuje vyhledávat, filtrovat a opravovat je.",
"ca": "Tema que mostra les tasques de MapRoulette, que us permet cercar-les, filtrar-les i solucionar-les.",
diff --git a/assets/themes/maps/maps.json b/assets/themes/maps/maps.json
index d09b49cfc5..3c0295e3a2 100644
--- a/assets/themes/maps/maps.json
+++ b/assets/themes/maps/maps.json
@@ -51,7 +51,11 @@
"icon": "./assets/themes/maps/logo.svg",
"defaultBackgroundId": "protomaps.white",
"layers": [
- "map"
+ "map",
+ "tactile_map",
+ "tactile_model"
],
- "widenFactor": 5
+ "overrideAll": {
+ "minzoom": 11
+ }
}
diff --git a/assets/themes/maxspeed/maxspeed.json b/assets/themes/maxspeed/maxspeed.json
index 9428bc24c3..c62a674167 100644
--- a/assets/themes/maxspeed/maxspeed.json
+++ b/assets/themes/maxspeed/maxspeed.json
@@ -22,7 +22,7 @@
"de": "Diese Karte zeigt die zulässige Höchstgeschwindigkeit auf jeder Straße. Wenn eine Höchstgeschwindigkeit fehlt oder falsch ist, können Sie dies hier korrigieren.",
"fr": "Cette carte montre la vitesse maximale autorisée sur les routes. Si la vitesse maximale est manquante ou erronée, vous pouvez la corriger ici.",
"da": "Dette kort viser den lovligt tilladte maksimale hastighed på hver vej. Hvis en maxspeed mangler eller er forkert, kan du rette den her.",
- "nl": "Deze kaart toont de maximum toegestane snelheid voor elke weg. Als er een maximumsnelheid mist of niet klopt, kan je hem hier aanpassen.",
+ "nl": "Deze kaart toont de maximum toegestane snelheid voor elke weg. Als er een maximumsnelheid ontbreekt of niet klopt, kan je deze hier aanpassen.",
"cs": "Tato mapa zobrazuje zákonem povolenou maximální rychlost na každé silnici. Pokud maximální rychlost chybí nebo je nesprávná, můžete ji zde opravit.",
"es": "Este mapa muestra la velocidad máxima legalmente permitida en cada carretera. Si falta o está mal una velocidad máxima, puedes corregirla aquí.",
"ca": "Aquest mapa mostra la velocitat màxima permesa legalment a cada carretera. Si falta una velocitat màxima o és incorrecta, podeu corregir-la aquí.",
diff --git a/assets/themes/nature/nature.json b/assets/themes/nature/nature.json
index c6e5d94c49..a24f8f9614 100644
--- a/assets/themes/nature/nature.json
+++ b/assets/themes/nature/nature.json
@@ -63,12 +63,20 @@
"guidepost",
"shelter",
"bbq",
- "firepit"
+ "firepit",
+ "insect_hotel"
],
"override": {
"minzoom": 16
}
+ },
+ {
+ "builtin": "tree_node",
+ "override": {
+ "minzoom": 18,
+ "shownByDefault": false
+ }
}
],
"widenFactor": 2
-}
+}
\ No newline at end of file
diff --git a/assets/themes/onwheels/onwheels.json b/assets/themes/onwheels/onwheels.json
index 26523f2ed7..0d92eead6a 100644
--- a/assets/themes/onwheels/onwheels.json
+++ b/assets/themes/onwheels/onwheels.json
@@ -19,7 +19,7 @@
"en": "On this map, publicly weelchair accessible places are shown and can be easily added",
"de": "Auf dieser Karte können Sie öffentlich zugängliche Orte für Rollstuhlfahrer ansehen, bearbeiten oder hinzufügen",
"fr": "Sur cette carte nous pouvons voir et ajouter les différents endroits publiques accessibles aux chaises roulantes",
- "nl": "Op deze kaart kan je informatie rond rolstoeltoegankelijkheid zien, zoals toegangsdeuren met hun breedte en drempelhoogte, toiletten met toegankelijkheidsinformatie, recepties maar ook winkels, cafés en restaurants.",
+ "nl": "Op deze kaart kan je rolstoeltoegankelijke plaatsen vinden en toevoegen",
"da": "På dette kort vises steder, der er offentligt tilgængelige for kørestolsbrugere, og de kan nemt tilføjes",
"cs": "Na této mapě jsou zobrazena veřejně přístupná místa pro vozíčkáře, a lze je také snadno přidat",
"es": "En este mapa, se muestran y se pueden agregar fácilmente lugares accesibles para sillas de ruedas",
diff --git a/assets/themes/openlovemap/openlovemap.json b/assets/themes/openlovemap/openlovemap.json
index ba51485459..41c26894cd 100644
--- a/assets/themes/openlovemap/openlovemap.json
+++ b/assets/themes/openlovemap/openlovemap.json
@@ -4,14 +4,18 @@
"en": "Open Love Map",
"de": "Open Love Map",
"es": "Open Love Map",
- "cs": "Open Love Map",
- "hu": "Open Love Map - szerelemtérkép"
+ "cs": "Open Love mapa",
+ "hu": "Open Love Map - szerelemtérkép",
+ "fr": "Open Love Map",
+ "nl": "Open Love Kaart"
},
"description": {
"en": "
Hibát találtál, vagy hiányzik egy postaláda? A térképet mindössze egy ingyenes OpenStreetMap-fiókkal szerkesztheted.",
"de": "Auf dieser Karte können Sie Daten von Poststellen und Briefkästen finden und ergänzen. Sie können diese Karte nutzen, um herauszufinden, wo Sie Ihre nächste Postkarte versenden können :)
Haben Sie einen Fehler entdeckt oder fehlt ein Briefkasten? Sie können die Kartenddaten mit einem kostenlosen OpenStreetMap-Konto bearbeiten.",
"es": "En este mapa puedes encontrar y agregar datos de oficinas de correos y buzones. ¡Puedes usar este mapa para encontrar dónde enviar tu próxima postal! :)
¿Viste un error o falta un buzón? Puedes editar este mapa con una cuenta gratuita de OpenStreetMap.",
- "nl": "Op deze kaart kan je informatie over brievenbussen en postkantoren vinden en toevoegen. Je kan deze kaart gebruiken om te achterhalen waar je je volgende postkaart naar kan sturen! :)
Zie je een fout of ontbreekt een brievenbus? Dan kan je deze kaart aanpassen met een gratis OpenStreetMap account. ",
+ "nl": "Op deze kaart kan je informatie over brievenbussen en postkantoren vinden en toevoegen. Je kan deze kaart gebruiken om te achterhalen waar je je volgende postkaart naar kan sturen! :)
Vond je een fout of ontbreekt een brievenbus? Dan kan je deze kaart aanpassen met een gratis OpenStreetMap account.",
"fr": "Trouvez et ajoutez des bureaux de poste et boîtes à lettres sur cette carte. Utilisez cette carte où vous pouvez envoyer vos cartes postales ! :)
Vous avez trouvez une erreur ou une boîte à lettres est manquante ? Vous pouvez modifier cette carte avec un compte OpenStreetMap gratuit.",
"da": "På dette kort kan du finde og tilføje data for posthuse og postkasser. Du kan bruge dette kort til at finde, hvor du kan sende dit næste postkort! :)
Har du fundet en fejl, eller mangler der en postboks? Du kan redigere dette kort med en gratis OpenStreetMap-konto. ",
"ca": "A aquest mapa pots afegir dades d'oficines de correus i bústies de correus. ¡Pots utilitzar aquest mapa per a trobar on pots enviar la teva pròxima postal! :)
Has trobat una errada o algo que falta? Pots editar aquest mapa amb un compte gratuït d'OpenStreetMap.",
@@ -66,7 +66,8 @@
"en": "Add a new post partner to the map in an existing shop",
"de": "Hinzufügen eines neuen Post-Partners auf der Karte in einem bestehenden Geschäft",
"es": "Agregar un nuevo socio postal al mapa en una tienda existente",
- "cs": "Přidání nového poštovního partnera do mapy v existujícím obchodě"
+ "cs": "Přidání nového poštovního partnera do mapy v existujícím obchodě",
+ "nl": "Een nieuwe postpartner toevoegen aan de kaart in een bestaande winkel"
},
"+tagRenderings": [
{
@@ -113,13 +114,15 @@
"en": "a missing shop that is a post partner",
"de": "ein fehlendes Geschäft, das ein Post-Partner ist",
"es": "una tienda que falta y que es un socio postal",
- "cs": "chybějící obchod, který je partnerem pošty"
+ "cs": "chybějící obchod, který je partnerem pošty",
+ "nl": "een ontbrekende winkel die postpartner is"
},
"description": {
"en": "If a shop is not yet on the map and is a post partner, you can add it here.",
"de": "Wenn ein Laden noch nicht auf der Karte ist und ein Post-Partner ist, kannst du ihn hier hinzufügen.",
"es": "Si una tienda aún no está en el mapa y es un socio postal, puedes agregarla aquí.",
- "cs": "Pokud obchod ještě není na mapě a je partnerem pošty, můžete jej přidat zde."
+ "cs": "Pokud obchod ještě není na mapě a je partnerem pošty, můžete jej přidat zde.",
+ "nl": "Als een winkel nog niet op de kaart staat en een postpartner is, kun je deze hier toevoegen."
}
}
]
diff --git a/assets/themes/rainbow_crossings/rainbow_crossings.json b/assets/themes/rainbow_crossings/rainbow_crossings.json
index c276a28cce..12d83ca546 100644
--- a/assets/themes/rainbow_crossings/rainbow_crossings.json
+++ b/assets/themes/rainbow_crossings/rainbow_crossings.json
@@ -20,7 +20,7 @@
"de": "Auf dieser Karte sind Fußgängerüberwege mit Regenbogenfarben eingezeichnet und können leicht hinzugefügt werden",
"fr": "Cette carte affiche et permet la modification des passages cloutés peints aux couleurs de l’arc-en-ciel",
"da": "På dette kort er regnbuemalede fodgængerfelter vist og kan nemt tilføjes",
- "nl": "Deze kaart toont zebrapaden die in regenboogkleuren of pridekleuren geschilderd zijn.",
+ "nl": "Op deze kaart vind je regenboogzebrapaden en kan je er toevoegen",
"ca": "A aquest mapa es mostren els pasos de vianants pintats amb l'arc de Sant Martí i poden afegir-se fàcilment",
"es": "En este mapa, se muestran y se pueden agregar fácilmente pasos de peatones pintados con arcoíris",
"cs": "Na této mapě si můžete zobrazit a snadno přidat přechody pro chodce s duhovými malbami",
diff --git a/assets/themes/ski/ski.json b/assets/themes/ski/ski.json
index a0ed94994f..12e223a234 100644
--- a/assets/themes/ski/ski.json
+++ b/assets/themes/ski/ski.json
@@ -8,14 +8,17 @@
"fr": "Pistes de ski et remontées mécaniques",
"cs": "Sjezdovky a lanové dráhy",
"hu": "Sípályák és felvonók",
- "uk": "Гірськолижні траси та витяги"
+ "uk": "Гірськолижні траси та витяги",
+ "nl": "Skipistes en kabelbanen"
},
"description": {
"en": "Everything you need to go skiing",
"de": "Alles, was Sie zum Skifahren brauchen",
"es": "Todo lo que necesitas para esquiar",
"cs": "Vše, co potřebujete k lyžování",
- "uk": "Все необхідне для катання на лижах"
+ "uk": "Все необхідне для катання на лижах",
+ "fr": "Tout ce dont vous avez besoin pour aller skier",
+ "nl": "Alles om te skiën"
},
"icon": "./assets/layers/aerialway/chair_lift.svg",
"layers": [
diff --git a/assets/themes/surveillance/surveillance.json b/assets/themes/surveillance/surveillance.json
index ed58c0c75b..b405778675 100644
--- a/assets/themes/surveillance/surveillance.json
+++ b/assets/themes/surveillance/surveillance.json
@@ -2,7 +2,7 @@
"id": "surveillance",
"title": {
"en": "Surveillance under Surveillance",
- "nl": "Surveillance under Surveillance",
+ "nl": "Bewaking",
"ja": "監視カメラの監視",
"zh_Hant": "被監視的監視器",
"fr": "Surveillance",
diff --git a/assets/themes/walkingnodes/walkingnodes.json b/assets/themes/walkingnodes/walkingnodes.json
index 8a4726b483..6944ad79dc 100644
--- a/assets/themes/walkingnodes/walkingnodes.json
+++ b/assets/themes/walkingnodes/walkingnodes.json
@@ -327,14 +327,16 @@
"en": "Hiking guideposts",
"de": "Wanderwegweiser",
"es": "Señalización de senderismo",
- "cs": "Turistické rozcestníky"
+ "cs": "Turistické rozcestníky",
+ "nl": "Wandelwegwijzers"
},
"title": {
"render": {
"en": "Hiking guidepost",
"de": "Wanderwegweiser",
"es": "Hito de senderismo",
- "cs": "Turistický rozcestník"
+ "cs": "Turistický rozcestník",
+ "nl": "Wandelwegwijzer"
}
}
},
@@ -367,7 +369,8 @@
"en": "a route marker for a node to node link",
"de": "Eine Routenmarkierung für eine Verbindung von Knoten zu Knoten",
"es": "un marcador de ruta para un enlace de nodo a nodo",
- "cs": "značka trasy pro spojení mezi uzly"
+ "cs": "značka trasy pro spojení mezi uzly",
+ "nl": "een knooppuntwegwijzer"
},
"=exampleImages": [
"./assets/layers/route_marker/walking_route_marker.jpg"
diff --git a/assets/themes/waste_basket/waste_basket.json b/assets/themes/waste_basket/waste_basket.json
index 932a96b58f..1ae4d9ebb9 100644
--- a/assets/themes/waste_basket/waste_basket.json
+++ b/assets/themes/waste_basket/waste_basket.json
@@ -21,12 +21,12 @@
},
"description": {
"en": "On this map, you'll find waste baskets near you. If a waste basket is missing on this map, you can add it yourself.",
- "nl": "Op deze kaart vind je vuilnisbakken waar je afval in kan smijten. Ontbreekt er een vuilnisbak? Dan kan je die zelf toevoegen",
+ "nl": "Op deze kaart vind je afvalbakken bij jou in de buurt. Als er een afvalbak ontbreekt op deze kaart, kun je deze zelf toevoegen",
"de": "Die Karte zeigt Abfalleimer in der Nähe. Wenn ein Abfalleimer fehlt, kannst du ihn selbst hinzufügen.",
"it": "In questa cartina troverai i cestini dei rifiuti nei tuoi paraggi. Se manca un cestino, puoi inserirlo tu stesso",
"zh_Hant": "在這份地圖當中,你可以找到你附近的垃圾筒。如果地圖有遺漏垃圾筒,你可以自己加上去",
"hu": "Ezen a térképen megtalálhatod a közeledben lévő szemeteskosarakat. Ha hiányzik egy kuka a térképről, te is felrajzolhatod.",
- "fr": "Retrouvez les poubelles près de vous. Si une poubelle est manquante, vous pouvez l’ajouter vous même",
+ "fr": "Retrouvez les poubelles près de vous. Si une poubelle est manquante, vous pouvez l’ajouter vous même.",
"da": "På dette kort finder du skraldespande i nærheden af dig. Hvis der mangler en skraldespand på dette kort, kan du selv tilføje den",
"ca": "A aquest mapa trobaràs les papereres a prop teua. Si falta una paperera al mapa pots afegir-la tu mateix",
"es": "En este mapa, encontrarás papeleras cerca de ti. Si falta alguna papelera en este mapa, puedes añadirla tú mismo.",
diff --git a/inspector.html b/inspector.html
new file mode 100644
index 0000000000..8f6f088bd3
--- /dev/null
+++ b/inspector.html
@@ -0,0 +1,18 @@
+
+
+
+
+ Entrar
El disseny personalitzat només està disponible pels usuaris d'OpenstreetMap",
- "panelIntro": "La teva interfície personal
Activa les teves capes favorites de totes les interfícies oficials",
"reload": "Recarregar dades"
},
"favouritePoi": {
@@ -126,10 +124,8 @@
"add": {
"addNew": "Afegir {category} aquí",
"backToSelect": "Selecciona una categoria diferent",
- "confirmButton": "Afegir una {category}Un mapa obert
Comparteix aquest mapa
Comparteix aquest mapa copiant l'enllaç de sota i enviant-lo a amics i família:",
- "thanksForSharing": "Gràcies per compartir!",
"title": "Comparteix aquest mapa"
},
"skip": "Saltar aquesta pregunta",
@@ -373,6 +343,15 @@
},
"useSearch": "Utilitzeu la cerca de dalt per veure els valors predefinits",
"visualFeedback": {
+ "directionsAbsolute": {
+ "N": "nord",
+ "NE": "nord-est",
+ "NW": "nord-oest",
+ "S": "sud",
+ "SE": "sud-est",
+ "SW": "sud-oest",
+ "W": "oest"
+ },
"directionsRelative": {
"left": "esquerra",
"right": "dreta"
@@ -399,28 +378,23 @@
"tuesday": "Dimarts",
"wednesday": "Dimecres"
},
- "welcomeBack": "Has entrat, benvingut/da!",
"welcomeExplanation": {
"addNew": "Toqueu el mapa per afegir un nou PDI.",
"general": "A aquest mapa, podeu observar, editar i afegir punt d'interés. Feu zoom pel voltant per veure el PDI, toque una vegada per a veure o editar la informació. Totes les dades s'obtenen i es desen a OpenStreetMap, que es poden reutilitzar lliurement."
},
"wikipedia": {
- "addEntry": "Afegeix una altra pàgina de la Viquipèdia",
- "createNewWikidata": "Crear un ítem de Wikidata",
"doSearch": "Cerca adalt per veure els resultats",
"failed": "Ha fallat la càrrega d'entrada de la Viquipèdia",
"fromWikipedia": "De Viquipèdia, l'enciclopèdia lliure",
"loading": "Carregant Viquipèdia…",
"noResults": "Res trobat per {search}",
- "noWikipediaPage": "Aquest ítem de Wikidata no té cap pàgina de Viquipèdia corresponent.",
"previewbox": {
"born": "Nascut: {value}",
"died": "Mort: {value}"
},
"readMore": "Llig la resta de l'article",
"searchToShort": "La vostra consulta de cerca és massa curta, introduïu un text més llarg",
- "searchWikidata": "Cercar a Wikidata",
- "wikipediaboxTitle": "Viquipèdia"
+ "searchWikidata": "Cercar a Wikidata"
}
},
"hotkeyDocumentation": {
@@ -432,16 +406,13 @@
"openLayersPanel": "Obre el tauler de capes i filtres",
"selectAerial": "Estableix el fons amb imatges aèries o per satèl·lit. Alterna entre les dues millors capes disponibles",
"selectMap": "Estableix el fons a un mapa de fonts externes. Alterna entre les dues millors capes disponibles",
- "selectMapnik": "Estableix la capa de fons a OpenStreetMap-carto",
"selectOsmbasedmap": "Estableix la capa de fons basat en OpenStreetMap (o desactiva la capa de ràster de fons)",
"selectSearch": "Seleccioneu la barra de cerca per cercar ubicacions",
"title": "Dreceres"
},
"image": {
"addPicture": "Afegir foto",
- "currentLicense": "Les vostres imatges seran publicades sota la {license}",
"doDelete": "Esborrar imatge",
- "dontDelete": "Cancel·lar",
"isDeleted": "Esborrada",
"nearby": {
"link": "Aquesta imatge mostra l'objecte",
@@ -467,31 +438,20 @@
"uploading": "La teva imatge s'està penjant…"
}
},
- "uploadDone": "La teva imatge ha estat afegida. Gràcies per ajudar!",
- "uploadFailed": "No s'ha pogut pujar la imatge. Tens Internet i es permeten API de tercers? El navegador Brave o UMatrix podria bloquejar-les.",
- "uploadMultipleDone": "S'han afegit {count} imatges. Gràcies per ajudar!",
- "uploadingMultiple": "Pujant {count} imatges…",
- "uploadingPicture": "Pujant la teva imatge…"
+ "uploadFailed": "No s'ha pogut pujar la imatge. Tens Internet i es permeten API de tercers? El navegador Brave o UMatrix podria bloquejar-les."
},
"importInspector": {
"title": "Inspeccionar i controlar notes d'importació"
},
"importLayer": {
- "alreadyMapped": "Ja hi ha un {title} al mapa - aquest punt és un duplicat",
"description": "Una capa que importa entrades per a {title}",
- "importButton": "import_button({layerId}, _tags, he trobat un {title} aquí; afegeix-lo al mapa,./assets/svg/addSmall.svg,,,id)",
- "importHandled": "Imatges properes
Les imatges següents són imatges geoetiquetades properes de diversos serveis en línia. Us poden ajudar a resoldre aquesta nota.{nearby_images(open)}",
- "notFound": "No he pogut trobar {title}: esborra-ho",
- "popupTitle": "Pot ser que hi hagi {title} aquí"
+ "notFound": "No he pogut trobar {title}: esborra-ho"
},
"index": {
"#": "Aquests textos es mostren sobre els botons de les peticions quan no hi ha petició carregada",
- "featuredThemeTitle": "Destacades aquesta setmana",
"intro": "MapComplete és un visor i editor d'OpenStreetMap, que et mostra informació sobre elements d'una petició específica i et permet actualitzar-los.",
"logIn": "Entra per veure altres temes que has visitat anteriorment",
- "pickTheme": "Tria una petició a sota per començar.",
"title": "Benvingut/da a MapComplete"
},
"move": {
@@ -506,8 +466,6 @@
"inviteToMoveAgain": "Moure aquest punt un altre cop",
"isRelation": "Aquest element és una relació i no es pot moure",
"isWay": "Aquest element és una via. Fes servir un altre editor d'OpenStreetMap per moure'l.",
- "loginToMove": "Has d'entrar per moure aquest punt",
- "moveTitle": "Moure aquest punt",
"partOfAWay": "Aquest element és part d'una altra via. Fes servir un altre editor per moure'l.",
"partOfRelation": "Aquest element és part d'una relació. Fes servir un altre editor per moure'l.",
"pointIsMoved": "Has mogut el punt",
@@ -515,8 +473,6 @@
"reasonInaccurate": "La localització d'aquest objecte no és ajustada i s'hauria de moure uns metres",
"reasonRelocation": "L'objecte ha estat recol·locat a una localització totalment diferent"
},
- "selectReason": "Per què mous aquest objecte?",
- "whyMove": "Per què vols moure aquest punt?",
"zoomInFurther": "Amplia per confirmar aquest moviment"
},
"multi_apply": {
@@ -537,13 +493,10 @@
"isClosed": "Aquesta nota s'ha resolt",
"isCreated": "La teva nota ha estat creada!",
"loginToAddComment": "Inicieu sessió per afegir un comentari",
- "loginToAddPicture": "Inicieu sessió per afegir una imatge",
"loginToClose": "Inicieu sessió per tancar aquesta nota",
- "noteIsPublic": "Això serà visible per a tothom",
"noteLayerDoEnable": "Habilita la capa que mostra notes",
"noteLayerHasFilters": "Algunes notes poden estar ocultes per un filtre",
"noteLayerNotEnabled": "La capa que mostra les notes no està activada. Aquesta capa s'ha d'habilitar per afegir una nota nova",
- "notesLayerMustBeEnabled": "La capa 'notes' està desactivada. Activa-la per afegir una nota",
"reopenNote": "Reobrir nota",
"reopenNoteAndComment": "Reobrir nota i comentar",
"textNeeded": "Introdueix un text descriptiu per crear una nota",
@@ -571,7 +524,6 @@
"overviewVerify": "Si us plau, comproveu que l'espècie és correcta i vinculeu-la a l'arbre",
"poweredByPlantnet": "Desenvolupat per plantnet.org",
"querying": "Consultant a plantnet.org amb {length} imatges",
- "seeInfo": "Veure més informació sobre l'espècie",
"takeImages": "Feu imatges de l'arbre per detectar automàticament el tipus d'arbre",
"tryAgain": "Seleccioneu una espècie diferent"
},
@@ -603,7 +555,6 @@
"attribution": "Les ressenyes funcionen gràcies a Mangrove Reviews i estan disponibles sota CC-BY 4.0.",
"i_am_affiliated": "Tinc alguna filiació amb aquest objecte",
"i_am_affiliated_explanation": "Marqueu si sou propietari, creador, empleat,…",
- "name_required": "És requerit un nom per mostrar i crear revisions",
"no_reviews_yet": "No hi ha revisions encara. Sigues el primer a escriure'n una i ajuda al negoci i a les dades lliures!",
"question": "Com valoraries {title()}?",
"question_opinion": "Com va ser la vostra experiència?",
@@ -614,9 +565,7 @@
"saved": "Ressenya compartida. Gràcies per compartir!",
"saving_review": "Desant…",
"title": "{count} revisions",
- "title_singular": "Una revisió",
"tos": "Si crees una ressenya estàs d'acord amb els Termes de Servei i política de privacitat de Mangrove.reviews",
- "write_a_comment": "Deixa una ressenya…",
"your_reviews": "Les vostres opinions anteriors",
"your_reviews_empty": "No hem pogut trobar cap de les vostres opinions anteriors"
},
@@ -626,19 +575,13 @@
"inviteToSplit": "Talla aquesta carretera en trossos més petits. Això et permetrà afegir informacions diferents a les parts.",
"loginToSplit": "Has d'entrar per poder dividir una carretera",
"split": "Dividir",
- "splitAgain": "Torneu a dividir aquesta carretera",
- "splitTitle": "Trieu al mapa on canvien les propietats d'aquesta carretera"
+ "splitAgain": "Torneu a dividir aquesta carretera"
},
"translations": {
"activateButton": "Ajuda a traduir MapComplete",
- "allMissing": "Encara no hi ha traduccions",
- "missing": "{count} cadenes sense traduir",
- "notImmediate": "Les traduccions no s'actualitzen directament. Això sol trigar uns quants dies"
+ "missing": "{count} cadenes sense traduir"
},
"userinfo": {
- "gotoInbox": "Obre la teva safata d'entrada",
- "gotoSettings": "Aneu a la vostra configuració a OpenStreetMap.org",
- "noDescription": "Encara no tens una descripció al teu perfil",
"notLoggedIn": "Heu tancat la sessió"
},
"validation": {
@@ -698,8 +641,7 @@
"noZero": "No es permet el zero"
},
"slope": {
- "inputExplanation": "Poseu el telèfon a terra amb la part superior del telèfon apuntant cap a la part superior del pendent.",
- "inputIncorrect": "Per a les mesures correctes, assegureu-vos que la fletxa està dins de la zona verda."
+ "inputExplanation": "Poseu el telèfon a terra amb la part superior del telèfon apuntant cap a la part superior del pendent."
},
"string": {
"description": "un tros de text"
diff --git a/langs/cs.json b/langs/cs.json
index 0f579c9a29..fb06126c9a 100644
--- a/langs/cs.json
+++ b/langs/cs.json
@@ -13,7 +13,6 @@
"communityIndex": {
"available": "Tato komunita mluví {native}",
"intro": "Navažte kontakt s ostatními lidmi, abyste je poznali, učili se od nich, …",
- "notAvailable": "Tato komunita nemluví {native}",
"title": "Spojte se s ostatními"
},
"delete": {
@@ -23,16 +22,11 @@
"deletedTitle": "Smazaná funkce",
"explanations": {
"hardDelete": "Tato funkce bude v OpenStreetMap odstraněna. Zkušený přispěvatel ji může obnovit",
- "retagNoOtherThemes": "Tato funkce bude překlasifikována a skryta z této aplikace",
- "retagOtherThemes": "Tato funkce bude nově označena a viditelná v {otherThemes}",
- "selectReason": "Vyberte, proč by tato funkce měla být odstraněna",
"softDelete": "Tato funkce bude v této aplikaci aktualizována a skryta. {reason}"
},
- "isChanged": "Tato funkce byla změněna a již neodpovídá této vrstvě",
"isDeleted": "Tato funkce je smazána",
"isntAPoint": "Odstranit lze pouze uzly, vybraným prvkem je cesta, oblast nebo relace.",
"loading": "Kontrola vlastností, zda lze tuto funkci odstranit.",
- "loginToDelete": "Chcete-li funkci odstranit, musíte být přihlášeni",
"notEnoughExperience": "Tuto funkci vytvořil někdo jiný.",
"onlyEditedByLoggedInUser": "Tuto funkci jste upravovali pouze vy, můžete ji bez obav odstranit.",
"partOfOthers": "Tento uzel je součástí nějaké cesty nebo relace a nelze jej přímo smazat.",
@@ -70,8 +64,6 @@
"title": "Strukturovaná data načtená z externí webové stránky"
},
"favourite": {
- "loginNeeded": "Přihlášení
Osobní rozvržení je k dispozici pouze pro uživatele OpenStreetMap",
- "panelIntro": "Vaše osobní téma
Aktivujte si své oblíbené vrstvy ze všech oficiálních témat",
"reload": "Znovu načíst data"
},
"favouritePoi": {
@@ -142,10 +134,8 @@
"add": {
"addNew": "Přidat {category}",
"backToSelect": "Vyberte jinou kategorii",
- "confirmButton": "Přidat kategorii {category}Otevřená mapa
Obrázky z okolí
Následující obrázky jsou geograficky označené obrázky z různých online služeb. Mohly by vám pomoci při řešení této poznámky.{nearby_images(open)}",
- "notFound": "Nepodařilo se mi najít {title} - odstraňte jej",
- "popupTitle": "Zde by mohl být {title}"
+ "notFound": "Nepodařilo se mi najít {title} - odstraňte jej"
},
"index": {
"#": "Tyto texty se zobrazují nad tlačítky motivu, pokud není načten žádný motiv",
"about": "O MapComplete",
- "featuredThemeTitle": "Tento týden",
"intro": "Mapy k různým tématům, ke kterým můžete přispět",
"learnMore": "Více informací",
"logIn": "Přihlaste se, abyste viděli další témata, která jste dříve navštívili",
- "pickTheme": "Vyberte si téma níže a začněte.",
"title": "MapComplete"
},
"move": {
@@ -658,8 +619,6 @@
"inviteToMoveAgain": "Znovu přesunout tento bod",
"isRelation": "Tato funkce je vztah a nelze ji přesunout",
"isWay": "Tato funkce je cesta. K přesunutí použijte jiný editor OpenStreetMap.",
- "loginToMove": "Pro přesun bodu musíte být přihlášeni",
- "moveTitle": "Přesunout tento bod",
"partOfAWay": "Tato funkce je součástí jiné cesty. K přesunutí použijte jiný editor.",
"partOfRelation": "Tato funkce je součástí vztahu. K přesunutí použijte jiný editor.",
"pointIsMoved": "Bod byl přesunut",
@@ -668,8 +627,6 @@
"reasonRelocation": "Objekt byl přemístěn na úplně jiné místo",
"reasonSnapTo": "Toto by mělo být přichyceno k {name}"
},
- "selectReason": "Proč přesouváte tento objekt?",
- "whyMove": "Proč chcete přesunout tento bod?",
"zoomInFurther": "Chcete-li tento přesun potvrdit, více přibližte mapu"
},
"multi_apply": {
@@ -690,13 +647,10 @@
"isClosed": "Tato poznámka je vyřešena",
"isCreated": "Vaše poznámka byla vytvořena!",
"loginToAddComment": "Chcete-li přidat komentář, přihlaste se",
- "loginToAddPicture": "Chcete-li přidat obrázek, přihlaste se",
"loginToClose": "Pro uzavření této poznámky se přihlaste",
- "noteIsPublic": "Toto bude viditelné všem",
"noteLayerDoEnable": "Povolit vrstvu zobrazující poznámky",
"noteLayerHasFilters": "Některé poznámky mohou být skryty filtrem",
"noteLayerNotEnabled": "Vrstva zobrazující poznámky není zapnuta. Chcete-li přidat novou poznámku, musí být tato vrstva povolena",
- "notesLayerMustBeEnabled": "Vrstva 'poznámky' je zakázána. Chcete-li přidat poznámku, povolte ji",
"reopenNote": "Znovu otevřít poznámku",
"reopenNoteAndComment": "Znovu otevřít poznámku a komentovat",
"textNeeded": "Chcete-li vytvořit poznámku, zadejte popisný text",
@@ -724,7 +678,6 @@
"overviewVerify": "Ověřte prosím správný druh a propojte jej se stromem",
"poweredByPlantnet": "Používá technologii plantnet.org",
"querying": "Dotazování na plantnet.org s obrázky {length}",
- "seeInfo": "Více informací o druhu",
"takeImages": "Pořizujte snímky stromu, abyste automaticky zjistili typ stromu",
"tryAgain": "Vyberte jiný druh"
},
@@ -762,7 +715,6 @@
"averageRating": "Průměrné hodnocení {n} hvězdiček",
"i_am_affiliated": "Jsem spojen s tímto objektem",
"i_am_affiliated_explanation": "Zkontrolujte, zda jste vlastníkem, tvůrcem, zaměstnancem, …",
- "name_required": "Pro zobrazení a vytváření recenzí je vyžadováno jméno",
"no_reviews_yet": "Zatím nejsou žádné recenze. Buďte první!",
"non_place_review": "Jedna recenze se netýká místa a není zde uvedena.",
"non_place_reviews": "{n} recenzí se netýkají místa a nejsou zde zobrazeny.",
@@ -779,10 +731,8 @@
"saving_review": "Ukládání…",
"see_all": "Zobrazit všechny recenze na mangrove.reviews",
"title": "{count} recenzí",
- "title_singular": "Jedna recenze",
"too_long": "Povoleno je maximálně {max} znaků. Vaše recenze má {amount} znaků.",
"tos": "Zanecháním recenze souhlasíte s podmínkami a zásadami ochrany osobních údajů služby Mangrove.reviews",
- "write_a_comment": "Zanechte recenzi…",
"your_reviews": "Vaše předchozí recenze",
"your_reviews_empty": "Nenašli jsme žádné z vašich předchozích hodnocení"
},
@@ -792,14 +742,11 @@
"inviteToSplit": "Rozdělte tuto silnici na menší úseky. To umožňuje dát částem silnice různé vlastnosti.",
"loginToSplit": "Pro rozdělení silnice musíte být přihlášeni",
"split": "Rozdělit",
- "splitAgain": "Znovu rozdělit tuto cestu",
- "splitTitle": "Vyberte na mapě, kde se mění vlastnosti této silnice"
+ "splitAgain": "Znovu rozdělit tuto cestu"
},
"translations": {
"activateButton": "Pomozte přeložit MapComplete",
- "allMissing": "Zatím bez překladů",
- "missing": "{count} nepřeložených řetězců",
- "notImmediate": "Překlady nejsou aktualizovány přímo. Obvykle to trvá několik dní"
+ "missing": "{count} nepřeložených řetězců"
},
"unknown": {
"clear": "Vymazat odpověď",
@@ -810,9 +757,6 @@
"title": "Označit jako neznámé?"
},
"userinfo": {
- "gotoInbox": "Otevřít poštu",
- "gotoSettings": "Přejít do vašich nastavení na OpenStreetMap.org",
- "noDescription": "Na svém profilu zatím nemáte popis",
"notLoggedIn": "Odhlásili jste se"
},
"validation": {
@@ -876,8 +820,7 @@
"description": "regulární výraz"
},
"slope": {
- "inputExplanation": "Položte telefon na zem tak, aby horní strana telefonu směřovala k horní části svahu.",
- "inputIncorrect": "Pro správné měření se ujistěte, že se šipka nachází v zelené oblasti."
+ "inputExplanation": "Položte telefon na zem tak, aby horní strana telefonu směřovala k horní části svahu."
},
"string": {
"description": "kus textu"
diff --git a/langs/da.json b/langs/da.json
index a5e17c221a..b48b9445c1 100644
--- a/langs/da.json
+++ b/langs/da.json
@@ -19,15 +19,11 @@
"delete": "Slet",
"explanations": {
"hardDelete": "Denne funktion vil blive slettet i OpenStreetMap. Det kan inddrives af en erfaren bidragyder",
- "retagNoOtherThemes": "Denne funktion vil blive omklassificeret og skjult fra denne applikation",
- "retagOtherThemes": "Denne funktion bliver tagget igen og synlig i {otherThemes}",
- "selectReason": "Angiv venligst hvorfor dette element burde slettes",
"softDelete": "Dette element vil blive opdateret og skjult for dette program {reason}"
},
"isDeleted": "Dette element er slettet",
"isntAPoint": "Kun punkter skal slettes, det valgte element er en vej, et areal eller en relation.",
"loading": "Undersøger egenskaber for at finde ud af om dette element kan slettes.",
- "loginToDelete": "Du skal være logget ind for slette et punkt",
"notEnoughExperience": "Punktet blev lavet af en anden.",
"onlyEditedByLoggedInUser": "Dette punkt er kun blevet redigeret af dig selv, du kan roligt slette det.",
"partOfOthers": "Dette punkt er en del af en vej eller relation og kan ikke direkte slettes.",
@@ -43,8 +39,6 @@
"whyDelete": "Hvorfor skal dette punkt slettes?"
},
"favourite": {
- "loginNeeded": "Log ind
En personlig opsætning er kun til rådighed for OpenStreetMap-brugere",
- "panelIntro": "Dit personlige tema
Aktiver dit favoritlag fra et af alle de officelle temaer",
"reload": "Genindlæs data"
},
"favouritePoi": {
@@ -95,7 +89,6 @@
"add": {
"addNew": "Tilføj {category}",
"backToSelect": "Vælg en anden kategori",
- "confirmButton": "Tilføj en {category}At Åbent kort
Del dette kort
Del dette kort ved at kopiere linket nedenunder og send det til venner og familie:",
- "thanksForSharing": "Tak for at dele!",
"title": "Del dette kort"
},
"skip": "Spring over dette spørgsmål",
@@ -351,28 +319,23 @@
"tuesday": "Tirsdag",
"wednesday": "Onsdag"
},
- "welcomeBack": "Du er logget ind, velkommen tilbage!",
"welcomeExplanation": {
"addNew": "Klik på kortet for at tilføje et nyt POI.",
"general": "På dette kort kan du se, redigere og tilføje interessepunkter. Zoom rundt for at se POI'et, tryk på et for at se eller redigere oplysningerne. Alle data er hentet fra og gemt i OpenStreetMap, som frit kan genbruges."
},
"wikipedia": {
- "addEntry": "Tilføj endnu en Wikipedia-side",
- "createNewWikidata": "Opret et nyt Wikidata element",
"doSearch": "Søg ovenfor for at se resultater",
"failed": "Indlæsning af Wikipedia-artikel mislykkedes",
"fromWikipedia": "Fra Wikipedia, den frie encyklopædi",
"loading": "Indlæser Wikipedia...",
"noResults": "Intet fundet for {search}",
- "noWikipediaPage": "Dette Wikidata-element har endnu ingen tilknyttet Wikipedia artikel.",
"previewbox": {
"born": "Født: {value}",
"died": "Død: {value}"
},
"readMore": "Læs resten af artiklen",
"searchToShort": "Din søgeforespørgsel er for kort. Indtast en længere tekst",
- "searchWikidata": "Søg på Wikidata",
- "wikipediaboxTitle": "Wikipedia"
+ "searchWikidata": "Søg på Wikidata"
}
},
"hotkeyDocumentation": {
@@ -380,43 +343,29 @@
"closeSidebar": "Luk sidemenuen",
"intro": "MapComplete understøtter følgende genvejstaster:",
"key": "Tastekombination",
- "openLayersPanel": "Åbner panelet for baggrundslag",
- "selectMapnik": "Sæt baggrundslag til OpenStreetMap-carto"
+ "openLayersPanel": "Åbner panelet for baggrundslag"
},
"image": {
"addPicture": "Tilføj Billede",
- "currentLicense": "Dine billeder vil blive udgivet under {license}",
"doDelete": "Fjern billede",
- "dontDelete": "Afbryd",
"isDeleted": "Slettet",
"pleaseLogin": "Log venligst ind for at tilføje et billede",
"respectPrivacy": "Tag ikke billeder af mennesker eller nummerplader. Upload ikke Google Maps, Google Streetview, eller fra andre ophavsresbeskyttede kilder.",
"toBig": "Dit billede er for stort da det er {actual_size}. Brug venligst billeder, der er højst {max_size}",
- "uploadDone": "Dit billede er tilføjet. Tak for hjælpen!",
- "uploadFailed": "Kunne ikke uploade dit billede. Er du forbundet til Internettet og tillader du tredieparts API'er. Brave browseren eller uMatrix plugin'et kunne blokerer dem.",
- "uploadMultipleDone": "{count} billeder tilføjet. Tak for at hjælpe til!",
- "uploadingMultiple": "Uploader {count} billeder…",
- "uploadingPicture": "Uploading dit billede…"
+ "uploadFailed": "Kunne ikke uploade dit billede. Er du forbundet til Internettet og tillader du tredieparts API'er. Brave browseren eller uMatrix plugin'et kunne blokerer dem."
},
"importInspector": {
"title": "Undersøg og håndter noter"
},
"importLayer": {
- "alreadyMapped": "Der er allerede en anden {title} på kortet - dette punkt er en dublet",
"description": "Et lag som importerer poster for {title}",
- "importButton": "import_button({layerId}, _tags, Jeg har fundet en {title} her - tilføj den til kortet,./assets/svg/addSmall.svg,,,id)",
- "importHandled": "Billeder i nærheden
De følgende billeder er geotaggede billeder i nærheden fra forskellige onlinetjenester. De kan måske hjælpe dig med at løse denne note.{nearby_images(open)}",
- "notFound": "Jeg kunne ikke finde {title} - fjern det",
- "popupTitle": "Mulig {title}"
+ "notFound": "Jeg kunne ikke finde {title} - fjern det"
},
"index": {
"#": "Disse tekster vises over tema-knapperne, når der ikke er indlæst noget tema",
- "featuredThemeTitle": "Fremhævet denne uge",
"intro": "MapComplete er en OpenStreetMap-viser og editor, som viser dig oplysninger om elementer i et specifikt tema og gør det muligt at opdatere det.",
"logIn": "Log ind for at se andre temaer, du tidligere har besøgt",
- "pickTheme": "Vælg et tema nedenfor for at komme i gang.",
"title": "Velkommen til MapComplete"
},
"move": {
@@ -431,8 +380,6 @@
"inviteToMoveAgain": "Flyt dette punkt igen",
"isRelation": "Dette element er en relation og kan ikke flyttes",
"isWay": "Dette element er en vej. Brug en anden OpenStreetMap-editor til at flytte den.",
- "loginToMove": "Du skal være logget ind for at flytte et punkt",
- "moveTitle": "Flyt dette punkt",
"partOfAWay": "Dette element er en del af en anden vej. Brug en anden editor til at flytte den.",
"partOfRelation": "Dette element er en del af en relation. Brug en anden editor til at flytte den.",
"pointIsMoved": "Dette punkt er blevet flyttet",
@@ -440,8 +387,6 @@
"reasonInaccurate": "Placeringen af dette objekt er unøjagtig og bør flyttes et par meter",
"reasonRelocation": "Objektet er blevet flyttet til et helt andet sted"
},
- "selectReason": "Hvorfor flytter du dette objekt?",
- "whyMove": "Hvorfor vil du flytte dette punkt?",
"zoomInFurther": "Zoom mere ind for bekræfte denne flytning"
},
"multi_apply": {
@@ -461,13 +406,10 @@
"isClosed": "Denne note er løst",
"isCreated": "Din note er oprettet!",
"loginToAddComment": "Log ind for at tilføje en kommentar",
- "loginToAddPicture": "Log ind for tilføje et billede",
"loginToClose": "Log ind for at lukke denne note",
- "noteIsPublic": "Dette vil kunne ses af alle",
"noteLayerDoEnable": "Slå laget, der viser noter, til",
"noteLayerHasFilters": "Nogle noter kan være skjult af et filter",
"noteLayerNotEnabled": "Laget, der viser noter, er ikke slået til. Dette lag skal være slået til for at tilføje en ny note",
- "notesLayerMustBeEnabled": "'note'-laget er slået fra. Slå det til for at tilføje en note",
"reopenNote": "Genåbn note",
"reopenNoteAndComment": "Genåbn note og kommenter",
"textNeeded": "Indtast en beskrivende tekst for at oprette en note",
@@ -501,33 +443,24 @@
"affiliated_reviewer_warning": "(Tilknyttet anmeldelse)",
"attribution": "Anmeldelserne er baseret på Mangrove Reviews og er tilgængelige under CC-BY 4.0.",
"i_am_affiliated": "Jeg er tilknyttet dette objekt
Tjek, om du er ejer, skaber, ansat, ...",
- "name_required": "Der kræves et navn for at vise og oprette anmeldelser",
"no_reviews_yet": "Der er ingen anmeldelser endnu. Vær den første til at skrive en og hjælpe åbne data og forretningen!",
"saved": "Anmeldelse gemt. Tak for at bidrage!",
"saving_review": "Gemmer…",
"title": "{count} Anmeldelser",
- "title_singular": "En anmeldelse",
- "tos": "Hvis du opretter en anmeldelse, accepterer du Mangrove.reviews' servicevilkår og privatlivspolitik",
- "write_a_comment": "Skriv en anmeldelse…"
+ "tos": "Hvis du opretter en anmeldelse, accepterer du Mangrove.reviews' servicevilkår og privatlivspolitik"
},
"split": {
"cancel": "Afbryd",
"hasBeenSplit": "Denne vej er blevet opdelt",
"inviteToSplit": "Opdel denne vej i mindre dele. Det giver mulighed for at give forskellige egenskaber til dele af vejen.",
"loginToSplit": "Du skal være logget ind for at opdele en vej",
- "split": "Opdel",
- "splitTitle": "Vælg på kortet, hvor du vil opdele denne vej"
+ "split": "Opdel"
},
"translations": {
"activateButton": "Hjælp med at oversætte MapComplete",
- "allMissing": "Ingen oversættelser endnu",
- "missing": "{count} uoversatte strenge",
- "notImmediate": "Oversættelser opdateres ikke direkte. Det tager typisk et par dage"
- },
- "userinfo": {
- "gotoInbox": "Åbn din indbakke",
- "gotoSettings": "Gå til dine indstillinger på OpenStreetMap.org"
+ "missing": "{count} uoversatte strenge"
},
+ "userinfo": {},
"validation": {
"color": {
"description": "En farve eller hex-kode"
diff --git a/langs/de.json b/langs/de.json
index eabf6ad495..1a3ab20190 100644
--- a/langs/de.json
+++ b/langs/de.json
@@ -13,7 +13,6 @@
"communityIndex": {
"available": "Diese Gemeinschaft spricht {native}",
"intro": "Treten Sie mit anderen Menschen in Kontakt, um sie kennen zu lernen, von ihnen zu lernen, …",
- "notAvailable": "Diese Gemeinschaft spricht nicht {native}",
"title": "Andere Mapper kontaktieren"
},
"delete": {
@@ -23,16 +22,11 @@
"deletedTitle": "Gelöschtes Objekt",
"explanations": {
"hardDelete": "Dieses Objekt wird in OpenStreetMap gelöscht. Es kann von einem erfahrenen Mitwirkenden wiederhergestellt werden",
- "retagNoOtherThemes": "Dieses Objekt wird neu klassifiziert und aus dieser Anwendung ausgeblendet",
- "retagOtherThemes": "Dieses Objekt wird neu gekennzeichnet und in {otherThemes} sichtbar sein",
- "selectReason": "Bitte auswählen, warum dieses Element gelöscht werden soll",
"softDelete": "Dieses Element wird aktualisiert und in dieser Anwendung ausgeblendet. {reason}"
},
- "isChanged": "Dieses Merkmal wurde geändert und passt nicht mehr zu dieser Ebene",
"isDeleted": "Dieses Element wurde gelöscht",
"isntAPoint": "Es können nur Punkte gelöscht werden. Das ausgewählte Objekt ist ein Weg, eine Fläche oder eine Relation.",
"loading": "Eigenschaften untersuchen, um festzustellen, ob das Element gelöscht werden kann.",
- "loginToDelete": "Sie müssen angemeldet sein, um ein Objekt zu löschen",
"notEnoughExperience": "Dieses Objekt wurde von jemand anderem erstellt.",
"onlyEditedByLoggedInUser": "Dieses Objekt wurde nur von Ihnen bearbeitet. Sie können es gefahrlos löschen.",
"partOfOthers": "Der Punkt ist Teil eines Wegs oder einer Relation und kann nicht direkt gelöscht werden.",
@@ -70,8 +64,6 @@
"title": "Strukturierte Daten, die von der externen Website geladen werden"
},
"favourite": {
- "loginNeeded": "Anmelden
Ein persönliches Layout ist nur für OpenStreetMap-Benutzer verfügbar",
- "panelIntro": "Ihr persönliches Thema
Aktivieren Sie Ihre Lieblingsebenen aus allen offiziellen Themen",
"reload": "Daten neu laden"
},
"favouritePoi": {
@@ -142,10 +134,8 @@
"add": {
"addNew": "{category} hinzufügen",
"backToSelect": "Wählen Sie eine andere Kategorie",
- "confirmButton": "Eine {category} Eine offene Karte
Bilder in der Nähe
Die folgenden Bilder sind mit Geotags versehene Bilder aus verschiedenen Online-Diensten in der Nähe. Sie können helfen, diesen Hinweis zu lösen.{nearby_images(open)}",
- "notFound": "Ich konnte {title} nicht finden - entferne es",
- "popupTitle": "Möglicherweise gibt es hier {title}"
+ "notFound": "Ich konnte {title} nicht finden - entferne es"
},
"index": {
"#": "Dieser Text wird über der Thema-Auswahlschaltfläche gezeigt, wenn kein Thema geladen ist",
"about": "Über MapComplete",
- "featuredThemeTitle": "Diese Woche im Blickpunkt",
"intro": "Verschiedenen Themenkarten, zu denen Sie beitragen können",
"learnMore": "Mehr erfahren",
"logIn": "Anmelden, um Themen anzuzeigen, die Sie bereits besucht haben",
- "pickTheme": "Eines der folgenden Themen auswählen, um zu starten.",
"title": "MapComplete"
},
"move": {
@@ -658,8 +622,6 @@
"inviteToMoveAgain": "Diesen Punkt erneut verschieben",
"isRelation": "Dieses Element ist eine Relation und kann nicht verschoben werden",
"isWay": "Dieses Element ist ein Weg. Verwenden Sie einen anderen OpenStreetMap-Editor, um ihn zu verschieben.",
- "loginToMove": "Sie müssen angemeldet sein, um einen Punkt zu verschieben",
- "moveTitle": "Diesen Punkt verschieben",
"partOfAWay": "Das Objekt ist Teil eines anderen Wegs. Zum Verschieben bitte einen anderen Editor verwenden.",
"partOfRelation": "Dieses Element ist Teil einer Relation. Verwenden Sie einen anderen Editor, um es zu verschieben.",
"pointIsMoved": "Der Punkt wurde verschoben",
@@ -668,8 +630,6 @@
"reasonRelocation": "Das Element wurde an einen völlig anderen Ort verlegt",
"reasonSnapTo": "Dies sollte auf {name} fixiert werden"
},
- "selectReason": "Warum verschieben Sie dieses Element?",
- "whyMove": "Warum wollen Sie diesen Punkt verschieben?",
"zoomInFurther": "Ausschnitt vergrößern, um die Verschiebung zu bestätigen"
},
"multi_apply": {
@@ -690,13 +650,10 @@
"isClosed": "Diese Notiz wurde erledigt",
"isCreated": "Die Notiz wurde erstellt!",
"loginToAddComment": "Anmelden, um einen Kommentar hinzuzufügen",
- "loginToAddPicture": "Anmelden, um ein Bild hinzuzufügen",
"loginToClose": "Anmelden, um diese Notiz zu schließen",
- "noteIsPublic": "Es wird für alle sichtbar sein",
"noteLayerDoEnable": "Ebene mit Notizen einblenden",
"noteLayerHasFilters": "Einige Notizen können durch einen Filter ausgeblendet sein",
"noteLayerNotEnabled": "Die Ebene mit Notizen ist nicht eingeblendet. Die Ebene muss eingeblendet sein, um Notizen hinzuzufügen",
- "notesLayerMustBeEnabled": "Die Notiz-Ebene ist ausgeblendet. Bitte einblenden, um Notizen hinzuzufügen",
"reopenNote": "Notiz erneut öffnen",
"reopenNoteAndComment": "Notiz erneut öffnen und kommentieren",
"textNeeded": "Beschreibung hinzufügen, um eine Notiz zu erstellen",
@@ -724,7 +681,6 @@
"overviewVerify": "Bitte überprüfen Sie die richtige Art und verknüpfen Sie sie mit dem Baum",
"poweredByPlantnet": "Bereitgestellt von plantnet.org",
"querying": "Abfrage bei plantnet.org mit {length} Fotos",
- "seeInfo": "Weitere Informationen über diese Art",
"takeImages": "Machen Sie Fotos vom Baum, um die Baumart automatisch zu erkennen",
"tryAgain": "Wähle eine andere Art"
},
@@ -762,7 +718,6 @@
"averageRating": "Mittlere Bewertung von {n} Sternen",
"i_am_affiliated": "Ich bin mit diesem Objekt vertraut",
"i_am_affiliated_explanation": "Prüfung, ob Sie der Eigentümer, Ersteller, Angestellter, … sind",
- "name_required": "Der Name des Objekts ist erforderlich, um Bewertungen zu erstellen und anzuzeigen",
"no_reviews_yet": "Bisher gibt es noch keine Bewertungen. Sei der Erste!",
"non_place_review": "Eine Bewertung geht nicht um einen Ort und wird hier nicht angezeigt.",
"non_place_reviews": "{n} Bewertungen sind nicht über einen Ort und werden hier nicht angezeigt.",
@@ -779,10 +734,8 @@
"saving_review": "Speichern…",
"see_all": "Seh alle deine Bewertungen auf Mangrove Reviews",
"title": "{count} Rezensionen",
- "title_singular": "Eine Rezension",
"too_long": "Maximal {max} Zeichen sind erlaubt. Ihre Bewertung hat {amount} Zeichen.",
"tos": "Mit der Bewertung stimmen Sie den AGB und den Datenschutzrichtlinien von Mangrove.reviews zu",
- "write_a_comment": "Bewertung schreiben…",
"your_reviews": "Deine Bewertungen",
"your_reviews_empty": "Keine vorherigen Bewertungen gefunden"
},
@@ -792,14 +745,11 @@
"inviteToSplit": "Die Straße in Abschnitte teilen. Dadurch können je Abschnitt unterschiedliche Eigenschaften angegeben werden.",
"loginToSplit": "Anmeldung erforderlich, um Straßen zu teilen",
"split": "Aufteilen",
- "splitAgain": "Diese Straße erneut teilen",
- "splitTitle": "Wähle auf der Karte aus, wo sich die Eigenschaften dieser Straße ändern"
+ "splitAgain": "Diese Straße erneut teilen"
},
"translations": {
"activateButton": "MapComplete übersetzen",
- "allMissing": "Noch keine Übersetzungen",
- "missing": "{count} nicht übersetzte Zeichenfolgen",
- "notImmediate": "Die Übersetzung wird nicht direkt aktualisiert. Dies dauert in der Regel ein paar Tage"
+ "missing": "{count} nicht übersetzte Zeichenfolgen"
},
"unknown": {
"clear": "Antwort löschen",
@@ -810,9 +760,6 @@
"title": "Als unbekannt markieren?"
},
"userinfo": {
- "gotoInbox": "Deinen Posteingang öffnen",
- "gotoSettings": "Einstellungen auf OpenStreetMap.org öffnen",
- "noDescription": "Noch keine Profilbeschreibung vorhanden",
"notLoggedIn": "Du hast Dich abgemeldet"
},
"validation": {
@@ -876,8 +823,7 @@
"description": "ein regulärer Ausdruck"
},
"slope": {
- "inputExplanation": "Legen Sie Ihr Telefon so auf den Boden, dass die Oberseite des Telefons zum oberen Ende des Hangs zeigt.",
- "inputIncorrect": "Für korrekte Messungen achten Sie darauf, dass sich der Pfeil in der grünen Fläche befindet."
+ "inputExplanation": "Legen Sie Ihr Telefon so auf den Boden, dass die Oberseite des Telefons zum oberen Ende des Hangs zeigt."
},
"string": {
"description": "ein Stück Text"
diff --git a/langs/el.json b/langs/el.json
new file mode 100644
index 0000000000..9e26dfeeb6
--- /dev/null
+++ b/langs/el.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git a/langs/en.json b/langs/en.json
index bad4e5e3d0..c23ffa2060 100644
--- a/langs/en.json
+++ b/langs/en.json
@@ -13,7 +13,6 @@
"communityIndex": {
"available": "This community speaks {native}",
"intro": "Get in touch with other people to get to know them, learn from them, …",
- "notAvailable": "This community does not speak {native}",
"title": "Get in touch with others"
},
"delete": {
@@ -23,16 +22,11 @@
"deletedTitle": "Deleted feature",
"explanations": {
"hardDelete": "This feature will be deleted in OpenStreetMap. It can be recovered by an experienced contributor",
- "retagNoOtherThemes": "This feature will be reclassified and hidden from this application",
- "retagOtherThemes": "This feature will be retagged and visible in {otherThemes}",
- "selectReason": "Please, select why this feature should be deleted",
"softDelete": "This feature will be updated and hidden from this application. {reason}"
},
- "isChanged": "This feature has been changed and no longer matches this layer",
"isDeleted": "This feature is deleted",
"isntAPoint": "Only nodes can be deleted, the selected feature is a way, area or relation.",
"loading": "Inspecting properties to check if this feature can be deleted.",
- "loginToDelete": "You must be logged in to delete a feature",
"notEnoughExperience": "This feature was made by someone else.",
"onlyEditedByLoggedInUser": "This feature has only been edited by yourself, you can safely delete it.",
"partOfOthers": "This node is part of some way or relation and can not be deleted directly.",
@@ -70,8 +64,6 @@
"title": "Structured data loaded from the external website"
},
"favourite": {
- "loginNeeded": "Log in
A personal layout is only available for OpenStreetMap users",
- "panelIntro": "Your personal theme
Activate your favourite layers from all the official themes",
"reload": "Reload the data"
},
"favouritePoi": {
@@ -142,10 +134,8 @@
"add": {
"addNew": "Add {category}",
"backToSelect": "Select a different category",
- "confirmButton": "Add a {category}An Open Map
Nearby pictures
The following pictures are nearby geotagged pictures from various online services. They might help you to resolve this note.{nearby_images(open)}",
- "notFound": "I could not find {title} - remove it",
- "popupTitle": "There might be {title} here"
+ "notFound": "I could not find {title} - remove it"
},
"index": {
"#": "These texts are shown above the theme buttons when no theme is loaded",
"about": "About MapComplete",
- "featuredThemeTitle": "Featured this week",
"intro": "Maps about various topics which you can contribute to",
"learnMore": "Learn more",
"logIn": "Log in to see other themes you previously visited",
- "pickTheme": "Pick a theme below to get started.",
"title": "MapComplete"
},
+ "inspector": {
+ "menu": "Inspect a contributor"
+ },
"move": {
"cancel": "Select a different reason",
"cannotBeMoved": "This feature cannot be moved.",
@@ -681,8 +630,6 @@
"inviteToMoveAgain": "Move this point again",
"isRelation": "This feature is a relation and can not be moved",
"isWay": "This feature is a way. Use another OpenStreetMap editor to move it.",
- "loginToMove": "You must be logged in to move a point",
- "moveTitle": "Move this point",
"partOfAWay": "This feature is part of another way. Use another editor to move it.",
"partOfRelation": "This feature is part of a relation. Use another editor to move it.",
"pointIsMoved": "The point has been moved",
@@ -691,8 +638,6 @@
"reasonRelocation": "The object has been relocated to a totally different location",
"reasonSnapTo": "This should be snapped onto {name}"
},
- "selectReason": "Why do you move this object?",
- "whyMove": "Why do you want to move this point?",
"zoomInFurther": "Zoom in further to confirm this move"
},
"multi_apply": {
@@ -713,13 +658,10 @@
"isClosed": "This note is resolved",
"isCreated": "Your note has been created!",
"loginToAddComment": "Log in to add a comment",
- "loginToAddPicture": "Log in to add a picture",
"loginToClose": "Log in to close this note",
- "noteIsPublic": "This will be visible to everyone",
"noteLayerDoEnable": "Enable the layer showing notes",
"noteLayerHasFilters": "Some notes might be hidden by a filter",
"noteLayerNotEnabled": "The layer showing notes is not enabled. This layer must be enabled to add a new note",
- "notesLayerMustBeEnabled": "The 'notes'-layer is disabled. Enable it to add a note",
"reopenNote": "Reopen note",
"reopenNoteAndComment": "Reopen note and comment",
"textNeeded": "Enter a descriptive text to create a note",
@@ -747,7 +689,6 @@
"overviewVerify": "Please verify that correct species and link it to the tree",
"poweredByPlantnet": "Powered by plantnet.org",
"querying": "Querying plantnet.org with {length} images",
- "seeInfo": "See more information about the species",
"takeImages": "Take images of the tree to automatically detect the tree type",
"tryAgain": "Select a different species"
},
@@ -785,7 +726,6 @@
"averageRating": "Average rating of {n} stars",
"i_am_affiliated": "I am affiliated with this object",
"i_am_affiliated_explanation": "Check if you are an owner, creator, employee, …",
- "name_required": "A name is required in order to display and create reviews",
"no_reviews_yet": "There are no reviews yet. Be the first one!",
"non_place_review": "One review is not about a place and is not shown here.",
"non_place_reviews": "{n} reviews are not about a place and are not shown here.",
@@ -802,10 +742,8 @@
"saving_review": "Saving…",
"see_all": "See all your reviews on mangrove.reviews",
"title": "{count} reviews",
- "title_singular": "One review",
"too_long": "At most {max} characters are allowed. Your review has {amount} characters.",
"tos": "If you create a review, you agree to the TOS and privacy policy of Mangrove.reviews",
- "write_a_comment": "Leave a review…",
"your_reviews": "Your previous reviews",
"your_reviews_empty": "We couldn't find any of your previous reviews"
},
@@ -815,14 +753,11 @@
"inviteToSplit": "Split this road in smaller segments. This allows to give different properties to parts of the road.",
"loginToSplit": "You must be logged in to split a road",
"split": "Split",
- "splitAgain": "Split this road again",
- "splitTitle": "Choose on the map where the properties of this road change"
+ "splitAgain": "Split this road again"
},
"translations": {
"activateButton": "Help translate MapComplete",
- "allMissing": "No translations yet",
- "missing": "{count} untranslated strings",
- "notImmediate": "Translations are not updated directly. This typically takes a few days"
+ "missing": "{count} untranslated strings"
},
"unknown": {
"clear": "Clear answer",
@@ -833,9 +768,6 @@
"title": "Mark as unknown?"
},
"userinfo": {
- "gotoInbox": "Open your inbox",
- "gotoSettings": "Go to your settings on OpenStreetMap.org",
- "noDescription": "You don't have a description on your profile yet",
"notLoggedIn": "You have logged out"
},
"validation": {
@@ -899,8 +831,7 @@
"description": "a regular expression"
},
"slope": {
- "inputExplanation": "Place your phone on the ground with the top side of your phone pointing towards the top of the slope.",
- "inputIncorrect": "For correct measurements, make sure the arrow is within the green area."
+ "inputExplanation": "Place your phone on the ground with the top side of your phone pointing towards the top of the slope."
},
"string": {
"description": "a piece of text"
diff --git a/langs/eo.json b/langs/eo.json
index 71efe012f0..1e05673370 100644
--- a/langs/eo.json
+++ b/langs/eo.json
@@ -25,7 +25,6 @@
},
"loading": "Ŝargante…",
"loginWithOpenStreetMap": "Saluti per OpenStreetMap",
- "noNameCategory": "{category} sen nomo",
"openTheMap": "Malfermi la mapon",
"opening_hours": {
"openTill": "ĝis",
@@ -41,9 +40,6 @@
"versionInfo": "v{version} - generita je {date}"
},
"pickLanguage": "Elektu lingvon: ",
- "questions": {
- "websiteIs": "Retejo: {website}"
- },
"returnToTheMap": "Reen al la mapo",
"save": "Konservi",
"search": {
@@ -77,23 +73,18 @@
"wikipedia": {
"loading": "Ŝargante Vikipedion…",
"noResults": "Nenio troviĝis pri {search}",
- "searchWikidata": "Serĉi Vikidatumojn",
- "wikipediaboxTitle": "Vikipedio"
+ "searchWikidata": "Serĉi Vikidatumojn"
}
},
"image": {
"addPicture": "Aldoni bildon",
- "dontDelete": "Nuligi",
- "pleaseLogin": "Bonvolu saluti por aldoni bildon",
- "uploadingMultiple": "Alŝutante {count} bildojn…",
- "uploadingPicture": "Alŝutante vian bildon…"
+ "pleaseLogin": "Bonvolu saluti por aldoni bildon"
},
"index": {
"title": "Bonvenon al MapComplete"
},
"reviews": {
"saving_review": "Konservante…",
- "title": "{count} recenzoj",
- "title_singular": "Unu recenzo"
+ "title": "{count} recenzoj"
}
}
\ No newline at end of file
diff --git a/langs/es.json b/langs/es.json
index 50e7c73130..5892f5dbf7 100644
--- a/langs/es.json
+++ b/langs/es.json
@@ -13,7 +13,6 @@
"communityIndex": {
"available": "Esta comunidad habla {native}",
"intro": "Conéctate con otras personas para conocerlas, aprender de ellas,…",
- "notAvailable": "Esta comunidad no habla {native}",
"title": "Conéctate con otros"
},
"delete": {
@@ -23,16 +22,11 @@
"deletedTitle": "Elemento eliminado",
"explanations": {
"hardDelete": "Este elemento se eliminará en OpenStreetMap. Puede ser recuperado por un colaborador experimentado",
- "retagNoOtherThemes": "Este elemento se reclasificará y se ocultará en esta aplicación",
- "retagOtherThemes": "Este elemento se volverá a etiquetar y será visible en {otherThemes}",
- "selectReason": "Por favor, selecciona por qué este elemento debería eliminarse",
"softDelete": "Este elemento se actualizará y se ocultará en esta aplicación. {reason}"
},
- "isChanged": "Este elemento ha sido modificado y ya no coincide con esta capa",
"isDeleted": "Este elemento está eliminado",
"isntAPoint": "Solo se pueden eliminar nodos, el elemento seleccionado es una línea, área o relación.",
"loading": "Inspeccionando propiedades para verificar si este elemento se puede eliminar.",
- "loginToDelete": "Debes iniciar sesión para eliminar un elemento",
"notEnoughExperience": "Este elemento fue creado por otra persona.",
"onlyEditedByLoggedInUser": "Este elemento solo ha sido editado por ti, puedes eliminarlo sin problemas.",
"partOfOthers": "Este nodo es parte de alguna línea o relación y no se puede eliminar directamente.",
@@ -70,8 +64,6 @@
"title": "Datos estructurados cargados desde el sitio web externo"
},
"favourite": {
- "loginNeeded": "Iniciar sesión
Un diseño personal solo está disponible para usuarios de OpenStreetMap",
- "panelIntro": "Tu tema personal
Activa tus capas favoritas de todos los temas oficiales",
"reload": "Recargar los datos"
},
"favouritePoi": {
@@ -142,10 +134,8 @@
"add": {
"addNew": "Agregar {category}",
"backToSelect": "Selecciona una categoría diferente",
- "confirmButton": "Agregar una {category}Un mapa abierto
Imágenes cercanas
Las siguientes imágenes son imágenes geoetiquetadas cercanas de varios servicios en línea. Podrían ayudarte a resolver esta nota.{nearby_images(open)}",
- "notFound": "No pude encontrar {title}: elimínalo",
- "popupTitle": "Podría haber un/una {title} aquí"
+ "notFound": "No pude encontrar {title}: elimínalo"
},
"index": {
"#": "Estos textos se muestran sobre los botones del tema cuando no hay ningún tema cargado",
"about": "Acerca de MapComplete",
- "featuredThemeTitle": "Recomendado esta semana",
"intro": "Mapas sobre varios temas a los que puedes contribuir",
"learnMore": "Aprende más",
"logIn": "Inicia sesión para ver otros temas que has visitado anteriormente",
- "pickTheme": "Elige un tema a continuación para comenzar.",
"title": "MapComplete"
},
"move": {
@@ -658,8 +627,6 @@
"inviteToMoveAgain": "Mover este punto de nuevo",
"isRelation": "Este elemento es una relación y no se puede mover",
"isWay": "Este elemento es una línea. Usa otro editor de OpenStreetMap para moverlo.",
- "loginToMove": "Debes iniciar sesión para mover un punto",
- "moveTitle": "Mover este punto",
"partOfAWay": "Este elemento es parte de otra línea. Usa otro editor para moverlo.",
"partOfRelation": "Este elemento es parte de una relación. Usa otro editor para moverlo.",
"pointIsMoved": "El punto ha sido movido",
@@ -668,8 +635,6 @@
"reasonRelocation": "El objeto ha sido reubicado a una ubicación totalmente diferente",
"reasonSnapTo": "Esto debería ajustarse a {name}"
},
- "selectReason": "¿Por qué mueves este objeto?",
- "whyMove": "¿Por qué quieres mover este punto?",
"zoomInFurther": "Acerca más para confirmar este movimiento"
},
"multi_apply": {
@@ -690,13 +655,10 @@
"isClosed": "Esta nota está resuelta",
"isCreated": "¡Tu nota ha sido creada!",
"loginToAddComment": "Inicia sesión para agregar un comentario",
- "loginToAddPicture": "Inicia sesión para agregar una imagen",
"loginToClose": "Inicia sesión para cerrar esta nota",
- "noteIsPublic": "Esto será visible para todos",
"noteLayerDoEnable": "Habilitar la capa que muestra las notas",
"noteLayerHasFilters": "Algunas notas pueden estar ocultas por un filtro",
"noteLayerNotEnabled": "La capa que muestra las notas no está habilitada. Esta capa debe estar habilitada para agregar una nueva nota",
- "notesLayerMustBeEnabled": "La capa 'notas' está deshabilitada. Habilítala para agregar una nota",
"reopenNote": "Reabrir nota",
"reopenNoteAndComment": "Reabrir nota y comentar",
"textNeeded": "Ingresa un texto descriptivo para crear una nota",
@@ -724,7 +686,6 @@
"overviewVerify": "Por favor, verifica que la especie sea correcta y enlázala al árbol",
"poweredByPlantnet": "Impulsado por plantnet.org",
"querying": "Consultando plantnet.org con {length} imágenes",
- "seeInfo": "Ver más información sobre la especie",
"takeImages": "Toma imágenes del árbol para detectar automáticamente el tipo de árbol",
"tryAgain": "Seleccionar una especie diferente"
},
@@ -762,7 +723,6 @@
"averageRating": "Calificación promedio de {n} estrellas",
"i_am_affiliated": "Estoy afiliado con este objeto",
"i_am_affiliated_explanation": "Verifica si eres propietario, creador, empleado,…",
- "name_required": "Se requiere un nombre para mostrar y crear reseñas",
"no_reviews_yet": "Aún no hay reseñas. ¡Sé el primero!",
"non_place_review": "Una reseña no es sobre un lugar y no se muestra aquí.",
"non_place_reviews": "{n} reseñas no son sobre un lugar y no se muestran aquí.",
@@ -779,10 +739,8 @@
"saving_review": "Guardando…",
"see_all": "Ver todas tus reseñas en mangrove.reviews",
"title": "{count} reseñas",
- "title_singular": "Una reseña",
"too_long": "Se permiten como máximo {max} caracteres. Tu reseña tiene {amount} caracteres.",
- "tos": "Si creas una reseña, aceptas los T&C y la política de privacidad de Mangrove.reviews",
- "write_a_comment": "Deja una reseña…",
+ "tos": "Si creas una revisión, aceptas los TOS y la política de privacidad de Mangrove.reviews",
"your_reviews": "Tus reseñas anteriores",
"your_reviews_empty": "No pudimos encontrar ninguna de tus reseñas anteriores"
},
@@ -792,14 +750,11 @@
"inviteToSplit": "Divide esta carretera en segmentos más pequeños. Esto permite dar diferentes propiedades a partes de la carretera.",
"loginToSplit": "Debes iniciar sesión para dividir una carretera",
"split": "Dividir",
- "splitAgain": "Dividir esta carretera de nuevo",
- "splitTitle": "Elige en el mapa dónde cambian las propiedades de esta carretera"
+ "splitAgain": "Dividir esta carretera de nuevo"
},
"translations": {
"activateButton": "Ayuda a traducir MapComplete",
- "allMissing": "Aún no hay traducciones",
- "missing": "{count} cadenas sin traducir",
- "notImmediate": "Las traducciones no se actualizan directamente. Esto normalmente toma unos pocos días"
+ "missing": "{count} cadenas sin traducir"
},
"unknown": {
"clear": "Borrar respuesta",
@@ -810,9 +765,6 @@
"title": "¿Marcar como desconocido?"
},
"userinfo": {
- "gotoInbox": "Abrir tu bandeja de entrada",
- "gotoSettings": "Ir a tus ajustes en OpenStreetMap.org",
- "noDescription": "Aún no tienes una descripción en tu perfil",
"notLoggedIn": "Has cerrado sesión"
},
"validation": {
@@ -876,8 +828,7 @@
"description": "una expresión regular"
},
"slope": {
- "inputExplanation": "Coloca tu teléfono en el suelo con la parte superior de tu teléfono apuntando hacia la parte superior de la pendiente.",
- "inputIncorrect": "Para mediciones correctas, asegúrate de que la flecha esté dentro del área verde."
+ "inputExplanation": "Coloca tu teléfono en el suelo con la parte superior de tu teléfono apuntando hacia la parte superior de la pendiente."
},
"string": {
"description": "un fragmento de texto"
diff --git a/langs/eu.json b/langs/eu.json
index e6d49371ac..d06ebf63a7 100644
--- a/langs/eu.json
+++ b/langs/eu.json
@@ -13,7 +13,6 @@
"communityIndex": {
"available": "Komunitate honek {native} hitz egiten du",
"intro": "Jar zaitez harremanetan beste pertsona batzuekin, ezagutu itzazu eta ikasi eurengandik…",
- "notAvailable": "Komunitate honek ez du {native} hitz egiten",
"title": "Jarri gurekin harremaneta"
},
"delete": {
diff --git a/langs/fi.json b/langs/fi.json
index ad4194fb59..07a820d697 100644
--- a/langs/fi.json
+++ b/langs/fi.json
@@ -13,7 +13,6 @@
"communityIndex": {
"available": "Tämä yhteisö puhuu kieltä {native}",
"intro": "Ole yhteydessä muihin, jotta voit tutustua heihin, oppia heiltä, …",
- "notAvailable": "Tämä yhteisö ei puhu kieltä {native}",
"title": "Ole yhteydessä muihin"
},
"delete": {
@@ -23,16 +22,11 @@
"deletedTitle": "Poistettu ominaisuus",
"explanations": {
"hardDelete": "Tämä kohde poistetaan OpenStreetMapistä. Kokenut kartoittaja voi palauttaa sen.",
- "retagNoOtherThemes": "Tämä kohde luokitellaan uudelleen ja piilotetaan tältä sovellukselta",
- "retagOtherThemes": "Tämän kohteen ominaisuustietoja muutetaan, ja se ilmestyy näkyviin teemoissa {otherThemes}",
- "selectReason": "Valitse, miksi tämä kohde pitäisi poistaa",
"softDelete": "Tämä kohde päivitetään ja piilotetaan tässä sovelluksessa. {reason}"
},
- "isChanged": "Tätä ominaisuutta on muutettu eikä se enää kuulu tähän tasoon",
"isDeleted": "Tämä kohde on poistettu",
"isntAPoint": "Vain pisteitä voi poistaa. Valittu kohde on viiva, alue tai relaatio.",
"loading": "Tutkitaan ominaisuuksista, voiko tämän kohteen poistaa.",
- "loginToDelete": "Kohteen poistamiseksi täytyy kirjautua",
"notEnoughExperience": "Tämän kohteen loi joku muu.",
"onlyEditedByLoggedInUser": "Tätä kohdetta ei ole muokannut kukaan muu kuin sinä, joten sen voi huoletta poistaa.",
"partOfOthers": "Tämä piste on osa viivaa tai relaatiota eikä sitä voi poistaa suoraan.",
@@ -48,8 +42,6 @@
"whyDelete": "Miksi tämä kohde pitäisi poistaa?"
},
"favourite": {
- "loginNeeded": "Kirjaudu sisään
Oma asettelu on saatavilla vain OpenStreetMap-käyttäjille",
- "panelIntro": "Oma teema
Käytä suosikkitasojasi kaikista virallisista teemoista",
"reload": "Lataa data uudelleen"
},
"favouritePoi": {
@@ -120,10 +112,8 @@
"add": {
"addNew": "Lisää {category}",
"backToSelect": "Valitse toinen luokka",
- "confirmButton": "Lisää {category}Mag log-in
Ang personal na pagkakaayos ay para lang sa mga gumagamit ng OpenStreetMap",
- "panelIntro": "Pangsariling tikha
Gawing aktibo ang mga paborito galing sa mga tikhang opisyal",
"reload": "Muling pasanin ang datos"
},
"flyer": {
@@ -47,7 +43,6 @@
"about": "Madaling i-edit at mag-dagdag sa OpenStreetMap gamit ang mga partikular na tikha",
"add": {
"addNew": "Dagdagan ng {category}",
- "confirmButton": "Magdagdag ng {category}Connexion
La mise en forme personnalisée requiert un compte OpenStreetMap",
- "panelIntro": "Votre thème personnel
Activer vos couches favorites depuis les thèmes officiels",
"reload": "Recharger les données"
},
"favouritePoi": {
@@ -77,14 +82,24 @@
"editing": {
"intro": "L'utilisateur est accueilli par une carte avec des objets. Lorsqu'il en sélectionne un, les informations relatives à cet objet s'affichent."
},
+ "examples": "Il existe de nombreuses cartes thématiques, dont quelques-unes sont présentées ici.\n\nIl existe de nombreuses autres cartes thématiques en ligne : sur les soins de santé, la navigation intérieure, l'accessibilité en fauteuil roulant, les installations de traitement des déchets, les bibliothèques publiques, les passages pour piétons avec une peinture arc-en-ciel,... Découvrez-les toutes sur mapcomplete.org",
"fakeui": {
"add_images": "Ajoutez des images en quelques clics",
- "edit": "Une info fausse ou pas à jour ? Le bouton de modification est juste ici"
+ "attributes": "Affiche les attributs de manière conviviale",
+ "edit": "Une information inexacte ou pas à jour ? Le bouton de modification est juste ici",
+ "question": "Si un attribut n'est pas encore connu, MapComplete affiche une question",
+ "see_images": "Affiche des images provenant de contributeurs précédents, Wikipedia, Mapillary, …",
+ "wikipedia": "Les articles de Wikipédia liés sont affichés"
},
+ "frontParagraph": "MapComplete est une application web facile à utiliser pour collecter des géodonnées dans OpenStreetMap, permettant de collecter et de gérer des données pertinentes de manière ouverte, participative et réutilisable.\n\nDe nouvelles catégories et de nouveaux attributs peuvent être ajoutés sur demande.",
+ "lines_too": "Les lignes et les polygones sont également affichés. Des attributs et des images peuvent également être ajoutés et mis à jour sur ces objets.",
"mapcomplete": {
+ "customize": "MapComplete peut être adapté à vos besoins, avec de nouvelles couches cartographiques, de nouvelles fonctionnalités ou en utilisant les couleurs et la police de votre organisation.\nNous avons également de l'expérience dans le lancement de campagnes de crowdsourcing de géodonnées.\nContactez pietervdvn@posteo.net pour un devis.",
"intro": "MapComplete est un site qui a {mapCount} carte intéractives. Chaque carte permet d'ajouter et mettre à jour des informations. IL y a de nombreuses fonctionnalités :",
+ "li0": "Montre où se trouvent les points d'intérêt (POI)",
"li1": "Ajouter de nouveaux points et mettre à jour les infos de ceux existant",
"li2": "Ajouter facilement des informations de contact et des heures d'ouverture",
+ "li3": "Peut être placé dans d'autres sites web comme iFrame",
"li5": "Fonction d'import de jeux de données existants",
"title": "Qu'est-ce que MapComplete ?"
},
@@ -100,7 +115,6 @@
"add": {
"addNew": "Ajouter {category}",
"backToSelect": "Sélectionner une catégorie différente",
- "confirmButton": "Ajouter un/une {category} ici.Une carte ouverte
Partager cette carte
Partagez cette carte en copiant le lien suivant et envoyez-le à vos amis :",
- "thanksForSharing": "Merci d'avoir partagé !",
"title": "Partager cette carte"
},
"skip": "Passer la question",
@@ -348,27 +336,23 @@
"tuesday": "Mardi",
"wednesday": "Mercredi"
},
- "welcomeBack": "Vous êtes connecté. Bienvenue !",
"welcomeExplanation": {
"addNew": "Cliquez sur la carte pour ajouter un nouveau POI.",
"general": "Cette carte permet de visualiser et ajouter des points d’intérêt. Zoomez sur un POI et cliquez dessus pour en voir les détails ou les modifier. Les données proviennent et sont transmises avec OpenStreetMap, qui peut être librement réutilisé."
},
"wikipedia": {
- "createNewWikidata": "Créer un nouvel élément Wikidata",
"doSearch": "Rechercher ci-dessus pour voir les résultats",
"failed": "Le chargement de Wikipédia a échoué",
"fromWikipedia": "Depuis Wikipédia, l'encyclopédie libre",
"loading": "Chargement de Wikipédia…",
"noResults": "Pas de résultats pour {search}",
- "noWikipediaPage": "Cet élément Wikidata n’a pas encore de page Wikipédia correspondante.",
"previewbox": {
"born": "Né·e le : {value}",
"died": "Décédé·e le : {value}"
},
"readMore": "Lire le reste de l'article",
"searchToShort": "Votre requête est trop courte, entrez un texte plus long.",
- "searchWikidata": "Rechercher sur Wikidata",
- "wikipediaboxTitle": "Wikipédia"
+ "searchWikidata": "Rechercher sur Wikidata"
}
},
"hotkeyDocumentation": {
@@ -378,16 +362,13 @@
"key": "Combinaison de touches",
"openLayersPanel": "Ouvre le panneau fond-de-plan, couches et filtres",
"selectFavourites": "Ouvrir la page des favoris",
- "selectMapnik": "Appliquer le fond de carte OpenStreetMap-carto",
"selectSearch": "Sélectionner la barre de recherche de lieux",
"title": "Raccourcis clavier",
"translationMode": "Activer/désactiver le mode traduction"
},
"image": {
"addPicture": "Ajoutez une photo",
- "currentLicense": "Vos images seront publiées sous {license}",
"doDelete": "Supprimer l'image",
- "dontDelete": "Annuler",
"isDeleted": "Supprimé",
"nearby": {
"link": "Cette photo montre l'objet",
@@ -397,17 +378,11 @@
"pleaseLogin": "Connectez-vous pour téléverser une photo",
"respectPrivacy": "Ne photographiez ni les personnes ni les plaques d'immatriculation. Ne téléversez rien issu de Google Maps, Google Streetview ou d'autre sources soumises à des droits d'auteurs.",
"toBig": "Votre image est trop large car elle est de {actual_size}. Veuillez utiliser des images d'au maximum {max_size}",
- "uploadDone": "Votre photo est ajoutée. Merci beaucoup !",
- "uploadFailed": "L'ajout de la photo a échoué. Avez-vous accès à Internet ? Les API tierces sont-elles autorisées ? Le navigateur Brave ou UMatrix peuvent les bloquer.",
- "uploadMultipleDone": "{count} images ont été ajoutées. Merci de votre contribution !",
- "uploadingMultiple": "Mise en ligne de {count} photos…",
- "uploadingPicture": "Mise en ligne de votre photo…"
+ "uploadFailed": "L'ajout de la photo a échoué. Avez-vous accès à Internet ? Les API tierces sont-elles autorisées ? Le navigateur Brave ou UMatrix peuvent les bloquer."
},
"index": {
"#": "Ces textes sont affichés au dessus des boutons de thème quand aucun thème n'est chargé",
- "featuredThemeTitle": "Thème de la semaine",
"intro": "MapComplete est un visio-éditeur d'OpenStreetMap qui affiche des informations sur un thème défini et permet de les éditer.",
- "pickTheme": "Choisissez un thème ci-dessous pour commencer.",
"title": "Bienvenue sur MapComplete"
},
"move": {
@@ -422,8 +397,6 @@
"inviteToMoveAgain": "Déplacer ce point à nouveau",
"isRelation": "Cet élément est une relation et ne peut être déplacée",
"isWay": "Cet élément est un chemin. Veuillez utiliser un autre éditeur OpenStreetMap pour le déplacer.",
- "loginToMove": "Vous devez être connecté·e pour déplacer un point",
- "moveTitle": "Déplacer ce point",
"partOfAWay": "Cet élément fait partie d’un chemin. Utilisez un autre éditeur pour le déplacer.",
"partOfRelation": "Cet élément fait partie d’une relation. Utilisez un autre éditeur pour le déplacer.",
"pointIsMoved": "Le point a été déplacé",
@@ -431,8 +404,6 @@
"reasonInaccurate": "La position de cet objet est décalée",
"reasonRelocation": "Cet objet a été déplacé"
},
- "selectReason": "Pourquoi souhaitez vous déplacer cet objet ?",
- "whyMove": "Pourquoi souhaitez vous déplacer ce point ?",
"zoomInFurther": "Zoomez pour confirmer ce déplacement"
},
"multi_apply": {
@@ -469,7 +440,6 @@
"overviewTitle": "Espèces détectées automatiquement",
"overviewVerify": "Vérifiez que l'espèce est correcte avant de la relier à l'arbre",
"poweredByPlantnet": "Propulsé par plantnet.org",
- "seeInfo": "Voir plus d'informations sur les espèces",
"takeImages": "Prenez des photos de l'arbre pour détecter automatiquement de quel type il s'agit"
},
"privacy": {
@@ -496,15 +466,12 @@
"affiliated_reviewer_warning": "(Avis affilié)",
"attribution": "Les avis sont fournis par Mangrove Reviews et sont disponibles sous licence CC-BY 4.0.",
"i_am_affiliated": "Je suis affilié à cet objet
Cochez si vous en êtes le propriétaire, créateur, employé, …",
- "name_required": "Un nom est requis pour afficher et créer des avis",
"no_reviews_yet": "Il n'y a pas encore d'avis. Soyez le premier à en écrire un et aidez le lieu et les données ouvertes !",
"reviews_bug": "Certains de vos avis sont manquants ? Certains ne sont pas visible à cause d'un bug.",
"saved": "Avis enregistré. Merci du partage !",
"saving_review": "Enregistrement…",
"title": "{count} avis",
- "title_singular": "Un avis",
"tos": "En publiant un avis, vous êtes d'accord avec les conditions d'utilisation et la politique de confidentialité de Mangrove.reviews",
- "write_a_comment": "Laisser un avis…",
"your_reviews": "Vos précédents avis",
"your_reviews_empty": "Aucun avis n'a été trouvé"
},
@@ -513,16 +480,13 @@
"hasBeenSplit": "Cette route a été coupée",
"inviteToSplit": "Couper cette route en plusieurs segments. Cela permet d'appliquer des attributs différents pour chaque partie de la route.",
"loginToSplit": "Vous devez être connecté pour couper une route",
- "split": "Couper",
- "splitTitle": "Choisissez sur la carte où couper cette route"
+ "split": "Couper"
},
"translations": {
"activateButton": "Aider à traduire MapComplete",
"missing": "{count} segments non traduits"
},
"userinfo": {
- "gotoInbox": "Ouvrir sa boite de réception",
- "gotoSettings": "Paramètres sur OpenStreetMap.org",
"notLoggedIn": "Déconnecté"
},
"validation": {
diff --git a/langs/gl.json b/langs/gl.json
index cdcb7bd7df..ca118090df 100644
--- a/langs/gl.json
+++ b/langs/gl.json
@@ -6,15 +6,12 @@
"zoomIn": "Achégate para ollar ou editar os datos"
},
"favourite": {
- "loginNeeded": "Iniciar a sesión
O deseño personalizado só está dispoñíbel para os usuarios do OpenstreetMap",
- "panelIntro": "O teu tema personalizado
Activa as túas capas favoritas de todos os temas oficiais",
"reload": "Recargar os datos"
},
"general": {
"about": "Editar doadamente e engadir puntos no OpenStreetMap dun eido en concreto",
"add": {
"addNew": "Engadir {category} aquí",
- "confirmButton": "Engadir {category} aquí",
"intro": "Marcaches un lugar onde non coñecemos os datos.
",
"layerNotEnabled": "A capa {layer} non está activada. Faino para poder engadir un punto nesta capa",
"openLayerControl": "Abrir o control de capas",
@@ -37,10 +34,6 @@
"backgroundMap": "Mapa do fondo",
"cancel": "Desbotar",
"customThemeIntro": "Temas personalizados
Estes son temas xerados por usuarios previamente visitados.",
- "fewChangesBefore": "Responde unhas cantas preguntas sobre puntos existentes antes de engadir novos.",
- "getStartedLogin": "Entra no OpenStreetMap para comezar",
- "getStartedNewAccount": " ou crea unha nova conta",
- "goToInbox": "Abrir mensaxes",
"layerSelection": {
"title": "Seleccionar capas",
"zoomInToSeeThisLayer": "Achégate para ver esta capa"
@@ -49,14 +42,10 @@
"loginWithOpenStreetMap": "Inicia a sesión no OpenStreetMap",
"morescreen": {
"createYourOwnTheme": "Crea o teu propio tema completo do MapComplete dende cero.",
- "requestATheme": "Se queres unha tarefa personalizada, solicítaa no seguimento de problemas.",
"streetcomplete": "Outra aplicación semellante é StreetComplete."
},
- "nameInlineQuestion": "{category}: O teu nome é $$$",
- "noNameCategory": "{category} sen nome",
"noTagsSelected": "Non se seleccionaron etiquetas",
"number": "número",
- "openStreetMapIntro": "Un mapa aberto
Non sería xenial se houbera un só mapa, que todos puideran empregar e editar de xeito libre?Un só lugar para almacenar toda a información xeográfica? Entón, todos eses sitios web con mapas diferentes, pequenos e incompatíbeis (que sempre están desactualizados) xa non serían necesarios.
OpenStreetMap é ese mapa. Os datos do mapa pódense empregar de balde (con atribución e publicación de modificacións neses datos). Ademais diso, todos poden engadir de xeito ceibe novos datos e corrixir erros. Este sitio web tamén emprega o OpenStreetMap. Todos os datos proveñen de alí, e as túas respostas e correccións tamén serán engadidas alí.
Moitas persoas e aplicacións xa empregan o OpenStreetMap: Maps.me, OsmAnd, pero tamén os mapas do Facebook, Instagram, Apple e Bing son (en parte) impulsados polo OpenStreetMap. Se mudas algo aquí, tamén será reflexado nesas aplicacións, na súa seguinte actualización!
", "opening_hours": { "closed_permanently": "Pechado - sen día de abertura coñecido", "closed_until": "Pechado até {date}", @@ -70,17 +59,7 @@ "ph_not_known": " ", "ph_open": "aberto" }, - "osmLinkTooltip": "Ollar este obxecto no OpenStreetMap para ollar o historial e outras opcións de edición", "pickLanguage": "Escoller lingua: ", - "questions": { - "emailIs": "O enderezo de correo electrónico de {category} é {email}", - "emailOf": "Cal é o enderezo de correo electrónico de {category}?", - "phoneNumberIs": "O número de teléfono de {category} é {phone}", - "phoneNumberOf": "Cal é o número de teléfono de {category}?", - "websiteIs": "Páxina web: {website}", - "websiteOf": "Cal é a páxina web de {category}?" - }, - "readYourMessages": "Le todos a túas mensaxes do OpenStreetMap antes de engadir novos puntos.", "returnToTheMap": "Voltar ó mapa", "save": "Gardar", "search": { @@ -94,8 +73,7 @@ "embedIntro": "Ezt a térképet mindenki szabadon használhatja és szerkesztheti. Ez egy olyan egységes hely, ahol <i>minden</i> térinformatikai adatot tárolni lehet. Semmi szükség különböző, kicsi, nem kompatibilis és elavult térképekre.
Az OpenStreetMap (OSM) nem az ellenség térképe. A térképadatok szabadon felhasználhatók (a tulajdonlással és az adatokban bekövetkezett változások feltüntetésével). Mindenki adhat hozzá új térképadatokat és javíthat hibákat. Ez a weboldal is az OpenStreetMapet használja. Minden adat onnan származik, és a Te válaszaid és javításaid is meg fognak jelenni mindenütt.
Sok ember és alkalmazás már használja az OpenStreetMapet: például az Organic Maps vagy az OsmAnd, de a Facebook, az Instagram, az Apple és a Bing (Microsoft) térképei is (részben) az OpenStreetMap adataira támaszkodnak.
", "openTheMap": "Térkép megnyitása", - "openTheMapAtGeolocation": "Nagyítás a saját helyzetemre", "openTheMapReason": "az adatok megtekintéséhez, szerkesztéséhez és kiegészítéséhez", "opening_hours": { "all_days_from": "Nyitva minden nap: {ranges}", @@ -347,7 +322,6 @@ "monday": "Hétfő {ranges}", "not_all_rules_parsed": "Ez a nyitva tartás bonyolult. A beviteli elemben a következő szabályok nem vétetnek figyelembe:", "on_weekdays": "Nyitva hétköznap {ranges}", - "on_weekends": "Nyitva hétvégén {ranges}", "openTill": "eddig:", "open_24_7": "Éjjel-nappal nyitva", "open_during_ph": "Munkaszüneti napokon", @@ -365,7 +339,6 @@ "unknown": "Nyitva tartás ismeretlen", "wednesday": "Szerda {ranges}" }, - "osmLinkTooltip": "A szerkesztési előzmények és további szerkesztési lehetőségek megtekintéséhez nézd meg ezt az objektumot az OpenStreetMapen", "pdf": { "attr": "Térképadatok: © OpenStreetMap-közreműködők; az ODbL licenc szerint újrafelhasználható", "attrBackground": "Háttérréteg: {background}", @@ -388,14 +361,12 @@ "skippedOne": "Kihagytál egy kérdést" }, "questions": { - "emailIs": "{category} e-mail-címe: {email}", - "emailOf": "Mi az e-mail-címe ennek ({category})?", - "phoneNumberIs": "{category} telefonszáma: {phone}", - "phoneNumberOf": "Mi a telefonszáma ennek ({category})?", - "websiteIs": "Weboldal: {website}", - "websiteOf": "Mi a weboldala ennek ({category})?" + "disable": "Ne jelenjék meg többször ez a kérdés", + "disabledIntro": "Néhány kérdéstípust letiltottál. Ha újra engedélyezni szeretnél egy kérdést, kattints ide", + "disabledTitle": "Letiltott kérdések", + "enable": "Jelenjék meg ez a kérdés az összes objektumnál", + "noneDisabled": "Ha egy adott kérdéstípus nem érdekel, letilthatod. Egy kérdés letiltásához kattints a jobb felső sarokban lévő három pontra, és válaszd a „letiltás” lehetőséget" }, - "readYourMessages": "Kérjük, új objektum felvétele előtt olvasd el az összes OpenStreetMap-üzeneted.", "removeLocationHistory": "Helyelőzmények törlése", "retry": "Újrapróbálkozás", "returnToTheMap": "Vissza a térképhez", @@ -419,7 +390,6 @@ "recentThemes": "Legutóbb megnézett térképek", "recents": "Legutóbb megnézett helyek", "search": "Helyszín keresése", - "searchShort": "Keresés…", "searching": "Keresés…" }, "searchAnswer": "Beállítás keresése…", @@ -435,11 +405,9 @@ "fsUserbadge": "Engedélyezze a bejelentkezés gombot és így a módosítás lehetőségét", "fsWelcomeMessage": "Felugró üdvözlő üzenet és kapcsolódó fülek megjelenítése", "intro": "Oszd meg ezt a térképet! Másold ki az alábbi linket, és küldd el barátaidnak és családodnak:", - "openInOtherApplications": "Jelenlegi helyzet megnyitása más térképalkalmazásban", "openLayers": "Rétegek és szűrők menü megnyitása", "options": "Megosztási beállítások", "stateIsIncluded": "A megosztott link és az iframe tartalmazza a rétegek és szűrők aktuális állapotát is.", - "thanksForSharing": "Köszönjük a megosztást!", "title": "Térkép megosztása" }, "skip": "Kérdés kihagyása", @@ -535,28 +503,23 @@ "tuesday": "Kedd", "wednesday": "Szerda" }, - "welcomeBack": "Isten hozott ismét!", "welcomeExplanation": { "addNew": "Hiányzik egy elem? A bal alsó sarokban található gombbal felvihetsz egy új érdekes pontot (POI-t).", "general": "Ezen a térképen megtekinthetsz, szerkeszthetsz és felvihetsz érdekes pontokat (POI-kat). Nagyíts, hogy lásd őket, az adatok megtekintéséhez vagy szerkesztéséhez pedig koppints valamelyikre. Minden adat az OpenStreetMapről származik, és az OpenStreetMapre van mentve, amely szabadon újra felhasználható." }, "wikipedia": { - "addEntry": "További Wikipédia-oldal hozzáfűzése", - "createNewWikidata": "Új Wikidata-elem létrehozása", "doSearch": "Keress fent az eredmények megtekintéséhez", "failed": "Wikipédia-szócikk betöltése sikertelen", "fromWikipedia": "A Wikipédiából, a szabad enciklopédiából", "loading": "Wikipédia betöltése…", "noResults": "Nincs találat erre: {search}", - "noWikipediaPage": "Ennek a Wikidata-elemnek még nincs megfelelő Wikipédia-oldala.", "previewbox": { "born": "Született: {value}", "died": "Elhunyt: {value}" }, "readMore": "Teljes szócikk elolvasása", "searchToShort": "Túl rövid a keresési kifejezés, írj be egy hosszabb szöveget", - "searchWikidata": "Keresés a Wikidatán", - "wikipediaboxTitle": "Wikipédia" + "searchWikidata": "Keresés a Wikidatán" } }, "hotkeyDocumentation": { @@ -575,7 +538,6 @@ "selectItem3": "A térkép középpontjához (célkereszt) harmadik legközelebbi érdekes pont kijelölése . Csak billentyűzetes navigációval működik", "selectItemI": "A térkép középpontjához (célkereszt) {i}. legközelebbi érdekes pont kijelölése . Csak billentyűzetes navigációval működik", "selectMap": "Külső forrásból származó térkép beállítása háttérként. A két legjobb elérhető réteg között lehet váltani", - "selectMapnik": "Háttérréteg beállítása OpenStreetMap-carto-ra", "selectOsmbasedmap": "Háttérréteg beállítása egy OpenStreetMap-alapú térképre (vagy a raszteres háttérréteg letiltása)", "selectSearch": "Helyszín kereséséhez jelölje ki a keresősávot", "shakePhone": "Telefon rázása", @@ -583,10 +545,8 @@ "translationMode": "Fordítási mód be- vagy kikapcsolása" }, "image": { - "addPicture": "Kép hozzáadása", - "currentLicense": "Képeid {license} alapján lesznek közzétéve", + "addPicture": "Kép készítése", "doDelete": "Kép eltávolítása", - "dontDelete": "Mégse", "isDeleted": "Törölve", "nearby": { "close": "Panel összecsukása a környező képekkel", @@ -596,10 +556,30 @@ "seeNearby": "Közeli képek böngészése", "title": "Közeli utcakép" }, + "panoramax": { + "deletionRequested": "A jelentés be lett küldve; egy moderátor rövidesen megvizsgálja", + "freeform": "Van-e további lényeges információ?", + "otherFreeform": "Írd le, miért kellene eltávolítani ezt a képet:", + "placeholder": "Fejtsd ki, miért kellene törölni ezt a képet", + "report": { + "copyright": "A kép szerzői jog hatálya alá tartozó tartalmat jelenít meg", + "inappropriate": "A kép nem megfelelő (meztelenséget tartalmaz, gyűlöletre hív vagy nem utcakép)", + "other": "Más ok, kérjük, fejtsd ki", + "privacy": "A kép magánterületet ábrázol" + }, + "requestDeletion": "Képtörlés kérése", + "title": "Miért kellene ezt a képet véglegesen törölni?" + }, "pleaseLogin": "Kép hozzáadásához be kell jelentkezni", "processing": "A szerver feldolgozza a képet", "respectPrivacy": "Ne tölts fel képet a Google térképről, a Google Streetview-ról (utcaképről) és egyéb szerzői jog által védett forrásokból.", + "selectFile": "Kép kiválasztása a készülékedről", "toBig": "A kép túl nagy ({actual_size}). Kérjük, legfeljebb {max_size} méretű képeket használj", + "unlink": { + "button": "Kép leválasztása", + "explanation": "A kép belinkeltségének feloldásával ez a kép nem jelenik meg többé ezzel az objektummal együtt. A közeli képek között és esetleg más objektumokban azonban továbbra is meg fog jelenni.", + "title": "Megszűnjék a kép belinkelése?" + }, "upload": { "failReasons": "Lehet, hogy megszakadt az internetkapcsolatod", "failReasonsAdvanced": "Másik lehetőségként győződj meg arról, hogy a böngésződ vagy bővítményei nem blokkolnak-e harmadik féltől származó API-kat.", @@ -617,33 +597,22 @@ "uploading": "Kép feltöltése…" } }, - "uploadDone": "A kép hozzá lett adva. Köszönjük a segítséged!", - "uploadFailed": "Nem sikerült feltölteni a képet. Van-e internetkapcsolatod, és engedélyezted-e a harmadik féltől származó API-kat? A Brave böngésző vagy a uMatrix bővítmény blokkolhatja őket.", - "uploadMultipleDone": "{count} kép hozzáadva. Köszönjük a segítséget!", - "uploadingMultiple": "{count} kép feltöltése folyamatban…", - "uploadingPicture": "Kép feltöltése folyamatban…" + "uploadFailed": "Nem sikerült feltölteni a képet. Van-e internetkapcsolatod, és engedélyezted-e a harmadik féltől származó API-kat? A Brave böngésző vagy a uMatrix bővítmény blokkolhatja őket." }, "importInspector": { "title": "Importált jegyzetek felügyelete és kezelése" }, "importLayer": { - "alreadyMapped": "A térképen már van {title} – ez a pont duplikátum", "description": "Egy réteg, amely bejegyzéseket importál a következőhöz: {title}", - "importButton": "import_button({layerId}, _tags, van itt egy {title} nevű cím – felvitel a térképre,./assets/svg/addSmall.svg,,,id)", - "importHandled": "Non sarebbe perfetto se esistesse una carta geografica che chiunque può modificare e utilizzare liberamente? Un unico posto in un cui conservare tutte le informazioni geografiche? In questo modo tutti questi siti web con mappe diverse, piccole e incompatibili (che sono sempre obsolete) diverrebbero istantaneamente inutili.
OpenStreetMap è proprio questa mappa. I dati geografici possono essere usati liberamente (rispettando l’attribuzione e la pubblicazione delle modifiche di quei dati). In più, chiunque può aggiungere liberamente nuovi dati e correggere gli errori. Anche questo sito usa OpenStreetMap. Tutti i dati provengono da lì e le tue risposte e correzioni finiscono sempre lì.
Moltissime persone e applicazioni già usano OpenStreetmap: Maps.me, OsmAnd ma anche le cartine di Facebook, Instagram, Apple e Bing si basano (parzialmente) su OpenStreetMap. Tutto quello che cambi qua si rifletterà anche su quelle applicazioni (non appena avranno aggiornato i loro dati!)
", "openTheMap": "Apri la mappa", "opening_hours": { "all_days_from": "Aperto tutti i giorni {ranges}", @@ -279,7 +256,6 @@ "monday": "Il lunedì {ranges}", "not_all_rules_parsed": "Gli orari di apertura di questo negozio sono complicati. Le seguenti regole sono state ignorate per l’oggetto in ingresso:", "on_weekdays": "Aperto nei giorni feriali {ranges}", - "on_weekends": "Aperto nei fine settimana {ranges}", "openTill": "fino a", "open_24_7": "Sempre aperto", "open_during_ph": "Durante le festività questo luogo è", @@ -297,7 +273,6 @@ "unknown": "L'orario di apertura è sconosciuto", "wednesday": "Di mercoledì {ranges}" }, - "osmLinkTooltip": "Visita questo oggetto su OpenStreetMap per la cronologia o altre opzioni di modifica", "pdf": { "attr": "Dati della mappa © OpenStreetMap Contributors, riutilizzabile con licenza ODbL", "attrBackground": "Livello di sfondo: {background}", @@ -311,15 +286,6 @@ "answeredOne": "Hai risposto a una domanda", "done": "Non ci sono più domande! Grazie!" }, - "questions": { - "emailIs": "L’indirizzo email di questa {category} è {email}", - "emailOf": "Qual è l’indirizzo email di {category}?", - "phoneNumberIs": "Il numero di telefono di questa {category} è {phone}", - "phoneNumberOf": "Qual è il numero di telefono di {category}?", - "websiteIs": "Sito web: {website}", - "websiteOf": "Qual è il sito web di {category}?" - }, - "readYourMessages": "Leggi tutti i tuoi messaggi OpenStreetMap prima di aggiungere un nuovo elemento.", "removeLocationHistory": "Elimina la cronologia di geolocalizzazione", "retry": "Riprova", "returnToTheMap": "Ritorna alla mappa", @@ -329,7 +295,6 @@ "error": "Qualcosa è andato storto…", "nothing": "Non è stato trovato nulla…", "search": "Cerca un luogo", - "searchShort": "Cerca…", "searching": "Ricerca…" }, "share": "Condividi", @@ -339,7 +304,6 @@ "fsUserbadge": "Abilita il pulsante di accesso", "fsWelcomeMessage": "Mostra il messaggio di benvenuto e le schede associate", "intro": "誰もが自由に使用して編集できる1つのマップがあればクールではないでしょうか?すべての地理情報を格納するための単一の場所?そうすれば、異なる、小さくて互換性のない地図(常に時代遅れのもの)を持つウェブサイトは、必要なくなるでしょう。
OpenStreetMapこそが地図です。地図データは、(データ変更の公開と帰属表示をすれば)無料で利用できます。さらに、誰でも自由に新しいデータを追加したり、間違いを修正したりすることができます。このサイトでもOpenStreetMapを使っています。すべてのデータは、OSMからのものであり、あなたの答えと訂正もOSMに追加されます。
すでに多くの人やアプリケーションがOpenStreetMapを使っています:Maps.meや、OsmAndなど。Fさらに、acebook、Instagram、Apple-maps、Bing-mapsも(部分的に)OpenStreetMapを利用しています。ここで何かを変更すると、次の更新後にアプリケーションにも反映されます。
", "opening_hours": { "closed_permanently": "不明な期間、閉店しています", "closed_until": "{date} まで閉店", @@ -70,17 +59,7 @@ "ph_not_known": " ", "ph_open": "開店" }, - "osmLinkTooltip": "履歴とその他の編集オプションについては、OpenStreetMapのこのオブジェクトを参照してください", "pickLanguage": "言語を選択します: ", - "questions": { - "emailIs": "この{category}の電子メール・アドレスは{email}です", - "emailOf": "{category} の電子メールアドレスは何ですか?", - "phoneNumberIs": "この {category} の電話番号は{phone}です。", - "phoneNumberOf": "{category} の電話番号は何番ですか?", - "websiteIs": "Webサイト:{website}", - "websiteOf": "{category} のウェブサイトはどこですか?" - }, - "readYourMessages": "新しいポイントを追加する前に、OpenStreetMapのメッセージをすべて読んでください。", "returnToTheMap": "マップに戻る", "save": "保存", "search": { @@ -94,8 +73,7 @@ "embedIntro": "Zou het niet fantastisch zijn als er een open kaart zou zijn die door iedereen aangepast én gebruikt kan worden? Een kaart waar iedereen zijn interesses aan zou kunnen toevoegen? Dan zouden er geen duizend-en-één verschillende kleine kaartjes, websites, ... meer nodig zijn
OpenStreetMap is deze open kaart. Je mag de kaartdata gratis gebruiken (mits bronvermelding en herpublicatie van aanpassingen). Daarenboven mag je de kaart ook gratis aanpassen als je een account maakt. Ook deze website is gebaseerd op OpenStreetMap. Als je hier een vraag beantwoord, gaat het antwoord daar ook naartoe
Tenslotte zijn er reeds vele gebruikers van OpenStreetMap. Denk maar Organic Maps, OsmAnd, verschillende gespecialiseerde routeplanners, de achtergrondkaarten op Facebook, Instagram,...
;Zelfs Apple Maps en Bing-Maps gebruiken OpenStreetMap in hun kaarten!
Kortom, als je hier een punt toevoegd of een vraag beantwoord, zal dat na een tijdje ook in al dié applicaties te zien zijn.
", "openTheMap": "Raadpleeg de kaart", - "openTheMapAtGeolocation": "Ga naar jouw locatie", "openTheMapReason": "om informatie te zien, te wijzigen en toe te voegen", "opening_hours": { "all_days_from": "Elke dag geopend {ranges}", @@ -281,7 +322,6 @@ "monday": "Op maandag {ranges}", "not_all_rules_parsed": "De openingsuren zijn ingewikkeld. De volgende regels worden niet getoond bij het ingeven:", "on_weekdays": "Op weekdagen {ranges}", - "on_weekends": "In het weekend {ranges}", "openTill": "tot", "open_24_7": "Dag en nacht open", "open_during_ph": "Op een feestdag is dit", @@ -299,14 +339,14 @@ "unknown": "De openingsuren zijn niet gekend", "wednesday": "Op woensdag {ranges}" }, - "osmLinkTooltip": "Bekijk dit object op OpenStreetMap om de geschiedenis te zien en meer te kunnen aanpassen", "pdf": { "attr": "Kaartgegevens © OpenStreetMap-bijdragers, herbruikbaar volgens ODbL", "attrBackground": "Achtergrondlaag: {background}", "generatedWith": "Gemaakt met mapcomplete.org/{layoutid}", "versionInfo": "v{version} - gemaakt op {date}" }, - "pickLanguage": "Kies je taal: ", + "pickLanguage": "Kies je taal", + "poweredByMapComplete": "Powered by MapComplete - crowdsourced, thematische kaarten met OpenStreetMap", "poweredByOsm": "Gebouwd met OpenStreetMap", "questionBox": { "answeredMultiple": "Je beantwoordde {answered} vragen", @@ -321,15 +361,14 @@ "skippedOne": "Je hebt één vraag beantwoord" }, "questions": { - "emailIs": "Het email-adres van {category} is {email}", - "emailOf": "Wat is het email-adres van {category}?", - "phoneNumberIs": "Het telefoonnummer van {category} is {phone}", - "phoneNumberOf": "Wat is het telefoonnummer van {category}?", - "websiteIs": "Website: {website}", - "websiteOf": "Wat is de website van {category}?" + "disable": "Stel deze vraag niet opnieuw", + "disabledIntro": "Je hebt sommige typen vragen uitgeschakeld. Klik hier om een vraag weer in te schakelen", + "disabledTitle": "Uitgeschakelde vragen", + "enable": "Stel deze vraag voor alle kenmerken", + "noneDisabled": "Als je niet geïnteresseerd bent in een bepaald type vraag, kun je deze uitschakelen. Een vraag uitschakelen doe je door op de drie puntjes in de rechterbovenhoek te klikken en 'uitschakelen' te selecteren" }, - "readYourMessages": "Gelieve eerst je berichten op OpenStreetMap te lezen alvorens nieuwe objecten toe te voegen.", "removeLocationHistory": "Verwijder de geschiedenis aan locaties", + "retry": "Opnieuw proberen", "returnToTheMap": "Ga terug naar de kaart", "save": "Opslaan", "screenToSmall": "Open {theme} in een nieuw venster", @@ -343,27 +382,37 @@ "error": "Niet gelukt…", "instructions": "Gebruik de zoekbalk om locaties, filters of om andere kaarten te zoeken", "locations": "Plaatsen", + "nMoreFilters": "{n} meer", "nothing": "Niets gevonden…", + "nothingFor": "Geen resultaten gevonden voor {term}", "otherMaps": "Andere kaarten", "pickFilter": "Kies een filter", "recentThemes": "Recent bezochte kaarten", "recents": "Recent bekeken plaatsen", "search": "Zoek naar een locatie, filter of kaart", - "searchShort": "Zoek…", "searching": "Aan het zoeken…" }, + "searchAnswer": "Zoek een optie…", + "seeIndex": "Zie het overzich van alle thematische kaarten", "share": "Deel deze locatie", "sharescreen": { "copiedToClipboard": "Link gekopieerd naar klembord", + "documentation": "Voor meer informatie over beschikbare URL-parameters, raadpleeg de documentatie", "embedIntro": "Taka, z której każdy może swobodnie korzystać i ją edytować. Jedno miejsce do przechowywania wszystkich informacji geograficznych. Różne, małe, niekompatybilne i przestarzałe mapy nie są już więcej potrzebne.
OpenStreetMap nie jest wrogą mapą. Z danych map można korzystać dowolnie (z zachowaniem atrybucji i publikowania zmian w tych danych). Każdy może dodawać nowe dane i naprawiać błędy. Ta strona korzysta z OpenStreetMap. Stamtąd pochodzą wszystkie dane, a Twoje odpowiedzi i poprawki są wykorzystywane wszędzie.
Wiele osób i aplikacji korzysta już z OpenStreetMap: Organic Maps, OsmAnd, ale także mapy na Facebooku, Instagramie, Apple Maps i Bing Maps są (częściowo) oparte na OpenStreetMap.
", "openTheMap": "Otwórz mapę", - "openTheMapAtGeolocation": "Przybliż do twojej lokalizacji", "opening_hours": { "closed_permanently": "Zamknięte na nieokreślony czas", "closed_until": "Zamknięte do {date}", @@ -258,7 +235,6 @@ "ph_open": "otwarte", "ph_open_as_usual": "otwórz, jak zazwyczaj" }, - "osmLinkTooltip": "Zobacz ten obiekt na OpenStreetMap, aby uzyskać historię i więcej opcji edycji", "pdf": { "attr": "Dane mapy © autorzy OpenStreetMap, możliwy dalszy użytek zgodnie z ODbL", "attrBackground": "Warstwa tła: {background}", @@ -279,15 +255,6 @@ "skippedMultiple": "Pominąłeś {skipped} pytania", "skippedOne": "Pominąłeś jedno pytanie" }, - "questions": { - "emailIs": "Adres e-mail {category} to {email}", - "emailOf": "Jaki jest adres e-mail {category}?", - "phoneNumberIs": "Numer telefonu tej {category} to {phone}", - "phoneNumberOf": "Jaki jest numer telefonu do {category}?", - "websiteIs": "Strona internetowa: {website}", - "websiteOf": "Jaka jest strona internetowa {category}?" - }, - "readYourMessages": "Proszę przeczytać wszystkie wiadomości OpenStreetMap przed dodaniem nowej funkcji.", "removeLocationHistory": "Usuń historię lokalizacji", "returnToTheMap": "Wróć do mapy", "save": "Zapisz", @@ -296,7 +263,6 @@ "error": "Coś poszło nie tak…", "nothing": "Nic nie znaleziono…", "search": "Wyszukaj lokalizację", - "searchShort": "Wyszukaj…", "searching": "Szukanie…" }, "sharescreen": { @@ -306,7 +272,6 @@ "fsUserbadge": "Włącz przycisk logowania", "fsWelcomeMessage": "Pokaż wyskakujące okienko wiadomości powitalnej i powiązane zakładki", "intro": "Um que todos podem usar e editar livremente. Um único lugar para armazenar todas as informações geográficas. Mapas diferentes, pequenos, incompatíveis e desatualizados não são necessários em nenhum lugar.
O OpenStreetMap não é o mapa inimigo. Os dados do mapa podem ser usados livremente (com atribuição e publicação das alterações a esses dados). Todos podem adicionar novos dados e corrigir erros. Este site usa o OpenStreetMap. Todos os dados são de lá e suas respostas e correções são usadas em todos os lugares.
Muitas pessoas e aplicações já usam o OpenStreetMap: Organic Maps, OsmAnd, mas também os mapas no Facebook, Instagram, Apple-maps e Bing-maps são (em parte) enriquecidos com dados do OpenStreetMap.
", "openTheMap": "Abrir o mapa", - "openTheMapAtGeolocation": "Ampliar na sua localização", "opening_hours": { "all_days_from": "Aberto todos os dias {ranges}", "closed_permanently": "Fechado por tempo desconhecido", @@ -327,7 +302,6 @@ "monday": "Na segunda-feira {ranges}", "not_all_rules_parsed": "Estes horários de funcionamento são complicados. As seguintes regras são ignoradas no elemento de entrada:", "on_weekdays": "Aberto nos dias da semana {ranges}", - "on_weekends": "Aberto nos fins de semana {ranges}", "openTill": "até", "open_24_7": "Aberto 24 horas por dia, todos os dias", "open_during_ph": "Num feriado, isto está", @@ -345,7 +319,6 @@ "unknown": "As horas de abertura são desconhecidas", "wednesday": "Na quarta-feira {ranges}" }, - "osmLinkTooltip": "Ver este objeto no OpenStreetMap para ver o histórico e mais opções de edição", "pdf": { "attr": "Dados do mapa © colaboradores do OpenStreetMap, reutilizáveis sob a licença ODbL", "attrBackground": "Camada de fundo: {background}", @@ -366,15 +339,6 @@ "skippedMultiple": "Saltou {skipped} questões", "skippedOne": "Saltou uma questão" }, - "questions": { - "emailIs": "O endereço de e-mail de {category} é {email}", - "emailOf": "Qual é o endereço de e-mail de {category}?", - "phoneNumberIs": "O número de telefone de {category} é {phone}", - "phoneNumberOf": "Qual é o número de telefone de {category}?", - "websiteIs": "Site: {website}", - "websiteOf": "Qual é o site de {category}?" - }, - "readYourMessages": "Por favor, leia todas as suas mensagens do OpenStreetMap antes de adicionar um novo elemento.", "removeLocationHistory": "Eliminar o histórico de localização", "returnToTheMap": "Voltar ao mapa", "save": "Guardar", @@ -383,7 +347,6 @@ "error": "Alguma coisa correu mal…", "nothing": "Nada encontrado…", "search": "Procurar um local", - "searchShort": "Pesquisar…", "searching": "A procurar…" }, "searchAnswer": "Pesquisar uma opção…", @@ -395,7 +358,6 @@ "fsUserbadge": "Ativar o botão de iniciar sessão", "fsWelcomeMessage": "Mostrar a janela com a mensagem de boas-vindas e separadores associados", "intro": "Было бы здорово если бы была одна карта, которую каждый может свободно использовать и редактировать? Использовать как общее хранилище для всей гео-информации? Тогда, все сайты с разной, неполной и несовместимой информацией (которая обычно устарела) будут больше не нужны.
OpenStreetMap такая карта. Данные карты могу быть свободно использованы (с аннотацией и публикацией изменений к данным). Более того, каждый может свободно добавлять информацию и исправлять ошибки. Этот сайт также использует OpenStreetMap. Все данные берутся оттуда, а ваши ответы и исправления отправляются обратно туда.
Огромное количество людей уже использует OpenStreetMap: Organic Maps, OsmAnd, а также карты в Facebook, Instagram, Apple-карты и Bing-карты (частично) используют OpenStreetMap. Если вы что-то измените здесь, это также будет отражено в этих приложениях - после их следующего обновления!
", "opening_hours": { "closed_permanently": "Закрыто на неизвестный срок", "closed_until": "Закрыто до {date}", @@ -122,17 +110,7 @@ "ph_not_known": " ", "ph_open": "открыта" }, - "osmLinkTooltip": "Посмотрите этот объект на OpenStreetMap чтобы увидеть его историю или отредактировать", "pickLanguage": "Выберите язык: ", - "questions": { - "emailIs": "Адрес электронной почты у {category}: {email}", - "emailOf": "Какой адрес электронной почты у {category}?", - "phoneNumberIs": "Телефонный номер {category}: {phone}", - "phoneNumberOf": "Какой номер телефона у {category}?", - "websiteIs": "Сайт: {website}", - "websiteOf": "Какой сайт у {category}?" - }, - "readYourMessages": "Пожалуйста, прочитайте все ваши сообщения на сайте OpenStreetMap перед тем как добавлять новую точку.", "returnToTheMap": "Вернуться на карту", "save": "Сохранить", "search": { @@ -150,7 +128,6 @@ "fsUserbadge": "Включить кнопку входа в систему", "fsWelcomeMessage": "Показать всплывающее окно с приветствием и соответствующие вкладки", "intro": "Ce projet utilise les données OpenStreetMap.
", @@ -223,7 +234,7 @@ "then": "Ce commerce ne répare pas les chaussons d'escalade" } }, - "question": "Est-ce que cette cordonnerie répare les chaussons d'escalade ?" + "question": "Est-ce que cette cordonnerie répare les chaussons d'escalade ?" } }, "=presets": { @@ -253,7 +264,7 @@ "description": "Cette carte montre les réseaux de nœuds cyclistes et vous permet d'ajouter facilement de nouveaux nœuds", "layers": { "0": { - "name": "liens noeud à noeud", + "name": "Liens nœud à nœud", "tagRenderings": { "node2node-survey:date": { "override": { @@ -265,14 +276,14 @@ "title": { "mappings": { "0": { - "then": "lien noeud à noeud {ref}" + "then": "Lien nœud à nœud {ref}" } }, - "render": "lien noeud à noeud" + "render": "Lien nœud à nœud" } }, "1": { - "name": "noeuds", + "name": "Nœuds", "tagRenderings": { "node-expected_rcn_route_relations": { "question": "A combien dautres nœuds vélo ce nœud est-il lié ?", @@ -293,6 +304,14 @@ }, "render": "nœud cycliste" } + }, + "2": { + "override": { + "name": "Panneaux directionnels cyclables", + "title": { + "render": "Panneau directionnel cyclable" + } + } } }, "title": "Réseau de Nœuds Cyclistes" @@ -382,7 +401,7 @@ "title": "Rue cyclables" }, "cyclofix": { - "description": "Le but de cette carte est de présenter aux cyclistes une solution facile à utiliser pour trouver l'infrastructure appropriée à leurs besoins.Il existe un compte automatisé Mastodon qui publie un aperçu mensuel des vélos fantômes à travers le monde
", "title": "Vélo fantôme" }, + "ghostsigns": { + "description": "Une carte montrant les enseignes désaffectées sur des bâtiments", + "layers": { + "2": { + "override": { + "+tagRenderings": { + "0": { + "mappings": { + "0": { + "then": "Cette œuvre d'art est une publicité historique" + }, + "1": { + "then": "Cette œuvre d'art n'est pas une publicité historique" + } + }, + "question": "Est-ce que cette œuvre d'art est une publicité historique ?" + } + } + } + } + } + }, + "glutenfree": { + "title": "Sans gluten" + }, "grb": { "description": "Ce thème tente d’aider l’import automatique GRB.", "layers": { @@ -602,6 +649,9 @@ "description": "Sur cette carte, vous trouverez les hôtels dans votre zone", "title": "Hôtels" }, + "icecream": { + "title": "Glace" + }, "indoors": { "description": "Sur cette carte, les lieux intérieurs accessibles au public sont montrés", "title": "Intérieurs" @@ -622,6 +672,89 @@ }, "title": "Ressauts et traversées" }, + "lighthouses": { + "description": "Les phares sont des hauts bâtiments avec une lumière au sommet pour guider le trafic maritime.", + "title": "Phares" + }, + "mapcomplete-changes": { + "description": "Cette carte montre tous les changements effectués avec MapComplete", + "layers": { + "0": { + "filter": { + "0": { + "options": { + "0": { + "question": "Le nom du thème contient {search}" + } + } + }, + "1": { + "options": { + "0": { + "question": "Le nom du thème ne contient pas {search}" + } + } + }, + "2": { + "options": { + "0": { + "question": "Fait par le·a contributeur·trice {search}" + } + } + }, + "3": { + "options": { + "0": { + "question": "Pas fait par le·a contributeur·trice {search}" + } + } + }, + "4": { + "options": { + "0": { + "question": "Fait avant {search}" + } + } + }, + "5": { + "options": { + "0": { + "question": "Fait après {search}" + } + } + }, + "6": { + "options": { + "0": { + "question": "Langage utilisateur (code iso) {search}" + } + } + } + }, + "name": "Centre du groupe de modifications", + "tagRenderings": { + "contributor": { + "render": "Modification faite par {user}" + }, + "version": { + "question": "Quelle version de MapCompletee a été utilisée pour faire cette modification ?", + "render": "Fait avec {editor}" + } + } + }, + "1": { + "override": { + "tagRenderings+": { + "0": { + "render": "Plus de statistiques peuvent être trouvées ici" + } + } + } + } + }, + "shortDescription": "Afficher les modifications faites avec MapComplete", + "title": "Modifications faites avec MapComplete" + }, "maproulette": { "description": "Thème MapRoulette permettant d’afficher, rechercher, filtrer et résoudre les tâches.", "title": "Tâches MapRoulette" @@ -730,6 +863,49 @@ }, "title": "OnWheels" }, + "openlovemap": { + "description": "L'amour au creux de votre main
Open Love Map répertorie diverses informations pour adultes telles que des maisons closes, des magasins érotiques ou des clubs de strip-tease.", + "layers": { + "2": { + "override": { + "=presets": { + "0": { + "title": "un magasin érotique" + } + }, + "name": "Magasins érotiques" + } + }, + "4": { + "override": { + "=presets": { + "0": { + "title": "un distributeur de préservatifs" + } + } + } + }, + "6": { + "override": { + "=presets": { + "0": { + "title": "un cinéma érotique" + } + } + } + }, + "9": { + "override": { + "+tagRenderings": { + "0": { + "question": "De quel type d'hôtel s'agit-il ?" + } + } + } + } + }, + "title": "Open Love Map" + }, "openwindpowermap": { "description": "Une carte indiquant les éoliennes et permettant leur édition.", "title": "Générateurs d'énergie éolienne" @@ -821,6 +997,7 @@ "title": "Commerces" }, "ski": { + "description": "Tout ce dont vous avez besoin pour aller skier", "title": "Pistes de ski et remontées mécaniques" }, "sport_pitches": { @@ -1000,7 +1177,7 @@ "title": "Déchets" }, "waste_basket": { - "description": "Retrouvez les poubelles près de vous. Si une poubelle est manquante, vous pouvez l’ajouter vous même", + "description": "Retrouvez les poubelles près de vous. Si une poubelle est manquante, vous pouvez l’ajouter vous même.", "shortDescription": "Une carte des poubelles", "title": "Poubelles" } diff --git a/langs/themes/nl.json b/langs/themes/nl.json index 12a1b877dc..266a9c76c1 100644 --- a/langs/themes/nl.json +++ b/langs/themes/nl.json @@ -88,25 +88,29 @@ } } }, - "shortDescription": "BAG import helper tool", - "title": "BAG import helper" + "shortDescription": "BAG-importeerhulptool", + "title": "BAG-importeerhulp" }, "benches": { "description": "Deze kaart toont alle zitbanken die zijn opgenomen in OpenStreetMap: individuele banken en banken bij bushaltes.", "shortDescription": "Een kaart van zitbanken", "title": "Zitbanken" }, + "bicycle_parkings": { + "description": "Een kaart met alle soorten fietsenstallingen", + "title": "Fietsenstallingen" + }, "bicycle_rental": { - "description": "Op deze kaart vind je verschillende fietsverhuurpunten en fietsverhuurzaken", + "description": "Op deze kaart vind je de verschillende fietsverhuurpunten en fietsverhuurzaken die gekend zijn door OpenStreetMap", "shortDescription": "Een kaart met fietsverhuurpunten en fietsverhuurzaken", "title": "Fietsverhuur" }, "bicyclelib": { - "description": "Een fietsbibliotheek is een plaats waar men een fiets kan lenen, vaak voor een klein bedrag per jaar. Een typisch voorbeeld zijn kinderfietsbibliotheken, waar men een fiets op maat van het kind kan lenen. Is het kind de fiets ontgroeid, dan kan het te kleine fietsje omgeruild worden voor een grotere.", + "description": "Een fietsbibliotheek is een plaats waar men een fiets kan lenen, vaak voor een klein bedrag per jaar. Een typisch voorbeeld zijn kinderfietsbibliotheken, waar men een fiets op maat van het kind kan lenen. Is het kind de fiets ontgroeid, dan kan het te kleine fietsje omgeruild worden voor een grotere", "title": "Fietsbibliotheken" }, "binoculars": { - "description": "Een kaart met verrekijkers die op een vaste plaats zijn gemonteerd", + "description": "Een kaart met verrekijkers die op een vaste plaats zijn gemonteerd.", "shortDescription": "Een kaart met publieke verrekijker", "title": "Verrekijkers" }, @@ -119,11 +123,11 @@ "title": "Boekenruilkasten" }, "cafes_and_pubs": { - "description": "Cafés, kroegen en drinkgelegenheden", + "description": "Koffiehuizen, Cafés, en drinkgelegenheden", "title": "Cafés" }, "campersite": { - "description": "Deze website verzamelt en toont alle officiële plaatsen waar een camper mag overnachten en afvalwater kan lozen. Ook jij kan extra gegevens toevoegen, zoals welke services er geboden worden en hoeveel dit kot, ook afbeeldingen en reviews kan je toevoegen. De data wordt op OpenStreetMap opgeslagen en is dus altijd gratis te hergebruiken, ook door andere applicaties.", + "description": "Deze website verzamelt en toont alle officiële plaatsen waar een camper mag overnachten en afvalwater kan lozen. Ook jij kan extra gegevens toevoegen, zoals welke services er geboden worden en hoeveel dit kost. Voeg afbeeldingen en reviews toe.", "overrideAll": { "tagRenderings+": { "0": { @@ -151,8 +155,19 @@ "shortDescription": "Een wereldwijde kaart van oplaadpunten", "title": "Oplaadpunten" }, + "circular_economy": { + "description": "Verschillende items die mensen helpen om te delen, te hergebruiken of te recycleren.", + "layers": { + "5": { + "override": { + "=name": "Tweedehandswinkels" + } + } + }, + "title": "Circulaire economie" + }, "climbing": { - "description": "Op deze kaart vind je verschillende klimgelegenheden, zoals klimzalen, bolderzalen en klimmen in de natuur", + "description": "Op deze kaart vind je verschillende klimgelegenheden, zoals klimzalen, boulderzalen en klimmen in de natuur.", "descriptionTail": "De klimkaart is oorspronkelijk gemaakt door Christian Neumann op kletterspots.de.", "layers": { "0": { @@ -193,6 +208,45 @@ } } } + }, + "1": { + "override": { + "+tagRenderings": { + "0": { + "mappings": { + "0": { + "then": "Deze winkel repareert bergschoenen" + }, + "1": { + "then": "Deze winkel repareert geen bergschoenen" + } + }, + "question": "Repareert deze schoenwinkel bergschoenen?" + } + } + } + }, + "2": { + "override": { + "+tagRenderings": { + "0": { + "mappings": { + "0": { + "then": "Deze winkel repareert bergschoenen" + }, + "1": { + "then": "Deze winkel repareert geen bergschoenen" + } + }, + "question": "Repareert deze schoenmaker ook bergschoenen?" + } + }, + "=presets": { + "0": { + "title": "een schoenmaker" + } + } + } } }, "title": "Klimzalen, klimclubs en klimgelegenheden" @@ -272,6 +326,23 @@ }, "render": "Fietsknooppunt" } + }, + "2": { + "override": { + "name": "Fietswegwijzers", + "title": { + "render": "Fietswegwijzer" + } + } + }, + "3": { + "override": { + "presets": { + "0": { + "title": "een knooppuntwegwijzer" + } + } + } } }, "title": "Fietsknooppuntennetwerken" @@ -361,17 +432,25 @@ "title": "Fietsstraten en fietszones" }, "cyclofix": { - "description": "Het doel van deze kaart is om fietsers een gebruiksvriendelijke oplossing te bieden voor het vinden van de juiste infrastructuur voor hun behoeften.Er bestaat een geautomatiseerd account op Mastodon dat maandelijks een overzicht van spookfietsen wereldwijd post
", "title": "Witte Fietsen" }, + "ghostsigns": { + "description": "Een kaart met ongebruikte borden op gebouwen", + "layers": { + "2": { + "override": { + "+tagRenderings": { + "0": { + "mappings": { + "0": { + "then": "Dit kunstwerk is een historische advertentie" + }, + "1": { + "then": "Dit kunstwerk is geen historische advertentie" + } + }, + "question": "Is dit kunstwerk een historische advertentie?" + } + } + } + } + }, + "title": "Spookreclames" + }, + "glutenfree": { + "description": "Een gecrowdsourcete kaart met glutenvrije artikelen", + "title": "Glutenvrij" + }, "grb": { "description": "Dit thema helpt het GRB importeren.", "layers": { @@ -550,6 +675,9 @@ "question": "Hoeveel verdiepingen ontbreken?", "render": "Dit gebouw begint maar op de {building:min_level} verdieping" }, + "grb-reference": { + "render": "Werd geïmporteerd vanuit GRB, het referentienummer is {source:geometry:ref}" + }, "grb-street": { "question": "Wat is de straat?", "render": "De straat is {addr:street}" @@ -602,6 +730,10 @@ "shortDescription": "Grb import helper tool", "title": "GRB import helper" }, + "guideposts": { + "description": "Wegwijzers (ook wel handwijzer genoemd) zijn vaak te vinden langs officiële wandel-, fiets-, ski- of paardrijroutes om de richtingen naar verschillende bestemmingen aan te geven. Vaak zijn ze vernoemd naar een regio of plaats en geven ze de hoogte aan.\n\nDe positie van een wegwijzer kan door een wandelaar/fietser/renner/skiër worden gebruikt als bevestiging van de huidige positie, vooral als ze een gedrukte kaart zonder GPS-ontvanger gebruiken. ", + "title": "Wegwijzers" + }, "hackerspaces": { "description": "Op deze kaart kan je hackerspaces zien, toevoegen en updaten", "shortDescription": "Een kaart van hackerspaces", @@ -637,10 +769,18 @@ "description": "Op deze kaart vind je hotels in je omgeving", "title": "Hotels" }, + "icecream": { + "description": "Een kaart met ijssalons en ijsautomaten", + "title": "IJs" + }, "indoors": { "description": "Op deze kaart worden publiek toegankelijke binnenruimtes getoond", "title": "Binnenruimtes" }, + "items_with_image": { + "description": "Een kaart die alle items op OSM toont die een afbeelding hebben. Dit thema past heel slecht bij MapComplete omdat het niet mogelijk is een afbeelding toe te voegen. Dit thema is er vooral om alles in de database op te nemen, waardoor het snel afbeeldingen in de buurt kan ophalen voor andere functies", + "title": "Alle items met afbeeldingen" + }, "kerbs_and_crossings": { "description": "Een kaart met stoepranden en oversteekplaatsen.", "layers": { @@ -657,8 +797,143 @@ }, "title": "Stoepranden en oversteekplaatsen" }, + "lactosefree": { + "description": "Een gecrowdsourcete kaart met lactosevrije winkels en restaurants", + "title": "Lactosevrije winkels en restaurants" + }, + "lighthouses": { + "description": "Vuurtorens zijn hoge gebouwen met een licht erop om het scheepvaartverkeer te leiden.", + "title": "Vuurtorens" + }, + "mapcomplete-changes": { + "description": "Deze kaarten tonen alle wijzigingen die zijn gemaakt met MapComplete", + "layers": { + "0": { + "description": "Toon alle MapComplete-wijzigingen", + "filter": { + "0": { + "options": { + "0": { + "question": "Themanaam bevat {search}" + } + } + }, + "1": { + "options": { + "0": { + "question": "Themanaam bevat geen {search}" + } + } + }, + "10": { + "options": { + "0": { + "question": "Thema etymologie uitsluiten" + } + } + }, + "2": { + "options": { + "0": { + "question": "Toegevoegd door {search}" + } + } + }, + "3": { + "options": { + "0": { + "question": "Niet toegevoegd door {search}" + } + } + }, + "4": { + "options": { + "0": { + "question": "Toegevoegd vóór {search}" + } + } + }, + "5": { + "options": { + "0": { + "question": "Toegevoegd na {search}" + } + } + }, + "6": { + "options": { + "0": { + "question": "Gebruikerstaal (iso-code) {search}" + } + } + }, + "7": { + "options": { + "0": { + "question": "Gemaakt met {search}" + } + } + }, + "8": { + "options": { + "0": { + "question": "Changeset voegde minstens één afbeelding toe" + } + } + }, + "9": { + "options": { + "0": { + "question": "GRB-thema uitsluiten" + } + } + } + }, + "name": "Changeset centra", + "tagRenderings": { + "contributor": { + "question": "Welke bijdrager maakte deze verandering?", + "render": "Wijziging aangebracht door {user}" + }, + "host": { + "question": "Met welke host (website) is deze wijziging gemaakt?", + "render": "Gewijzigd met {host}" + }, + "locale": { + "question": "In welke 'locale' (taal) is deze wijziging gemaakt?", + "render": "De gebruikerstaal (locale) is {locale}" + }, + "show_changeset_id": { + "render": "Changeset {id}" + }, + "theme-id": { + "question": "Welk thema werd gebruikt voor deze wijziging?", + "render": "Verander met thema {theme}" + }, + "version": { + "question": "Welke versie van MapComplete is gebruikt voor deze wijziging?", + "render": "Gemaakt met {editor}" + } + }, + "title": { + "render": "Changeset voor {theme}" + } + }, + "1": { + "override": { + "tagRenderings+": { + "0": { + "render": "Meer statistieken vind je hier" + } + } + } + } + }, + "shortDescription": "Toont wijzigingen gemaakt met MapComplete", + "title": "Wijzigingen gemaakt met MapComplete" + }, "maproulette": { - "description": "Thema met MapRoulette taken, waar je ze kunt zoeken, filteren en ze oplossen.", + "description": "Thema met MapRoulette taken, waar je ze kunt zoeken, filteren en oplossen.", "title": "MapRoulette taken" }, "maps": { @@ -667,7 +942,7 @@ "title": "Een kaart van kaarten" }, "maxspeed": { - "description": "Deze kaart toont de maximum toegestane snelheid voor elke weg. Als er een maximumsnelheid mist of niet klopt, kan je hem hier aanpassen.", + "description": "Deze kaart toont de maximum toegestane snelheid voor elke weg. Als er een maximumsnelheid ontbreekt of niet klopt, kan je deze hier aanpassen.", "shortDescription": "Deze kaart toont de maximumsnelheid voor elke straat.", "title": "Maximale snelheden" }, @@ -690,7 +965,7 @@ "title": "Uitkijktorens" }, "onwheels": { - "description": "Op deze kaart kan je informatie rond rolstoeltoegankelijkheid zien, zoals toegangsdeuren met hun breedte en drempelhoogte, toiletten met toegankelijkheidsinformatie, recepties maar ook winkels, cafés en restaurants.", + "description": "Op deze kaart kan je rolstoeltoegankelijke plaatsen vinden en toevoegen", "layers": { "19": { "override": { @@ -765,6 +1040,79 @@ }, "title": "OnWheels" }, + "openlovemap": { + "description": "Liefde in de palm van je hand
Open Love Map geeft een overzicht van verschillende items voor volwassenen, zoals bordelen, erotische winkels en stripclubs.", + "layers": { + "2": { + "override": { + "=presets": { + "0": { + "title": "een erotiekwinkel" + } + }, + "name": "Erotiekwinkels", + "tagRenderings+": { + "0": { + "mappings": { + "0": { + "then": "Deze winkel biedt soft BDSM-accessoires, zoals zachte handboeien, een 'fifty-shade-of-grey'-starterset, ..." + }, + "1": { + "then": "Deze winkel biedt gespecialiseerde BDSM-benodigdheden, zoals spreidstangen, benodigdheden voor naaldspellen, medische bondagebenodigdheden, slagwerktuigen, kluisters, metalen kleuren, boeien, tepelklemmen, shibari-accessoires, ..." + }, + "2": { + "then": "Deze winkel biedt 'pet play'-accessoires, zoals puppymaskers, dierenmaskers, ponyspellen, staarten, hoefschoenen, ..." + }, + "3": { + "then": "Deze winkel biedt leren kledij aan, waaronder broeken en shirts die je in het dagelijks leven kunt gebruiken tot en met leren harnassen" + }, + "4": { + "then": "Deze winkel biedt uniformen voor rollenspelen aan, zoals verpleegsteruniformen, militaire uniformen, politie, schoolmeisje, Franse dienstmeid, ..." + } + }, + "question": "Biedt deze winkel fetisjspullen aan?" + } + } + } + }, + "4": { + "override": { + "=presets": { + "0": { + "title": "een condoomautomaat" + } + } + } + }, + "6": { + "override": { + "=presets": { + "0": { + "title": "een erotiekcinema" + } + } + } + }, + "9": { + "override": { + "+tagRenderings": { + "0": { + "question": "Welk type hotel is dit?" + } + } + } + } + }, + "overrideAll": { + "tagRenderings+": { + "0": { + "question": "Heeft {title()} een privévideocabine?", + "questionHint": "Dit is voor gebruik door één persoon." + } + } + }, + "title": "Open Love Kaart" + }, "openwindpowermap": { "description": "Een kaart om windturbines te tonen en te bewerken.", "title": "Windmolens" @@ -780,7 +1128,7 @@ "title": "Parking" }, "personal": { - "description": "Stel je eigen thema samen door lagen te combineren van alle andere themas", + "description": "Stel je eigen thema samen door lagen te combineren van alle andere themas. Open Selectie lagen om gegevens te tonen", "title": "Persoonlijk thema" }, "pets": { @@ -803,7 +1151,7 @@ "override": { "presets": { "0": { - "description": "Een winkel waar je je hond in bijna heel de winkel mag meenemen", + "description": "Een winkel waar je je hond in bijna overal mag meenemen", "title": "Hondvriendelijke winkels" } } @@ -847,7 +1195,7 @@ "title": "Postcodes" }, "postboxes": { - "description": "Op deze kaart kan je informatie over brievenbussen en postkantoren vinden en toevoegen. Je kan deze kaart gebruiken om te achterhalen waar je je volgende postkaart naar kan sturen! :)Кожен може вільно використовувати та редагувати. Єдине місце для зберігання всієї геоінформації. Різні, маленькі, несумісні та застарілі мапи ніде не потрібні.
OpenStreetMap це не ворожа мапа. Дані мапи можна використовувати вільно (з зазначенням авторства та публікацією змін цих даних). Кожен може додавати нові дані та виправляти помилки. Цей вебсайт використовує OpenStreetMap. Звідти надходять усі дані, а ваші відповіді та виправлення використовуються всюди.
Багато людей та застосунків вже використовують OpenStreetMap: Organic Maps, OsmAnd, а також мапи у Facebook, Instagram, Apple-maps і Bing-maps (частково) працюють на OpenStreetMap.
", "openTheMap": "Перейти до мапи", - "openTheMapAtGeolocation": "Наблизьтесь до своєї локації", "openTheMapReason": "для перегляду, редагування та додавання інформації", "opening_hours": { "all_days_from": "Працює щодня {ranges}", @@ -347,7 +322,6 @@ "monday": "У понеділок {ranges}", "not_all_rules_parsed": "Ці години роботи є складними. У вхідному елементі ігноруються наступні правила:", "on_weekdays": "Працює по буднях {ranges}", - "on_weekends": "Працює на вихідних {ranges}", "openTill": "до тих пір, поки", "open_24_7": "Працюємо цілодобово", "open_during_ph": "У святкові дні —", @@ -365,7 +339,6 @@ "unknown": "Години роботи невідомі", "wednesday": "У середу {ranges}" }, - "osmLinkTooltip": "Перегляньте цей обʼєкт на OpenStreetMap для перегляду історії та інших можливостей редагування", "pdf": { "attr": "Дані мапи © Учасники OpenStreetMap, можуть бути використані на умовах ODbL", "attrBackground": "Фоновий шар: {background}", @@ -388,14 +361,12 @@ "skippedOne": "Ви пропустили одне питання" }, "questions": { - "emailIs": "Електронна адреса {category}: {email}", - "emailOf": "Яка адреса е-пошти у {category}?", - "phoneNumberIs": "Номер телефону цієї {category} є {phone}", - "phoneNumberOf": "Який номер телефону {category}?", - "websiteIs": "Веб-сайт: {website}", - "websiteOf": "Що являє собою веб-сайт {category}?" + "disable": "Не ставте це питання знову", + "disabledIntro": "Ви вимкнули якийсь тип запитань. Щоб увімкнути питання знову, натисніть їх тут", + "disabledTitle": "Відключені питання", + "enable": "Задайте це питання для всіх об'єктів", + "noneDisabled": "Якщо вас не цікавить певний тип запитань, вимкніть його. Щоб вимкнути запитання, клацніть на три крапки у верхньому правому куті та виберіть \"вимкнути\"" }, - "readYourMessages": "Будь ласка, прочитайте всі ваші OpenStreetMap-повідомлення перед додаванням нового об'єкту.", "removeLocationHistory": "Видалити історію місцезнаходжень", "retry": "Повторити", "returnToTheMap": "Повернутися до карти", @@ -419,7 +390,6 @@ "recentThemes": "Нещодавно відвідані мапи", "recents": "Нещодавно відвідані місця", "search": "Пошук місцезнаходження", - "searchShort": "Шукати…", "searching": "Пошук…" }, "searchAnswer": "Знайдіть варіант…", @@ -435,11 +405,9 @@ "fsUserbadge": "Увімкніть кнопку входу і, таким чином, можливість вносити зміни", "fsWelcomeMessage": "Показати спливаюче вікно привітального повідомлення та пов'язані з ним вкладки", "intro": "Поділіться цією мапою, скопіювавши посилання нижче та надіславши її друзям і родичам:", - "openInOtherApplications": "Відкрийте поточне місцезнаходження за допомогою іншої картографічної програми", "openLayers": "Відкрити меню шарів і фільтрів", "options": "Параметри спільного використання", "stateIsIncluded": "Поточний стан шарів і фільтрів відображається у спільному посиланні та iframe.", - "thanksForSharing": "Дякуємо, що поділилися!", "title": "Поділіться цією мапою" }, "skip": "Пропустити це питання", @@ -464,23 +432,58 @@ "name": "Анонім" }, "public": { - "docs": "Ваш трек буде видно всім, як у вашому профілі користувача, так і в списку GPS-треків на openstreetmap.org" + "docs": "Ваш трек буде видно всім, як у вашому профілі користувача, так і в списку GPS-треків на openstreetmap.org", + "name": "Публічний" } }, - "title": "Завантажте свій трек на OpenStreetMap.org" + "title": "Завантажте свій трек на OpenStreetMap.org", + "uploadFinished": "Ваш трек завантажено!", + "uploading": "Завантажуємо трасування…" }, + "uploadPending": "{count} змін на розгляді", "uploadPendingSingle": "Очікується одна зміна", + "uploadingChanges": "Завантаження змін…", "useSearch": "Скористайтеся пошуком вище, щоб побачити більше варіантів", + "visualFeedback": { + "closestFeaturesAre": "{n} елементи у вікні перегляду.", + "directionsAbsolute": { + "E": "схід", + "N": "північ", + "NE": "північний схід", + "NW": "північний захід", + "S": "південь", + "SE": "південний схід", + "SW": "південний захід", + "W": "захід" + }, + "directionsRelative": { + "left": "ліворуч", + "right": "праворуч", + "sharp_left": "різко ліворуч", + "sharp_right": "різко праворуч", + "slight_left": "трохи ліворуч", + "slight_right": "трохи правіше", + "straight": "прямо вперед" + }, + "east": "Рухаємося на схід", + "fromGps": "{distance} {direction} від вашого місцезнаходження", + "fromMapCenter": "{distance} {direction} від центру карти", + "in": "Збільшення масштабу до рівня {z}", + "islocked": "Перегляд заблоковано за GPS-локацією, переміщення вимкнено. Натисніть кнопку геолокації, щоб розблокувати.", + "locked": "Вигляд тепер заблоковано за GPS-локацією, переміщення вимкнено.", + "navigation": "Використовуйте клавіші зі стрілками, щоб перемістити карту, натисніть пробіл, щоб вибрати найближчий об’єкт. Натисніть цифру, щоб вибрати місцезнаходження далі." + }, "waitingForGeopermission": "Очікуємо вашого дозволу на використання геолокації…", "waitingForLocation": "Пошук вашого поточного місцезнаходження…", - "welcomeBack": "З поверненням!", "welcomeExplanation": { "addNew": "Відсутній об'єкт? Використовуйте кнопку внизу ліворуч, щоб додати новий об'єкт.", "general": "На цій мапі ви можете переглядати, редагувати і додавати точки інтересу. Змініть масштаб, щоб побачити POI, торкніться одного з них, щоб переглянути або відредагувати інформацію. Всі дані отримані з OpenStreetMap і збережені в ньому, їх можна вільно використовувати повторно." }, "wikipedia": { "doSearch": "Шукайте вище, щоб побачити результати", + "failed": "Не вдалося завантажити запис у Вікіпедії", "fromWikipedia": "З Вікіпедії, вільної енциклопедії", + "loading": "Завантаження Вікіпедії…", "noResults": "Нічого не знайдено для {search}", "previewbox": { "born": "Народився: {value}", @@ -504,7 +507,6 @@ "selectItem3": "Виберіть POI, який є третім найближчим елементом до центру мапи (перехрестя). Тільки якщо використовується клавіатурна навігація", "selectItemI": "Виберіть POI, який є {i}-м найближчим елементом до центру мапи (перехрестя). Тільки якщо використовується клавіатурна навігація", "selectMap": "Установіть фон мапи із зовнішніх джерел. Перемикається між двома найкращими доступними шарами", - "selectMapnik": "Встановіть фоновий шар на OpenStreetMap-carto", "selectOsmbasedmap": "Встановіть фоновий шар на мапі на основі OpenStreetMap (або вимкніть фоновий растровий шар)", "selectSearch": "Виберіть рядок пошуку, щоб знайти місцезнаходження", "title": "Гарячі клавіші" @@ -516,20 +518,21 @@ "seeNearby": "Перегляньте фотографії поблизу" }, "respectPrivacy": "Не завантажуйте зображення з Google Maps, Google Streetview або інших захищених авторським правом джерел.", + "selectFile": "Виберіть зображення зі свого пристрою", "upload": { "failReasons": "Можливо, ви втратили зв'язок з інтернетом", "failReasonsAdvanced": "Крім того, переконайтеся, що ваш браузер і розширення не блокують сторонні API.", "multiple": { - "done": "{count} зображення успішно завантажено. Дякуємо!" + "done": "{count} зображення успішно завантажено. Дякуємо!", + "uploading": "{count} зображень завантажуються…" }, "one": { - "failed": "Вибачте, ми не змогли завантажити ваше зображення" + "failed": "Вибачте, ми не змогли завантажити ваше зображення", + "uploading": "Ваше зображення завантажується…" } } }, - "importLayer": { - "nearbyImagesIntro": "如果有一份地圖,任何人都能使用與自由編輯,單一的地圖能夠儲存所有地理相關資訊。不同的、範圍小的,不相容甚至過時不再被需要的地圖。
開放街圖不是敵人的地圖,人人都能自由使用這些圖資, (只要署名與公開變動這資料)。任何人都能新增新資料與修正錯誤,這些網站也用開放街圖,資料也都來自開放街圖,你的答案與修正也會加被用到/p>
許多人與應用程式已經採用開放街圖了:Organic Maps、OsmAnd,還有 Facebook、Instagram,蘋果地圖、Bing 地圖(部分)採用開放街圖。
", "openTheMap": "開啟地圖", - "openTheMapAtGeolocation": "縮放到你的位置", "openTheMapReason": "以檢視、編輯和增加資訊", "opening_hours": { "all_days_from": "每天都有營業 {ranges}", @@ -333,7 +308,6 @@ "monday": "星期一時 {ranges}", "not_all_rules_parsed": "這間店的開放時間相當複雜,在輸入元素時忽略接下來的規則:", "on_weekdays": "週間營業 {ranges}", - "on_weekends": "週末營業 {ranges}", "openTill": "結束時間", "open_24_7": "24小時營業", "open_during_ph": "國定假日的時候,這個場所是", @@ -351,7 +325,6 @@ "unknown": "營業時間未知", "wednesday": "星期三時 {ranges}" }, - "osmLinkTooltip": "在開放街圖歷史和更多編輯選項下面來瀏覽這物件", "pdf": { "attr": "地圖資料 @ 開放街圖貢獻者,採用 ODbL 授權可再利用", "attrBackground": "背景圖層:{background}", @@ -373,15 +346,6 @@ "skippedMultiple": "你跳過 {skipped} 問題", "skippedOne": "你跳過一個問題" }, - "questions": { - "emailIs": "{category} 的電子郵件地址是{email}", - "emailOf": "{category} 的電子郵件地址是?", - "phoneNumberIs": "此 {category} 的電話號碼為 {phone}", - "phoneNumberOf": "{category} 的電話號碼是?", - "websiteIs": "網站:{website}", - "websiteOf": "{category} 的網站網址是?" - }, - "readYourMessages": "請先閱讀開放街圖訊息之前再來新增新圖徵。", "removeLocationHistory": "刪除位置歷史", "retry": "重試", "returnToTheMap": "回到地圖", @@ -391,7 +355,6 @@ "error": "有狀況發生了…", "nothing": "沒有找到…", "search": "搜尋地點", - "searchShort": "搜尋…", "searching": "搜尋中…" }, "searchAnswer": "搜尋選項…", @@ -410,7 +373,6 @@ "openLayers": "開啟圖層和過濾器選單", "options": "分享選項", "stateIsIncluded": "目前的圖層和過濾器狀態已包含在分享連結和 iframe 中。", - "thanksForSharing": "感謝分享!", "title": "分享這份地圖" }, "skip": "跳過這問題", @@ -506,28 +468,23 @@ "tuesday": "星期二", "wednesday": "星期三" }, - "welcomeBack": "歡迎回來!", "welcomeExplanation": { "addNew": "有物件遺漏嗎?使用左下角的按鈕來新增新興趣點。", "general": "在這份地圖,你可以檢視、編輯與新增興趣點。在附近放大來檢視興趣點,點一個來檢視或是編輯資訊。所有資料來源以及儲存到開放街圖,能夠自由被再利用。" }, "wikipedia": { - "addEntry": "新增其他維基媒體頁面", - "createNewWikidata": "新增新的的 Wikidata 項目", "doSearch": "搜尋來檢視結果", "failed": "無法載入維基百科頁面", "fromWikipedia": "從自由的百科全書維基百科來的", "loading": "載入維基百科中…", "noResults": "{search}找不到結果", - "noWikipediaPage": "這個 Wikidata 項目還沒有相對應的維基百科頁面。", "previewbox": { "born": "出生:{value}", "died": "死亡:{value}" }, "readMore": "閱讀剩下的條目內容", "searchToShort": "你的搜尋檢索太短了,請輸入長一點的文字", - "searchWikidata": "在 Wikidata 搜尋", - "wikipediaboxTitle": "維基百科" + "searchWikidata": "在 Wikidata 搜尋" } }, "hotkeyDocumentation": { @@ -546,7 +503,6 @@ "selectItem3": "選擇第三接近地圖中心(十字)的 POI,只有在鍵盤瀏覽時才使用", "selectItemI": "選擇第 {i} 接近地圖中心(十字)的 POI,只有在鍵盤瀏覽時才使用", "selectMap": "從外部來源設定地圖的背景,切換兩個最佳可用的圖層", - "selectMapnik": "設定背景圖層為 OpenStreetMap-carto", "selectOsmbasedmap": "設定背景圖層以開放街圖為基準地圖 (或是停用背景點陣圖層)", "selectSearch": "選擇搜尋欄位的搜尋位置", "shakePhone": "晃動你的手機", @@ -555,9 +511,7 @@ }, "image": { "addPicture": "新增圖片", - "currentLicense": "你的圖片會以 {license} 釋出", "doDelete": "移除圖片", - "dontDelete": "取消", "isDeleted": "已刪除", "nearby": { "close": "以附近圖片收起面板", @@ -586,33 +540,22 @@ "uploading": "你的影像已經上傳了…" } }, - "uploadDone": "已經新增你的照片,謝謝你的協助!", - "uploadFailed": "無法上傳您的圖片。您是否已連線至網際網路,並允許第三方 API?Brave 瀏覽器或 uMatrix 外掛程式都可能會封鎖它們。", - "uploadMultipleDone": "已經新增 {count} 圖片,謝謝你的幫忙!", - "uploadingMultiple": "正在上傳 {count} 張圖片…", - "uploadingPicture": "正在上傳你的圖片…" + "uploadFailed": "無法上傳您的圖片。您是否已連線至網際網路,並允許第三方 API?Brave 瀏覽器或 uMatrix 外掛程式都可能會封鎖它們。" }, "importInspector": { "title": "檢視與管理匯入註解" }, "importLayer": { - "alreadyMapped": "{title} 已經在地圖上了 - 這個點重覆了", "description": "能夠為 {title} 匯入項目的圖層", - "importButton": "import_button({layerId}, _tags, 我在這邊發現 {title} - 新增到地圖,./assets/svg/addSmall.svg,,,id)", - "importHandled": "
+
+
+ |
+ |||||||
+ | |||||||
{step.version} | +{layer?.id ?? "Unknown layer"} | + {#if diff.oldValue === undefined} +{diff.key} | +{diff.value} | + {:else if diff.value === undefined } +{diff.key} | +{diff.value} | + {:else} +{diff.key} | +{diff.oldValue} → {diff.value} | + {/if} + + +
+ + | ++ + + | ++ + | +Remove | +
+ + | ++ {c.visitedTime} + | ++ + | +
+ |
+