diff --git a/Docs/BuiltinIndex.md b/Docs/BuiltinIndex.md
index 8b17190dc..dd168cdcb 100644
--- a/Docs/BuiltinIndex.md
+++ b/Docs/BuiltinIndex.md
@@ -50,6 +50,7 @@
+ [export_as_gpx](#export_as_gpx)
+ [export_as_geojson](#export_as_geojson)
+ [minimap](#minimap)
+ + [contact](#contact)
+ [payment-options-split](#payment-options-split)
+ [denominations-coins](#denominations-coins)
+ [denominations-notes](#denominations-notes)
@@ -219,7 +220,6 @@
- climbing_gym
- dentist
- fitness_centre
- - fitness_station
- food
- kindergarten_childcare
- pharmacy
@@ -264,7 +264,6 @@
- food
- governments
- hackerspace
- - hospital
- hotel
- kindergarten_childcare
- nature_reserve
@@ -303,7 +302,6 @@
- food
- governments
- hackerspace
- - hospital
- hotel
- kindergarten_childcare
- pharmacy
@@ -339,7 +337,6 @@
- food
- governments
- hackerspace
- - hospital
- hotel
- kindergarten_childcare
- pharmacy
@@ -406,6 +403,7 @@
- bike_repair_station
- charging_station
- defibrillator
+ - fitness_station
- hackerspace
- parcel_lockers
- recycling
@@ -773,6 +771,17 @@
+### contact
+
+
+
+
+
+ - hospital
+
+
+
+
### payment-options-split
diff --git a/Docs/BuiltinQuestions.md b/Docs/BuiltinQuestions.md
index 7c1799176..64740ea8b 100644
--- a/Docs/BuiltinQuestions.md
+++ b/Docs/BuiltinQuestions.md
@@ -304,6 +304,7 @@ Which methods of payment are accepted here?
- Cash is accepted here
- Payment cards are accepted here
+ - Payment by QR-code is possible here
@@ -318,6 +319,7 @@ Which methods of payment are accepted here?
- Cash is accepted here
- Payment cards are accepted here
+ - Payment by QR-code is possible here
- Coins are accepted here
- Bank notes are accepted here
- Debit cards are accepted here
@@ -336,6 +338,7 @@ Which methods of payment are accepted here?
- Cash is accepted here
- Payment cards are accepted here
+ - Payment by QR-code is possible here
- Payment is done using a dedicated app
- Payment is done using a membership card
diff --git a/Docs/CalculatedTags.md b/Docs/CalculatedTags.md
index b5571ca77..65cc1d4b1 100644
--- a/Docs/CalculatedTags.md
+++ b/Docs/CalculatedTags.md
@@ -11,7 +11,8 @@
- [Metatags calculated by MapComplete](#metatags-calculated-by-mapcomplete)
+ [_lat, _lon](#_lat,-_lon)
+ [_layer](#_layer)
- + [_surface, _surface:ha](#_surface,-_surfaceha)
+ + [_surface](#_surface)
+ + [_surface:ha](#_surfaceha)
+ [_length, _length:km](#_length,-_lengthkm)
+ [Theme-defined keys](#theme-defined-keys)
+ [_country](#_country)
@@ -72,11 +73,21 @@ The layer-id to which this feature belongs. Note that this might be return any a
-### _surface, _surface:ha
+### _surface
-The surface area of the feature, in square meters and in hectare. Not set on points and ways
+The surface area of the feature in square meters. Not set on points and ways
+
+This is a lazy metatag and is only calculated when needed
+
+
+
+### _surface:ha
+
+
+
+The surface area of the feature in hectare. Not set on points and ways
This is a lazy metatag and is only calculated when needed
@@ -242,7 +253,7 @@ To enable this feature, add a field `calculatedTags` in the layer object, e.g.:
"name=feat.properties.name ?? feat.properties.ref ?? feat.properties.operator",
- "_distanceCloserThen3Km=feat.distanceTo( some_lon, some_lat) < 3 ? 'yes' : 'no'"
+ "_distanceCloserThen3Km=distanceTo(feat)( some_lon, some_lat) < 3 ? 'yes' : 'no'"
]
@@ -258,7 +269,7 @@ The above code will be executed for every feature in the layer. The feature is a
- `lat` and `lon` contain the latitude and longitude
-Some advanced functions are available on **feat** as well:
+Some advanced functions are available as well. Due to technical reasons, they should be used as `funcname(feat)(arguments)`.
- [distanceTo](#distanceTo)
- [overlapWith](#overlapWith)
@@ -285,7 +296,7 @@ If the current feature is a point, all features that this point is embeded in ar
The returned value is `{ feat: GeoJSONFeature, overlap: number}[]` where `overlap` is the overlapping surface are (in m²) for areas, the overlapping length (in meter) if the current feature is a line or `undefined` if the current feature is a point.
The resulting list is sorted in descending order by overlap. The feature with the most overlap will thus be the first in the list.
-For example to get all objects which overlap or embed from a layer, use `_contained_climbing_routes_properties=feat.overlapWith('climbing_route')`
+For example to get all objects which overlap or embed from a layer, use `_contained_climbing_routes_properties=overlapWith(feat)('climbing_route')`
Also see [enclosingFeatures](#enclosingFeatures) which can be used to get all objects which fully contain this feature
diff --git a/Docs/Development_deployment.md b/Docs/Development_deployment.md
index 0ef50621e..5d1fa1e20 100644
--- a/Docs/Development_deployment.md
+++ b/Docs/Development_deployment.md
@@ -1,7 +1,7 @@
Development and deployment
==========================
-There are various scripts to help setup MapComplete for deployment and develop-deployment.
+There are various scripts to help set up MapComplete for developing and for deployment.
This documents attempts to shed some light on these scripts.
@@ -16,20 +16,22 @@ At its core, MapComplete is a static (!) website. There are no servers to host.
The data is fetched from Overpass/OSM/Wikidata/Wikipedia/Mapillary/... and written there directly. This means that any
static file server will do to create a self-hosted version of MapComplete.
-Development
------------
+Dependencies
+------------
-**Windows users**: All scripts are made for linux devices. Use the Ubuntu terminal for Windows (or even better - make
-the switch ;) ). If you are using Visual Studio Code you can use
-a [WSL Remote](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-wsl) window, or use the
-Devcontainer (see more details later).
+`make` , `python3`, `g++`
-You need at least 3Gb RAM available to run MapComplete, but you'll preferably have 8GB of free RAM available.
+(Nix users may run `nix-env -iA nixos.gnumake nixos.gdc nixos.python3`)
+
+Development using *NIX
+----------------------
+
+You need at least 3GB RAM available to run MapComplete, but you'll preferably have 8GB of free RAM available.
To develop and build MapComplete, you
0. Make a fork and clone the repository. (We recommend a shallow clone with `git clone --filter=blob:none Some wands might have different opening hours. Many hospitals allow visits during emergencies too. Some wands might have different opening hours. Many hospitals allow visits during emergencies too. Some wands might have different opening hours. Many hospitals allow visits during emergencies too. Einige Krankenhäuser haben möglicherweise andere Öffnungszeiten. Viele Krankenhäuser erlauben Besuche auch in Notfällen. Na Mastodonu existuje automatizovaný účet, který posílá měsíční přehled kol duchů po celém světě Hi ha un compte automatitzat a Mastodon que publica una visió mensual de les bicicletes fantasma a tot el món Lo utilizamos para añadir información de OpenStreetMap en un único tema. Responde preguntas, y en minutos tus contribuciones estarán disponibles en todos lados. El mantenedor del tema define elementos, preguntas e idiomas para él. MapComplete siempre ofrece el siguiente paso para aprender más sobre OpenStreetMap. ¿Te fijaste en un problema? Tienes una petición de característica?¿Quieres ayudar a traducir? Ve al código fuente o issue tracker. ¿Quieres ver tu progreso? Sigue a la cuenta de ediciones en OsmCha.
' (in the MapComplete.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (This is only shown if cycleway:traffic_sign=BE:D7|cycleway:traffic_sign~^(BE:D7;.*)$)",
- "value": "BE:D7;BE:M6"
- },
- {
- "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.osm.be theme 'OSM for the blind') (This is only shown if cycleway:traffic_sign=BE:D7|cycleway:traffic_sign~^(BE:D7;.*)$)",
- "value": "BE:D7;BE:M13"
- },
- {
- "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.osm.be theme 'OSM for the blind') (This is only shown if cycleway:traffic_sign=BE:D7|cycleway:traffic_sign~^(BE:D7;.*)$)",
- "value": "BE:D7;BE:M14"
- },
- {
- "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.osm.be theme 'OSM for the blind') (This is only shown if cycleway:traffic_sign=BE:D7|cycleway:traffic_sign~^(BE:D7;.*)$)",
- "value": "BE:D7;BE:M7"
- },
- {
- "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.osm.be theme 'OSM for the blind') (This is only shown if cycleway:traffic_sign=BE:D7|cycleway:traffic_sign~^(BE:D7;.*)$)",
- "value": "BE:D7;BE:M15"
- },
- {
- "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.osm.be theme 'OSM for the blind') (This is only shown if cycleway:traffic_sign=BE:D7|cycleway:traffic_sign~^(BE:D7;.*)$)",
- "value": "BE:D7;BE:M16"
- },
- {
- "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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (This is only shown if highway=cycleway|highway=path)",
- "value": "kerb"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme OSM for the blind has a layer Crossings showing features with this tag",
- "value": "traffic_signals"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme OSM for the blind 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.osm.be theme 'OSM for the blind') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Crossings allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Crossings allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Crossings allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Crossings allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'OSM for the blind') (This is only shown if highway=crossing)",
- "value": "uncontrolled"
- },
- {
- "key": "crossing",
- "description": "Layer 'Crossings' shows crossing=traffic_signals with a fixed text, namely 'Crossing with traffic signals' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind') (This is only shown if highway=crossing)",
- "value": "traffic_signals"
- },
- {
- "key": "crossing",
- "description": "Layer 'Crossings' shows crossing=zebra with a fixed text, namely 'Zebra crossing' (in the MapComplete.osm.be theme 'OSM for the blind') (This is only shown if highway=crossing)",
- "value": "zebra"
- },
- {
- "key": "crossing",
- "description": "Layer 'Crossings' shows crossing=unmarked with a fixed text, namely 'Crossing without crossing markings' and allows to pick this as a default answer (in the MapComplete.osm.be 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.osm.be theme 'OSM for the blind') (This is only shown if crossing=uncontrolled)",
- "value": "zebra"
- },
- {
- "key": "crossing_ref",
- "description": "Layer 'Crossings' shows with a fixed text, namely 'This is not a zebra crossing' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind') Picking this answer will delete the key crossing_ref. (This is only shown if crossing=uncontrolled)",
- "value": ""
- },
- {
- "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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (This is only shown if highway=traffic_signals)",
- "value": "yes"
- },
- {
- "key": "red_turn:right:bicycle",
- "description": "Layer 'Crossings' shows red_turn:right:bicycle=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.osm.be theme 'OSM for the blind') (This is only shown if highway=traffic_signals)",
- "value": "yes"
- },
- {
- "key": "red_turn:right:bicycle",
- "description": "Layer 'Crossings' shows red_turn:right:bicycle=no with a fixed text, namely 'A cyclist can not turn right if the light is red' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (This is only shown if highway=traffic_signals)",
- "value": "yes"
- },
- {
- "key": "red_turn:straight:bicycle",
- "description": "Layer 'Crossings' shows red_turn:straight:bicycle=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.osm.be theme 'OSM for the blind') (This is only shown if highway=traffic_signals)",
- "value": "yes"
- },
- {
- "key": "red_turn:straight:bicycle",
- "description": "Layer 'Crossings' shows red_turn:straight:bicycle=no with a fixed text, namely 'A cyclist can not go straight on if the light is red' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind') (This is only shown if highway=traffic_signals)",
- "value": "no"
- },
- {
- "key": "barrier",
- "description": "The MapComplete theme OSM for the blind has a layer Kerbs showing features with this tag",
- "value": "kerb"
- },
- {
- "key": "id",
- "description": "Layer 'Kerbs' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'OSM for the blind') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Kerbs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Kerbs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Kerbs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Kerbs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind') (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.osm.be theme 'OSM for the blind')"
- },
- {
- "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.osm.be theme 'OSM for the blind')",
- "value": "0"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme OSM for the blind has a layer Transit Stops showing features with this tag",
- "value": "bus_stop"
- },
- {
- "key": "id",
- "description": "Layer 'Transit Stops' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'OSM for the blind') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "name",
- "description": "Layer 'Transit Stops' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'OSM for the blind')"
- },
- {
- "key": "noname",
- "description": "Layer 'Transit Stops' shows noname=yes with a fixed text, namely 'This stop has no name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "yes"
- },
- {
- "key": "name",
- "description": "Layer 'Transit Stops' shows noname=yes with a fixed text, namely 'This stop has no name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind') Picking this answer will delete the key name.",
- "value": ""
- },
- {
- "key": "image",
- "description": "The layer 'Transit Stops allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Transit Stops allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Transit Stops allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Transit Stops allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "shelter",
- "description": "Layer 'Transit Stops' shows shelter=yes with a fixed text, namely 'This stop has a shelter' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "yes"
- },
- {
- "key": "shelter",
- "description": "Layer 'Transit Stops' shows shelter=no with a fixed text, namely 'This stop does not have a shelter' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "no"
- },
- {
- "key": "shelter",
- "description": "Layer 'Transit Stops' shows shelter=separate with a fixed text, namely 'This stop has a shelter, that's separately mapped' (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "separate"
- },
- {
- "key": "bench",
- "description": "Layer 'Transit Stops' shows bench=yes with a fixed text, namely 'This stop has a bench' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "yes"
- },
- {
- "key": "bench",
- "description": "Layer 'Transit Stops' shows bench=no with a fixed text, namely 'This stop does not have a bench' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "no"
- },
- {
- "key": "bench",
- "description": "Layer 'Transit Stops' shows bench=separate with a fixed text, namely 'This stop has a bench, that's separately mapped' (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "separate"
- },
- {
- "key": "bin",
- "description": "Layer 'Transit Stops' shows bin=yes with a fixed text, namely 'This stop has a bin' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "yes"
- },
- {
- "key": "bin",
- "description": "Layer 'Transit Stops' shows bin=no with a fixed text, namely 'This stop does not have a bin' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "no"
- },
- {
- "key": "bin",
- "description": "Layer 'Transit Stops' shows bin=separate with a fixed text, namely 'This stop has a bin, that's separately mapped' (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "separate"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Transit Stops' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "designated"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Transit Stops' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "yes"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Transit Stops' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "limited"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Transit Stops' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "no"
- },
- {
- "key": "tactile_paving",
- "description": "Layer 'Transit Stops' shows tactile_paving=yes with a fixed text, namely 'This stop has tactile paving' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "yes"
- },
- {
- "key": "tactile_paving",
- "description": "Layer 'Transit Stops' shows tactile_paving=no with a fixed text, namely 'This stop does not have tactile paving' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "no"
- },
- {
- "key": "lit",
- "description": "Layer 'Transit Stops' shows lit=yes with a fixed text, namely 'This stop is lit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "yes"
- },
- {
- "key": "lit",
- "description": "Layer 'Transit Stops' shows lit=no with a fixed text, namely 'This stop is not lit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "no"
- },
- {
- "key": "departures_board",
- "description": "Layer 'Transit Stops' shows departures_board=yes with a fixed text, namely 'This stop has a departures board of unknown type' (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "yes"
- },
- {
- "key": "departures_board",
- "description": "Layer 'Transit Stops' shows departures_board=realtime with a fixed text, namely 'This stop has a board showing realtime departure information' (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "realtime"
- },
- {
- "key": "passenger_information_display",
- "description": "Layer 'Transit Stops' shows passenger_information_display=yes with a fixed text, namely 'This stop has a board showing realtime departure information' (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "yes"
- },
- {
- "key": "departures_board",
- "description": "Layer 'Transit Stops' shows departures_board=timetable with a fixed text, namely 'This stop has a timetable showing regular departures' (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "timetable"
- },
- {
- "key": "departures_board",
- "description": "Layer 'Transit Stops' shows departures_board=interval with a fixed text, namely 'This stop has a timetable containing just the interval between departures' (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "interval"
- },
- {
- "key": "departures_board",
- "description": "Layer 'Transit Stops' shows departures_board=no with a fixed text, namely 'This stop does not have a departures board' (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "no"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme OSM for the blind has a layer Elevator showing features with this tag",
- "value": "elevator"
- },
- {
- "key": "id",
- "description": "Layer 'Elevator' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'OSM for the blind') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Elevator allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Elevator allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Elevator allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Elevator allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "level",
- "description": "Layer 'Elevator' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'OSM for the blind')"
- },
- {
- "key": "location",
- "description": "Layer 'Elevator' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'OSM for the blind')",
- "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.osm.be theme 'OSM for the blind')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Elevator' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'OSM for the blind') Picking this answer will delete the key level.",
- "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.osm.be theme 'OSM for the blind')",
- "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.osm.be theme 'OSM for the blind')",
- "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.osm.be theme 'OSM for the blind')",
- "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.osm.be theme 'OSM for the blind')",
- "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.osm.be theme 'OSM for the blind')",
- "value": "ok"
- },
- {
- "key": "operational_status",
- "description": "Layer 'Elevator' shows with a fixed text, namely 'This elevator works' (in the MapComplete.osm.be theme 'OSM for the blind') 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.osm.be theme 'OSM for the blind')"
- },
- {
- "key": "elevator:width",
- "description": "Layer 'Elevator' shows and asks freeform values for key 'elevator:width' (in the MapComplete.osm.be theme 'OSM for the blind')"
- },
- {
- "key": "elevator:depth",
- "description": "Layer 'Elevator' shows and asks freeform values for key 'elevator:depth' (in the MapComplete.osm.be theme 'OSM for the blind')"
- },
- {
- "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.osm.be theme 'OSM for the blind')",
- "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.osm.be theme 'OSM for the blind')",
- "value": "no"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme OSM for the blind has a layer Stairs showing features with this tag",
- "value": "steps"
- },
- {
- "key": "id",
- "description": "Layer 'Stairs' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'OSM for the blind') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Stairs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Stairs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Stairs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Stairs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "level",
- "description": "Layer 'Stairs' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'OSM for the blind')"
- },
- {
- "key": "location",
- "description": "Layer 'Stairs' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "underground"
- },
- {
- "key": "level",
- "description": "Layer 'Stairs' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Stairs' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'OSM for the blind') Picking this answer will delete the key level.",
- "value": ""
- },
- {
- "key": "level",
- "description": "Layer 'Stairs' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "1"
- },
- {
- "key": "level",
- "description": "Layer 'Stairs' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "-1"
- },
- {
- "key": "handrail",
- "description": "Layer 'Stairs' shows handrail=yes with a fixed text, namely 'These stairs have a handrail' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "yes"
- },
- {
- "key": "handrail",
- "description": "Layer 'Stairs' shows handrail=no with a fixed text, namely 'These stairs do not have a handrail' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "no"
- },
- {
- "key": "tactile_writing",
- "description": "Layer 'Stairs' shows tactile_writing=yes with a fixed text, namely 'There is tactile writing on the handrail' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind') (This is only shown if handrail=yes)",
- "value": "yes"
- },
- {
- "key": "tactile_writing",
- "description": "Layer 'Stairs' shows tactile_writing=no with a fixed text, namely 'There is no tactile writing on the handrail' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind') (This is only shown if handrail=yes)",
- "value": "no"
- },
- {
- "key": "conveying",
- "description": "Layer 'Stairs' shows conveying=yes with a fixed text, namely 'This is an escalator' (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "yes"
- },
- {
- "key": "conveying",
- "description": "Layer 'Stairs' shows conveying=no with a fixed text, namely 'This is not an escalator' (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "no"
- },
- {
- "key": "conveying",
- "description": "Layer 'Stairs' shows with a fixed text, namely 'This is not an escalator' (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": ""
- },
- {
- "key": "ramp:bicycle",
- "description": "Layer 'Stairs' shows ramp:bicycle=yes with a fixed text, namely 'There is a ramp for bicycles here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "yes"
- },
- {
- "key": "ramp:wheelchair",
- "description": "Layer 'Stairs' shows ramp:wheelchair=yes with a fixed text, namely 'There is a ramp for wheelchairs here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "yes"
- },
- {
- "key": "ramp",
- "description": "Layer 'Stairs' shows ramp=separate with a fixed text, namely 'There is ramp for wheelchairs here, but it is shown separately on the map' (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "separate"
- },
- {
- "key": "ramp:stroller",
- "description": "Layer 'Stairs' shows ramp:stroller=yes with a fixed text, namely 'There is a ramp for strollers here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "yes"
- },
- {
- "key": "ramp",
- "description": "Layer 'Stairs' shows ramp=no with a fixed text, namely 'There is no ramp at these stairs' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OSM for the blind')",
- "value": "no"
- }
- ]
-}
\ No newline at end of file
diff --git a/Docs/TagInfo/mapcomplete_bookcases.json b/Docs/TagInfo/mapcomplete_bookcases.json
deleted file mode 100644
index 5d84974c5..000000000
--- a/Docs/TagInfo/mapcomplete_bookcases.json
+++ /dev/null
@@ -1,151 +0,0 @@
-{
- "data_format": 1,
- "project": {
- "name": "MapComplete Open Bookcase Map",
- "description": "A public bookcase is a small streetside cabinet, box, old phone booth or some other objects where books are stored",
- "project_url": "https://mapcomplete.osm.be/bookcases",
- "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/",
- "icon_url": "https://mapcomplete.osm.be/assets/themes/bookcases/bookcase.svg",
- "contact_name": "Pieter Vander Vennet",
- "contact_email": "pietervdvn@posteo.net"
- },
- "tags": [
- {
- "key": "amenity",
- "description": "The MapComplete theme Open Bookcase Map 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.osm.be theme 'Open Bookcase Map') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Bookcases allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Bookcases allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Bookcases allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Bookcases allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "name",
- "description": "Layer 'Bookcases' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Open Bookcase Map')"
- },
- {
- "key": "noname",
- "description": "Layer 'Bookcases' shows noname=yes with a fixed text, namely 'This bookcase doesn't have a name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Bookcase Map')",
- "value": "yes"
- },
- {
- "key": "name",
- "description": "Layer 'Bookcases' shows noname=yes with a fixed text, namely 'This bookcase doesn't have a name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Bookcase Map') 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.osm.be theme 'Open Bookcase Map')"
- },
- {
- "key": "books",
- "description": "Layer 'Bookcases' shows and asks freeform values for key 'books' (in the MapComplete.osm.be theme 'Open Bookcase Map')"
- },
- {
- "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.osm.be theme 'Open Bookcase Map')",
- "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.osm.be theme 'Open Bookcase Map')",
- "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.osm.be theme 'Open Bookcase Map')",
- "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.osm.be theme 'Open Bookcase Map')",
- "value": "no"
- },
- {
- "key": "indoor",
- "description": "Layer 'Bookcases' shows with a fixed text, namely 'This bookcase is located outdoors' (in the MapComplete.osm.be theme 'Open Bookcase Map') 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.osm.be theme 'Open Bookcase Map') (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.osm.be theme 'Open Bookcase Map') (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.osm.be theme 'Open Bookcase Map')"
- },
- {
- "key": "brand",
- "description": "Layer 'Bookcases' shows and asks freeform values for key 'brand' (in the MapComplete.osm.be theme 'Open Bookcase Map')"
- },
- {
- "key": "brand",
- "description": "Layer 'Bookcases' shows brand=Little Free Library with a fixed text, namely 'Part of the network 'Little Free Library'' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Bookcase Map')",
- "value": "Little Free Library"
- },
- {
- "key": "nobrand",
- "description": "Layer 'Bookcases' shows brand=Little Free Library with a fixed text, namely 'Part of the network 'Little Free Library'' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Bookcase Map') Picking this answer will delete the key nobrand.",
- "value": ""
- },
- {
- "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.osm.be theme 'Open Bookcase Map')",
- "value": "yes"
- },
- {
- "key": "brand",
- "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.osm.be theme 'Open Bookcase Map') Picking this answer will delete the key brand.",
- "value": ""
- },
- {
- "key": "ref",
- "description": "Layer 'Bookcases' shows and asks freeform values for key 'ref' (in the MapComplete.osm.be theme 'Open Bookcase Map') (This is only shown if brand~.+)"
- },
- {
- "key": "nobrand",
- "description": "Layer 'Bookcases' shows nobrand=yes 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.osm.be theme 'Open Bookcase Map') (This is only shown if brand~.+)",
- "value": "yes"
- },
- {
- "key": "brand",
- "description": "Layer 'Bookcases' shows nobrand=yes 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.osm.be theme 'Open Bookcase Map') Picking this answer will delete the key brand. (This is only shown if brand~.+)",
- "value": ""
- },
- {
- "key": "ref",
- "description": "Layer 'Bookcases' shows nobrand=yes 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.osm.be theme 'Open Bookcase Map') 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.osm.be theme 'Open Bookcase Map')"
- },
- {
- "key": "website",
- "description": "Layer 'Bookcases' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Open Bookcase Map')"
- }
- ]
-}
\ No newline at end of file
diff --git a/Docs/TagInfo/mapcomplete_cafes_and_pubs.json b/Docs/TagInfo/mapcomplete_cafes_and_pubs.json
deleted file mode 100644
index 4082e61e2..000000000
--- a/Docs/TagInfo/mapcomplete_cafes_and_pubs.json
+++ /dev/null
@@ -1,284 +0,0 @@
-{
- "data_format": 1,
- "project": {
- "name": "MapComplete Cafés and pubs",
- "description": "Coffeehouses, pubs and bars",
- "project_url": "https://mapcomplete.osm.be/cafes_and_pubs",
- "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/",
- "icon_url": "https://mapcomplete.osm.be/assets/layers/cafe_pub/pub.svg",
- "contact_name": "Pieter Vander Vennet",
- "contact_email": "pietervdvn@posteo.net"
- },
- "tags": [
- {
- "key": "amenity",
- "description": "The MapComplete theme Cafés and pubs has a layer Cafés and pubs showing features with this tag",
- "value": "bar"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Cafés and pubs has a layer Cafés and pubs showing features with this tag",
- "value": "pub"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Cafés and pubs has a layer Cafés and pubs showing features with this tag",
- "value": "cafe"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Cafés and pubs has a layer Cafés and pubs showing features with this tag",
- "value": "biergarten"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Cafés and pubs 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.osm.be theme 'Cafés and pubs') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Cafés and pubs')"
- },
- {
- "key": "location",
- "description": "Layer 'Cafés and pubs' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Cafés and pubs')",
- "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.osm.be theme 'Cafés and pubs')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Cafés and pubs' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Cafés and pubs') Picking this answer will delete the key level.",
- "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.osm.be theme 'Cafés and pubs')",
- "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.osm.be theme 'Cafés and pubs')",
- "value": "-1"
- },
- {
- "key": "name",
- "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Cafés and pubs')"
- },
- {
- "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.osm.be theme 'Cafés and pubs')",
- "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.osm.be theme 'Cafés and pubs')",
- "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.osm.be theme 'Cafés and pubs')",
- "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.osm.be theme 'Cafés and pubs')",
- "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.osm.be theme 'Cafés and pubs')",
- "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.osm.be theme 'Cafés and pubs')",
- "value": "nightclub"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Cafés and pubs')"
- },
- {
- "key": "website",
- "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Cafés and pubs')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Cafés and pubs' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Cafés and pubs')"
- },
- {
- "key": "email",
- "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Cafés and pubs')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Cafés and pubs' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Cafés and pubs')"
- },
- {
- "key": "phone",
- "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Cafés and pubs')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Cafés and pubs' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Cafés and pubs')"
- },
- {
- "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.osm.be theme 'Cafés and pubs')",
- "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.osm.be theme 'Cafés and pubs')",
- "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.osm.be theme 'Cafés and pubs')",
- "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.osm.be theme 'Cafés and pubs')",
- "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.osm.be theme 'Cafés and pubs')",
- "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.osm.be theme 'Cafés and pubs')",
- "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.osm.be theme 'Cafés and pubs') (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.osm.be theme 'Cafés and pubs') (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.osm.be theme 'Cafés and pubs') (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.osm.be theme 'Cafés and pubs')",
- "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.osm.be theme 'Cafés and pubs')",
- "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.osm.be theme 'Cafés and pubs')",
- "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.osm.be theme 'Cafés and pubs')",
- "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.osm.be theme 'Cafés and pubs')",
- "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.osm.be theme 'Cafés and pubs')",
- "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.osm.be theme 'Cafés and pubs')",
- "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.osm.be theme 'Cafés and pubs')",
- "value": "unleashed"
- },
- {
- "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.osm.be theme 'Cafés and pubs')",
- "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.osm.be theme 'Cafés and pubs')",
- "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.osm.be theme 'Cafés and pubs')",
- "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.osm.be theme 'Cafés and pubs')",
- "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.osm.be theme 'Cafés and pubs')",
- "value": "wired"
- },
- {
- "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.osm.be theme 'Cafés and pubs') (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.osm.be theme 'Cafés and pubs') (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.osm.be theme 'Cafés and pubs') (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.osm.be theme 'Cafés and pubs') (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.osm.be theme 'Cafés and pubs') (This is only shown if internet_access=wlan)",
- "value": "Telekom"
- }
- ]
-}
\ No newline at end of file
diff --git a/Docs/TagInfo/mapcomplete_campersite.json b/Docs/TagInfo/mapcomplete_campersite.json
deleted file mode 100644
index 4117d21d9..000000000
--- a/Docs/TagInfo/mapcomplete_campersite.json
+++ /dev/null
@@ -1,260 +0,0 @@
-{
- "data_format": 1,
- "project": {
- "name": "MapComplete Campersites",
- "description": "Find sites to spend the night with your camper",
- "project_url": "https://mapcomplete.osm.be/campersite",
- "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/",
- "icon_url": "https://mapcomplete.osm.be/assets/themes/campersite/caravan.svg",
- "contact_name": "Pieter Vander Vennet",
- "contact_email": "pietervdvn@posteo.net"
- },
- "tags": [
- {
- "key": "tourism",
- "description": "The MapComplete theme Campersites 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.osm.be theme 'Campersites') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Camper sites allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Camper sites allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Camper sites allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Camper sites allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "name",
- "description": "Layer 'Camper sites' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Campersites')"
- },
- {
- "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.osm.be theme 'Campersites')",
- "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.osm.be theme 'Campersites')",
- "value": "no"
- },
- {
- "key": "charge",
- "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.osm.be theme 'Campersites') Picking this answer will delete the key charge.",
- "value": ""
- },
- {
- "key": "charge",
- "description": "Layer 'Camper sites' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Campersites') (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.osm.be theme 'Campersites')",
- "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.osm.be theme 'Campersites')",
- "value": "no"
- },
- {
- "key": "capacity",
- "description": "Layer 'Camper sites' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be theme 'Campersites')"
- },
- {
- "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.osm.be theme 'Campersites')",
- "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.osm.be theme 'Campersites')",
- "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.osm.be theme 'Campersites')",
- "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.osm.be theme 'Campersites')",
- "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.osm.be theme 'Campersites') (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.osm.be theme 'Campersites') (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.osm.be theme 'Campersites')",
- "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.osm.be theme 'Campersites')",
- "value": "no"
- },
- {
- "key": "website",
- "description": "Layer 'Camper sites' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Campersites')"
- },
- {
- "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.osm.be theme 'Campersites')",
- "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.osm.be theme 'Campersites')",
- "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.osm.be theme 'Campersites')",
- "value": "only"
- },
- {
- "key": "description",
- "description": "Layer 'Camper sites' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'Campersites')"
- },
- {
- "key": "operator",
- "description": "Layer 'Camper sites' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Campersites')"
- },
- {
- "key": "power_supply",
- "description": "Layer 'Camper sites' shows power_supply=yes with a fixed text, namely 'This place has a power supply' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Campersites')",
- "value": "yes"
- },
- {
- "key": "power_supply",
- "description": "Layer 'Camper sites' shows power_supply=no with a fixed text, namely 'This place does not have power supply' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Campersites')",
- "value": "no"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Campersites has a layer Sanitary dump stations showing features with this tag",
- "value": "sanitary_dump_station"
- },
- {
- "key": "id",
- "description": "Layer 'Sanitary dump stations' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Campersites') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Sanitary dump stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Sanitary dump stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Sanitary dump stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Sanitary dump stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Campersites')",
- "value": "yes"
- },
- {
- "key": "fee",
- "description": "Layer 'Sanitary dump stations' shows fee=no with a fixed text, namely 'Can be used for free' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Campersites')",
- "value": "no"
- },
- {
- "key": "charge",
- "description": "Layer 'Sanitary dump stations' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Campersites') (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.osm.be theme 'Campersites')",
- "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.osm.be theme 'Campersites')",
- "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.osm.be theme 'Campersites')",
- "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.osm.be theme 'Campersites')",
- "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.osm.be theme 'Campersites')",
- "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.osm.be theme 'Campersites')",
- "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.osm.be theme 'Campersites')",
- "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.osm.be theme 'Campersites')",
- "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.osm.be theme 'Campersites')",
- "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.osm.be theme 'Campersites')",
- "value": "yes"
- },
- {
- "key": "network",
- "description": "Layer 'Sanitary dump stations' shows and asks freeform values for key 'network' (in the MapComplete.osm.be theme 'Campersites')"
- },
- {
- "key": "operator",
- "description": "Layer 'Sanitary dump stations' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Campersites')"
- },
- {
- "key": "power_supply",
- "description": "Layer 'Sanitary dump stations' shows power_supply=yes with a fixed text, namely 'This place has a power supply' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Campersites')",
- "value": "yes"
- },
- {
- "key": "power_supply",
- "description": "Layer 'Sanitary dump stations' shows power_supply=no with a fixed text, namely 'This place does not have power supply' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Campersites')",
- "value": "no"
- }
- ]
-}
\ No newline at end of file
diff --git a/Docs/TagInfo/mapcomplete_charging_stations.json b/Docs/TagInfo/mapcomplete_charging_stations.json
deleted file mode 100644
index 8cd4eb4d9..000000000
--- a/Docs/TagInfo/mapcomplete_charging_stations.json
+++ /dev/null
@@ -1,1276 +0,0 @@
-{
- "data_format": 1,
- "project": {
- "name": "MapComplete Charging stations",
- "description": "A worldwide map of charging stations",
- "project_url": "https://mapcomplete.osm.be/charging_stations",
- "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/",
- "icon_url": "https://mapcomplete.osm.be/assets/themes/charging_stations/logo.svg",
- "contact_name": "Pieter Vander Vennet",
- "contact_email": "pietervdvn@posteo.net"
- },
- "tags": [
- {
- "key": "amenity",
- "description": "The MapComplete theme Charging stations has a layer Charging stations showing features with this tag",
- "value": "charging_station"
- },
- {
- "key": "disused:amenity",
- "description": "The MapComplete theme Charging stations has a layer Charging stations showing features with this tag",
- "value": "charging_station"
- },
- {
- "key": "planned:amenity",
- "description": "The MapComplete theme Charging stations has a layer Charging stations showing features with this tag",
- "value": "charging_station"
- },
- {
- "key": "construction:amenity",
- "description": "The MapComplete theme Charging stations 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.osm.be theme 'Charging stations') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Charging stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Charging stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Charging stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Charging stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')",
- "value": "yes"
- },
- {
- "key": "access",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'access' (in the MapComplete.osm.be theme 'Charging stations')"
- },
- {
- "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.osm.be theme 'Charging stations')",
- "value": "yes"
- },
- {
- "key": "access",
- "description": "Layer 'Charging stations' shows access=permissive|access=public with a fixed text, namely 'Anyone can use this charging station (payment might be needed)' (in the MapComplete.osm.be theme 'Charging stations')",
- "value": "permissive"
- },
- {
- "key": "access",
- "description": "Layer 'Charging stations' shows access=permissive|access=public with a fixed text, namely 'Anyone can use this charging station (payment might be needed)' (in the MapComplete.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')",
- "value": "private"
- },
- {
- "key": "capacity",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be theme 'Charging stations')"
- },
- {
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')"
- },
- {
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')"
- },
- {
- "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.osm.be theme 'Charging stations')",
- "value": "1"
- },
- {
- "key": "socket:chademo",
- "description": "Layer 'Charging stations' shows socket:chademo~.+&socket:chademo!=1 with a fixed text, namely 'Chademo' (in the MapComplete.osm.be theme 'Charging stations')"
- },
- {
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')"
- },
- {
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')"
- },
- {
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')"
- },
- {
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')"
- },
- {
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')"
- },
- {
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')"
- },
- {
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')"
- },
- {
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')"
- },
- {
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')"
- },
- {
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')"
- },
- {
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')"
- },
- {
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')"
- },
- {
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')"
- },
- {
- "key": "socket:schuko",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko' (in the MapComplete.osm.be theme 'Charging stations') (This is only shown if socket:schuko~.+&socket:schuko!=0)"
- },
- {
- "key": "socket:typee",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee' (in the MapComplete.osm.be theme 'Charging stations') (This is only shown if socket:typee~.+&socket:typee!=0)"
- },
- {
- "key": "socket:chademo",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo' (in the MapComplete.osm.be theme 'Charging stations') (This is only shown if socket:chademo~.+&socket:chademo!=0)"
- },
- {
- "key": "socket:type1_cable",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable' (in the MapComplete.osm.be theme 'Charging stations') (This is only shown if socket:type1_cable~.+&socket:type1_cable!=0)"
- },
- {
- "key": "socket:type1",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1' (in the MapComplete.osm.be theme 'Charging stations') (This is only shown if socket:type1~.+&socket:type1!=0)"
- },
- {
- "key": "socket:type1_combo",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo' (in the MapComplete.osm.be theme 'Charging stations') (This is only shown if socket:type1_combo~.+&socket:type1_combo!=0)"
- },
- {
- "key": "socket:tesla_supercharger",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger' (in the MapComplete.osm.be theme 'Charging stations') (This is only shown if socket:tesla_supercharger~.+&socket:tesla_supercharger!=0)"
- },
- {
- "key": "socket:type2",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2' (in the MapComplete.osm.be theme 'Charging stations') (This is only shown if socket:type2~.+&socket:type2!=0)"
- },
- {
- "key": "socket:type2_combo",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo' (in the MapComplete.osm.be theme 'Charging stations') (This is only shown if socket:type2_combo~.+&socket:type2_combo!=0)"
- },
- {
- "key": "socket:type2_cable",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable' (in the MapComplete.osm.be theme 'Charging stations') (This is only shown if socket:type2_cable~.+&socket:type2_cable!=0)"
- },
- {
- "key": "socket:tesla_supercharger_ccs",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs' (in the MapComplete.osm.be theme 'Charging stations') (This is only shown if socket:tesla_supercharger_ccs~.+&socket:tesla_supercharger_ccs!=0)"
- },
- {
- "key": "socket:tesla_destination",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination' (in the MapComplete.osm.be theme 'Charging stations') (This is only shown if socket:tesla_destination~.+&socket:tesla_destination!=0)"
- },
- {
- "key": "socket:tesla_destination",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination' (in the MapComplete.osm.be theme 'Charging stations') (This is only shown if socket:tesla_destination~.+&socket:tesla_destination!=0)"
- },
- {
- "key": "socket:USB-A",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A' (in the MapComplete.osm.be theme 'Charging stations') (This is only shown if socket:USB-A~.+&socket:USB-A!=0)"
- },
- {
- "key": "socket:bosch_3pin",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin' (in the MapComplete.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (This is only shown if socket:bosch_5pin~.+&socket:bosch_5pin!=0)"
- },
- {
- "key": "socket:schuko:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko:voltage' (in the MapComplete.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (This is only shown if socket:schuko~.+&socket:schuko!=0)",
- "value": "3.6 kW"
- },
- {
- "key": "socket:typee:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee:voltage' (in the MapComplete.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (This is only shown if socket:typee~.+&socket:typee!=0)",
- "value": "22 kW"
- },
- {
- "key": "socket:chademo:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo:voltage' (in the MapComplete.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (This is only shown if socket:chademo~.+&socket:chademo!=0)",
- "value": "50 kW"
- },
- {
- "key": "socket:type1_cable:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable:voltage' (in the MapComplete.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (This is only shown if socket:type1_cable~.+&socket:type1_cable!=0)",
- "value": "3.7 kW"
- },
- {
- "key": "socket:type1_cable:output",
- "description": "Layer '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.osm.be theme 'Charging stations') (This is only shown if socket:type1_cable~.+&socket:type1_cable!=0)",
- "value": "7 kW"
- },
- {
- "key": "socket:type1:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1:voltage' (in the MapComplete.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (This is only shown if socket:type1~.+&socket:type1!=0)",
- "value": "7.2 kW"
- },
- {
- "key": "socket:type1_combo:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo:voltage' (in the MapComplete.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (This is only shown if socket:type1_combo~.+&socket:type1_combo!=0)",
- "value": "50 kW"
- },
- {
- "key": "socket:type1_combo:output",
- "description": "Layer '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.osm.be theme 'Charging stations') (This is only shown if socket:type1_combo~.+&socket:type1_combo!=0)",
- "value": "62.5 kW"
- },
- {
- "key": "socket:type1_combo:output",
- "description": "Layer '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.osm.be theme 'Charging stations') (This is only shown if socket:type1_combo~.+&socket:type1_combo!=0)",
- "value": "150 kW"
- },
- {
- "key": "socket:type1_combo:output",
- "description": "Layer '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.osm.be theme 'Charging stations') (This is only shown if socket:type1_combo~.+&socket:type1_combo!=0)",
- "value": "350 kW"
- },
- {
- "key": "socket:tesla_supercharger:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger:voltage' (in the MapComplete.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (This is only shown if socket:tesla_supercharger~.+&socket:tesla_supercharger!=0)",
- "value": "120 kW"
- },
- {
- "key": "socket:tesla_supercharger:output",
- "description": "Layer '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.osm.be theme 'Charging stations') (This is only shown if socket:tesla_supercharger~.+&socket:tesla_supercharger!=0)",
- "value": "150 kW"
- },
- {
- "key": "socket:tesla_supercharger:output",
- "description": "Layer '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.osm.be theme 'Charging stations') (This is only shown if socket:tesla_supercharger~.+&socket:tesla_supercharger!=0)",
- "value": "250 kW"
- },
- {
- "key": "socket:type2:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2:voltage' (in the MapComplete.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (This is only shown if socket:type2~.+&socket:type2!=0)",
- "value": "22 kW"
- },
- {
- "key": "socket:type2_combo:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo:voltage' (in the MapComplete.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (This is only shown if socket:type2_combo~.+&socket:type2_combo!=0)",
- "value": "50 kW"
- },
- {
- "key": "socket:type2_cable:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable:voltage' (in the MapComplete.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (This is only shown if socket:type2_cable~.+&socket:type2_cable!=0)",
- "value": "11 kW"
- },
- {
- "key": "socket:type2_cable:output",
- "description": "Layer '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.osm.be theme 'Charging stations') (This is only shown if socket:type2_cable~.+&socket:type2_cable!=0)",
- "value": "22 kW"
- },
- {
- "key": "socket:tesla_supercharger_ccs:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs:voltage' (in the MapComplete.osm.be theme 'Charging stations') (This is only shown if socket:tesla_supercharger_ccs~.+&socket:tesla_supercharger_ccs!=0)"
- },
- {
- "key": "socket:tesla_supercharger_ccs:voltage",
- "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:voltage=500 V with a fixed text, namely 'Tesla Supercharger CCS (a branded Type 2 CSS) outputs 500 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') (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 Type 2 CSS) outputs 920 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (This is only shown if socket:tesla_supercharger_ccs~.+&socket:tesla_supercharger_ccs!=0)"
- },
- {
- "key": "socket:tesla_supercharger_ccs:current",
- "description": "Layer '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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (This is only shown if socket:tesla_supercharger_ccs~.+&socket:tesla_supercharger_ccs!=0)"
- },
- {
- "key": "socket:tesla_supercharger_ccs:output",
- "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:output=50 kW with a fixed text, namely 'Tesla Supercharger CCS (a branded Type 2 CSS) outputs at most 50 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') (This is only shown if socket:tesla_supercharger_ccs~.+&socket:tesla_supercharger_ccs!=0)",
- "value": "50 kW"
- },
- {
- "key": "socket:tesla_destination:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:voltage' (in the MapComplete.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (This is only shown if socket:tesla_destination~.+&socket:tesla_destination!=0)",
- "value": "120 kW"
- },
- {
- "key": "socket:tesla_destination:output",
- "description": "Layer '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.osm.be theme 'Charging stations') (This is only shown if socket:tesla_destination~.+&socket:tesla_destination!=0)",
- "value": "150 kW"
- },
- {
- "key": "socket:tesla_destination:output",
- "description": "Layer '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.osm.be theme 'Charging stations') (This is only shown if socket:tesla_destination~.+&socket:tesla_destination!=0)",
- "value": "250 kW"
- },
- {
- "key": "socket:tesla_destination:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:voltage' (in the MapComplete.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (This is only shown if socket:tesla_destination~.+&socket:tesla_destination!=0)",
- "value": "11 kW"
- },
- {
- "key": "socket:tesla_destination:output",
- "description": "Layer '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.osm.be theme 'Charging stations') (This is only shown if socket:tesla_destination~.+&socket:tesla_destination!=0)",
- "value": "22 kW"
- },
- {
- "key": "socket:USB-A:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A:voltage' (in the MapComplete.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (This is only shown if socket:USB-A~.+&socket:USB-A!=0)",
- "value": "10W"
- },
- {
- "key": "socket:bosch_3pin:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin:voltage' (in the MapComplete.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (This is only shown if socket:bosch_3pin~.+&socket:bosch_3pin!=0)"
- },
- {
- "key": "socket:bosch_5pin:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin:voltage' (in the MapComplete.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (This is only shown if socket:bosch_5pin~.+&socket:bosch_5pin!=0)"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Charging stations')"
- },
- {
- "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.osm.be theme 'Charging stations')",
- "value": "24/7"
- },
- {
- "key": "fee",
- "description": "Layer 'Charging stations' shows fee=no&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.osm.be theme 'Charging stations')",
- "value": "no"
- },
- {
- "key": "fee:conditional",
- "description": "Layer 'Charging stations' shows fee=no&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.osm.be theme 'Charging stations') Picking this answer will delete the key fee:conditional.",
- "value": ""
- },
- {
- "key": "charge",
- "description": "Layer 'Charging stations' shows fee=no&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.osm.be theme 'Charging stations') Picking this answer will delete the key charge.",
- "value": ""
- },
- {
- "key": "authentication:none",
- "description": "Layer 'Charging stations' shows fee=no&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.osm.be theme 'Charging stations')",
- "value": "yes"
- },
- {
- "key": "fee",
- "description": "Layer 'Charging stations' shows fee=no&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.osm.be theme 'Charging stations')",
- "value": "no"
- },
- {
- "key": "fee:conditional",
- "description": "Layer 'Charging stations' shows fee=no&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.osm.be theme 'Charging stations') Picking this answer will delete the key fee:conditional.",
- "value": ""
- },
- {
- "key": "charge",
- "description": "Layer 'Charging stations' shows fee=no&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.osm.be theme 'Charging stations') Picking this answer will delete the key charge.",
- "value": ""
- },
- {
- "key": "authentication:none",
- "description": "Layer 'Charging stations' shows fee=no&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.osm.be theme 'Charging stations')",
- "value": "no"
- },
- {
- "key": "fee",
- "description": "Layer 'Charging stations' shows fee=no with a fixed text, namely 'Free to use' (in the MapComplete.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')",
- "value": "no @ customers"
- },
- {
- "key": "fee",
- "description": "Layer 'Charging stations' shows fee=yes with a fixed text, namely 'Paid use' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')",
- "value": "yes"
- },
- {
- "key": "fee:conditional",
- "description": "Layer 'Charging stations' shows fee=yes with a fixed text, namely 'Paid use' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') 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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (This is only shown if fee=no|)",
- "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.osm.be theme 'Charging stations') (This is only shown if fee=no|)",
- "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.osm.be theme 'Charging stations') (This is only shown if fee=no|)",
- "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.osm.be theme 'Charging stations') (This is only shown if fee=no|)",
- "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.osm.be theme 'Charging stations') (This is only shown if fee=no|)",
- "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.osm.be theme 'Charging stations') (This is only shown if fee=no|)",
- "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.osm.be theme 'Charging stations') (This is only shown if fee=no|)",
- "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.osm.be theme 'Charging stations') (This is only shown if fee=no|)",
- "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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations') (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.osm.be theme 'Charging stations')"
- },
- {
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')",
- "value": "Tesla"
- },
- {
- "key": "operator",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Charging stations')"
- },
- {
- "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.osm.be theme 'Charging stations') Picking this answer will delete the key network.",
- "value": ""
- },
- {
- "key": "phone",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Charging stations')"
- },
- {
- "key": "email",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Charging stations')"
- },
- {
- "key": "website",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Charging stations')"
- },
- {
- "key": "level",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Charging stations')"
- },
- {
- "key": "location",
- "description": "Layer 'Charging stations' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Charging stations' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key level.",
- "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.osm.be theme 'Charging stations')",
- "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.osm.be theme 'Charging stations')",
- "value": "-1"
- },
- {
- "key": "ref",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'ref' (in the MapComplete.osm.be theme 'Charging stations') (This is only shown if network~.+)"
- },
- {
- "key": "planned:amenity",
- "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key planned:amenity.",
- "value": ""
- },
- {
- "key": "construction:amenity",
- "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key construction:amenity.",
- "value": ""
- },
- {
- "key": "disused:amenity",
- "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key disused:amenity.",
- "value": ""
- },
- {
- "key": "operational_status",
- "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key operational_status.",
- "value": ""
- },
- {
- "key": "amenity",
- "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')",
- "value": "charging_station"
- },
- {
- "key": "planned:amenity",
- "description": "Layer 'Charging stations' shows 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.osm.be theme 'Charging stations') Picking this answer will delete the key planned:amenity.",
- "value": ""
- },
- {
- "key": "construction:amenity",
- "description": "Layer 'Charging stations' shows 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.osm.be theme 'Charging stations') Picking this answer will delete the key construction:amenity.",
- "value": ""
- },
- {
- "key": "disused:amenity",
- "description": "Layer 'Charging stations' shows 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.osm.be theme 'Charging stations') Picking this answer will delete the key disused:amenity.",
- "value": ""
- },
- {
- "key": "operational_status",
- "description": "Layer 'Charging stations' shows 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.osm.be theme 'Charging stations')",
- "value": "broken"
- },
- {
- "key": "amenity",
- "description": "Layer 'Charging stations' shows 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.osm.be theme 'Charging stations')",
- "value": "charging_station"
- },
- {
- "key": "planned:amenity",
- "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')",
- "value": "charging_station"
- },
- {
- "key": "construction:amenity",
- "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key construction:amenity.",
- "value": ""
- },
- {
- "key": "disused:amenity",
- "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key disused:amenity.",
- "value": ""
- },
- {
- "key": "operational_status",
- "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key operational_status.",
- "value": ""
- },
- {
- "key": "amenity",
- "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key amenity.",
- "value": ""
- },
- {
- "key": "planned:amenity",
- "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key planned:amenity.",
- "value": ""
- },
- {
- "key": "construction:amenity",
- "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')",
- "value": "charging_station"
- },
- {
- "key": "disused:amenity",
- "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key disused:amenity.",
- "value": ""
- },
- {
- "key": "operational_status",
- "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key operational_status.",
- "value": ""
- },
- {
- "key": "amenity",
- "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key amenity.",
- "value": ""
- },
- {
- "key": "planned:amenity",
- "description": "Layer 'Charging stations' shows disused:amenity=charging_station 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.osm.be theme 'Charging stations') Picking this answer will delete the key planned:amenity.",
- "value": ""
- },
- {
- "key": "construction:amenity",
- "description": "Layer 'Charging stations' shows disused:amenity=charging_station 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.osm.be theme 'Charging stations') Picking this answer will delete the key construction:amenity.",
- "value": ""
- },
- {
- "key": "disused:amenity",
- "description": "Layer 'Charging stations' shows disused:amenity=charging_station 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.osm.be theme 'Charging stations')",
- "value": "charging_station"
- },
- {
- "key": "operational_status",
- "description": "Layer 'Charging stations' shows disused:amenity=charging_station 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.osm.be theme 'Charging stations') Picking this answer will delete the key operational_status.",
- "value": ""
- },
- {
- "key": "amenity",
- "description": "Layer 'Charging stations' shows disused:amenity=charging_station 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.osm.be theme 'Charging stations') 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.osm.be theme 'Charging stations') (This is only shown if motor_vehicle=yes|hgv=yes|bus=yes|bicycle=no|)",
- "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.osm.be theme 'Charging stations') (This is only shown if motor_vehicle=yes|hgv=yes|bus=yes|bicycle=no|)",
- "value": "yes"
- }
- ]
-}
\ No newline at end of file
diff --git a/Docs/TagInfo/mapcomplete_climbing.json b/Docs/TagInfo/mapcomplete_climbing.json
deleted file mode 100644
index 4a3cba4d7..000000000
--- a/Docs/TagInfo/mapcomplete_climbing.json
+++ /dev/null
@@ -1,605 +0,0 @@
-{
- "data_format": 1,
- "project": {
- "name": "MapComplete Open Climbing Map",
- "description": "On this map you will find various climbing opportunities such as climbing gyms, bouldering halls and rocks in nature",
- "project_url": "https://mapcomplete.osm.be/climbing",
- "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/",
- "icon_url": "https://mapcomplete.osm.be/assets/themes/climbing/climbing_icon.svg",
- "contact_name": "Pieter Vander Vennet",
- "contact_email": "pietervdvn@posteo.net"
- },
- "tags": [
- {
- "key": "club",
- "description": "The MapComplete theme Open Climbing Map has a layer Climbing club showing features with this tag",
- "value": "climbing"
- },
- {
- "key": "sport",
- "description": "The MapComplete theme Open Climbing Map has a layer Climbing club showing features with this tag",
- "value": "climbing"
- },
- {
- "key": "office",
- "description": "The MapComplete theme Open Climbing Map has a layer Climbing club showing features with this tag"
- },
- {
- "key": "club",
- "description": "The MapComplete theme Open Climbing Map 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.osm.be theme 'Open Climbing Map') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "name",
- "description": "Layer 'Climbing club' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "website",
- "description": "Layer 'Climbing club' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Climbing club' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "email",
- "description": "Layer 'Climbing club' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Climbing club' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "phone",
- "description": "Layer 'Climbing club' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Climbing club' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Climbing club' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "access",
- "description": "Layer 'Climbing club' shows access=yes with a fixed text, namely 'Publicly accessible to anyone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if access~.+|)",
- "value": "yes"
- },
- {
- "key": "access",
- "description": "Layer 'Climbing club' shows access=permit with a fixed text, namely 'You need a permit to access here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if access~.+|)",
- "value": "permit"
- },
- {
- "key": "access",
- "description": "Layer 'Climbing club' shows access=customers with a fixed text, namely 'Only customers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if access~.+|)",
- "value": "customers"
- },
- {
- "key": "access",
- "description": "Layer 'Climbing club' shows access=members with a fixed text, namely 'Only club members' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if access~.+|)",
- "value": "members"
- },
- {
- "key": "access",
- "description": "Layer 'Climbing club' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if access~.+|)",
- "value": "no"
- },
- {
- "key": "access:description",
- "description": "Layer 'Climbing club' shows values with key 'access:description' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "sport",
- "description": "The MapComplete theme Open Climbing Map has a layer Climbing gyms showing features with this tag",
- "value": "climbing"
- },
- {
- "key": "leisure",
- "description": "The MapComplete theme Open Climbing Map 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.osm.be theme 'Open Climbing Map') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Climbing gyms allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Climbing gyms allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Climbing gyms allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Climbing gyms allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "name",
- "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "website",
- "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Climbing gyms' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "phone",
- "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Climbing gyms' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "email",
- "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Climbing gyms' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "charge",
- "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "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.osm.be theme 'Open Climbing Map')",
- "value": "no"
- },
- {
- "key": "fee",
- "description": "Layer 'Climbing gyms' shows fee=yes 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.osm.be theme 'Open Climbing Map')",
- "value": "yes"
- },
- {
- "key": "charge",
- "description": "Layer 'Climbing gyms' shows fee=yes 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.osm.be theme 'Open Climbing Map') Picking this answer will delete the key charge.",
- "value": ""
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "service:rental:climbing_shoes",
- "description": "Layer 'Climbing gyms' shows service:rental:climbing_shoes=yes with a fixed text, namely 'Climbing shoes can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')",
- "value": "yes"
- },
- {
- "key": "service:rental:climbing_shoes",
- "description": "Layer 'Climbing gyms' shows service:rental:climbing_shoes=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.osm.be theme 'Open Climbing Map')",
- "value": "no"
- },
- {
- "key": "service:rental:climbing_harness",
- "description": "Layer 'Climbing gyms' shows service:rental:climbing_harness=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.osm.be theme 'Open Climbing Map')",
- "value": "yes"
- },
- {
- "key": "service:rental:climbing_harness",
- "description": "Layer 'Climbing gyms' shows service:rental:climbing_harness=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.osm.be theme 'Open Climbing Map')",
- "value": "no"
- },
- {
- "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.osm.be theme 'Open Climbing Map')",
- "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.osm.be theme 'Open Climbing Map')",
- "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.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "climbing:length",
- "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'climbing:length' (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if 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.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "climbing:grade:french:max",
- "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'climbing:grade:french:max' (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if climbing!~^(route)$&climbing:sport=yes|sport=climbing)"
- },
- {
- "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.osm.be theme 'Open Climbing Map')",
- "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.osm.be theme 'Open Climbing Map')",
- "value": "no"
- },
- {
- "key": "climbing:boulder",
- "description": "Layer 'Climbing gyms' shows climbing:boulder=limited with a fixed text, namely 'Bouldering is possible, allthough there are only a few routes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')",
- "value": "limited"
- },
- {
- "key": "climbing:boulder",
- "description": "Layer 'Climbing gyms' shows climbing:boulder~.+ with a fixed text, namely 'There are {climbing:boulder} boulder routes' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "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.osm.be theme 'Open Climbing Map')",
- "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.osm.be theme 'Open Climbing Map')",
- "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.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "climbing:bolts:max",
- "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'climbing:bolts:max' (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if climbing:sport=yes)"
- },
- {
- "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.osm.be theme 'Open Climbing Map')",
- "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.osm.be theme 'Open Climbing Map')",
- "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.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "access",
- "description": "Layer 'Climbing gyms' shows access=yes with a fixed text, namely 'Publicly accessible to anyone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if access~.+|)",
- "value": "yes"
- },
- {
- "key": "access",
- "description": "Layer 'Climbing gyms' shows access=permit with a fixed text, namely 'You need a permit to access here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if access~.+|)",
- "value": "permit"
- },
- {
- "key": "access",
- "description": "Layer 'Climbing gyms' shows access=customers with a fixed text, namely 'Only customers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if access~.+|)",
- "value": "customers"
- },
- {
- "key": "access",
- "description": "Layer 'Climbing gyms' shows access=members with a fixed text, namely 'Only club members' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if access~.+|)",
- "value": "members"
- },
- {
- "key": "access",
- "description": "Layer 'Climbing gyms' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if access~.+|)",
- "value": "no"
- },
- {
- "key": "access:description",
- "description": "Layer 'Climbing gyms' shows values with key 'access:description' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "climbing",
- "description": "The MapComplete theme Open Climbing Map 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.osm.be theme 'Open Climbing Map') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Climbing routes allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Climbing routes allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Climbing routes allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Climbing routes allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "name",
- "description": "Layer 'Climbing routes' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "noname",
- "description": "Layer 'Climbing routes' shows noname=yes 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.osm.be theme 'Open Climbing Map')",
- "value": "yes"
- },
- {
- "key": "name",
- "description": "Layer 'Climbing routes' shows noname=yes 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.osm.be theme 'Open Climbing Map') 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.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "climbing:grade:french",
- "description": "Layer 'Climbing routes' shows and asks freeform values for key 'climbing:grade:french' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "climbing:bolts",
- "description": "Layer 'Climbing routes' shows and asks freeform values for key 'climbing:bolts' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "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.osm.be theme 'Open Climbing Map')",
- "value": "no"
- },
- {
- "key": "description",
- "description": "Layer 'Climbing routes' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "access",
- "description": "Layer 'Climbing routes' shows access=yes with a fixed text, namely 'Publicly accessible to anyone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if access~.+|)",
- "value": "yes"
- },
- {
- "key": "access",
- "description": "Layer 'Climbing routes' shows access=permit with a fixed text, namely 'You need a permit to access here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if access~.+|)",
- "value": "permit"
- },
- {
- "key": "access",
- "description": "Layer 'Climbing routes' shows access=customers with a fixed text, namely 'Only customers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if access~.+|)",
- "value": "customers"
- },
- {
- "key": "access",
- "description": "Layer 'Climbing routes' shows access=members with a fixed text, namely 'Only club members' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if access~.+|)",
- "value": "members"
- },
- {
- "key": "access",
- "description": "Layer 'Climbing routes' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if access~.+|)",
- "value": "no"
- },
- {
- "key": "access:description",
- "description": "Layer 'Climbing routes' shows values with key 'access:description' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "sport",
- "description": "The MapComplete theme Open Climbing Map 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.osm.be theme 'Open Climbing Map') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Climbing opportunities allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Climbing opportunities allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Climbing opportunities allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Climbing opportunities allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "name",
- "description": "Layer 'Climbing opportunities' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "noname",
- "description": "Layer 'Climbing opportunities' shows noname=yes 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.osm.be theme 'Open Climbing Map')",
- "value": "yes"
- },
- {
- "key": "name",
- "description": "Layer 'Climbing opportunities' shows noname=yes 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.osm.be theme 'Open Climbing Map') 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.osm.be theme 'Open Climbing Map')",
- "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.osm.be theme 'Open Climbing Map')",
- "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.osm.be theme 'Open Climbing Map')",
- "value": "area"
- },
- {
- "key": "rock",
- "description": "Layer 'Climbing opportunities' shows and asks freeform values for key 'rock' (in the MapComplete.osm.be theme 'Open Climbing Map') (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.osm.be theme 'Open Climbing Map') (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.osm.be theme 'Open Climbing Map') (This is only shown if leisure!~^(sports_centre)$&sport=climbing)"
- },
- {
- "key": "charge",
- "description": "Layer 'Climbing opportunities' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "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.osm.be theme 'Open Climbing Map')",
- "value": "no"
- },
- {
- "key": "fee",
- "description": "Layer 'Climbing opportunities' shows fee=yes 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.osm.be theme 'Open Climbing Map')",
- "value": "yes"
- },
- {
- "key": "charge",
- "description": "Layer 'Climbing opportunities' shows fee=yes 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.osm.be theme 'Open Climbing Map') 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.osm.be theme 'Open Climbing Map')",
- "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.osm.be theme 'Open Climbing Map')",
- "value": "no"
- },
- {
- "key": "climbing:boulder",
- "description": "Layer 'Climbing opportunities' shows climbing:boulder=limited with a fixed text, namely 'Bouldering is possible, allthough there are only a few routes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')",
- "value": "limited"
- },
- {
- "key": "climbing:boulder",
- "description": "Layer 'Climbing opportunities' shows climbing:boulder~.+ with a fixed text, namely 'There are {climbing:boulder} boulder routes' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "access",
- "description": "Layer 'Climbing opportunities' shows access=yes with a fixed text, namely 'Publicly accessible to anyone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if access~.+|)",
- "value": "yes"
- },
- {
- "key": "access",
- "description": "Layer 'Climbing opportunities' shows access=permit with a fixed text, namely 'You need a permit to access here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if access~.+|)",
- "value": "permit"
- },
- {
- "key": "access",
- "description": "Layer 'Climbing opportunities' shows access=customers with a fixed text, namely 'Only customers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if access~.+|)",
- "value": "customers"
- },
- {
- "key": "access",
- "description": "Layer 'Climbing opportunities' shows access=members with a fixed text, namely 'Only club members' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if access~.+|)",
- "value": "members"
- },
- {
- "key": "access",
- "description": "Layer 'Climbing opportunities' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if access~.+|)",
- "value": "no"
- },
- {
- "key": "access:description",
- "description": "Layer 'Climbing opportunities' shows values with key 'access:description' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- },
- {
- "key": "leisure",
- "description": "The MapComplete theme Open Climbing Map has a layer Climbing opportunities? showing features with this tag",
- "value": "sports_centre"
- },
- {
- "key": "barrier",
- "description": "The MapComplete theme Open Climbing Map has a layer Climbing opportunities? showing features with this tag",
- "value": "wall"
- },
- {
- "key": "barrier",
- "description": "The MapComplete theme Open Climbing Map has a layer Climbing opportunities? showing features with this tag",
- "value": "retaining_wall"
- },
- {
- "key": "natural",
- "description": "The MapComplete theme Open Climbing Map has a layer Climbing opportunities? showing features with this tag",
- "value": "cliff"
- },
- {
- "key": "natural",
- "description": "The MapComplete theme Open Climbing Map has a layer Climbing opportunities? showing features with this tag",
- "value": "rock"
- },
- {
- "key": "natural",
- "description": "The MapComplete theme Open Climbing Map has a layer Climbing opportunities? showing features with this tag",
- "value": "stone"
- },
- {
- "key": "climbing",
- "description": "The MapComplete theme Open Climbing Map 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.osm.be theme 'Open Climbing Map') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_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.osm.be theme 'Open Climbing Map')",
- "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.osm.be theme 'Open Climbing Map')",
- "value": "no"
- },
- {
- "key": "access",
- "description": "Layer 'Climbing opportunities?' shows access=yes with a fixed text, namely 'Publicly accessible to anyone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if access~.+|)",
- "value": "yes"
- },
- {
- "key": "access",
- "description": "Layer 'Climbing opportunities?' shows access=permit with a fixed text, namely 'You need a permit to access here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if access~.+|)",
- "value": "permit"
- },
- {
- "key": "access",
- "description": "Layer 'Climbing opportunities?' shows access=customers with a fixed text, namely 'Only customers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if access~.+|)",
- "value": "customers"
- },
- {
- "key": "access",
- "description": "Layer 'Climbing opportunities?' shows access=members with a fixed text, namely 'Only club members' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if access~.+|)",
- "value": "members"
- },
- {
- "key": "access",
- "description": "Layer 'Climbing opportunities?' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') (This is only shown if access~.+|)",
- "value": "no"
- },
- {
- "key": "access:description",
- "description": "Layer 'Climbing opportunities?' shows values with key 'access:description' (in the MapComplete.osm.be theme 'Open Climbing Map')"
- }
- ]
-}
\ No newline at end of file
diff --git a/Docs/TagInfo/mapcomplete_clock.json b/Docs/TagInfo/mapcomplete_clock.json
deleted file mode 100644
index ed03605f9..000000000
--- a/Docs/TagInfo/mapcomplete_clock.json
+++ /dev/null
@@ -1,173 +0,0 @@
-{
- "data_format": 1,
- "project": {
- "name": "MapComplete Clocks",
- "description": "Map showing all public clocks",
- "project_url": "https://mapcomplete.osm.be/clock",
- "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/",
- "icon_url": "https://mapcomplete.osm.be/assets/layers/clock/clock.svg",
- "contact_name": "Pieter Vander Vennet",
- "contact_email": "pietervdvn@posteo.net"
- },
- "tags": [
- {
- "key": "amenity",
- "description": "The MapComplete theme Clocks 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.osm.be theme 'Clocks') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Clocks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Clocks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Clocks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Clocks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Clocks')",
- "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.osm.be theme 'Clocks')",
- "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.osm.be theme 'Clocks')",
- "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.osm.be theme 'Clocks')",
- "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.osm.be theme 'Clocks')",
- "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.osm.be theme 'Clocks')",
- "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.osm.be theme 'Clocks')",
- "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.osm.be theme 'Clocks')",
- "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.osm.be theme 'Clocks')",
- "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.osm.be theme 'Clocks')",
- "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.osm.be theme 'Clocks')",
- "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.osm.be theme 'Clocks')",
- "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.osm.be theme 'Clocks')",
- "value": "no"
- },
- {
- "key": "date",
- "description": "Layer 'Clocks' shows with a fixed text, namely 'This clock does probably not display the date' (in the MapComplete.osm.be theme 'Clocks') 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.osm.be theme 'Clocks')",
- "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.osm.be theme 'Clocks')",
- "value": "no"
- },
- {
- "key": "thermometer",
- "description": "Layer 'Clocks' shows with a fixed text, namely 'This clock does probably not display the temperature' (in the MapComplete.osm.be theme 'Clocks') 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.osm.be theme 'Clocks')",
- "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.osm.be theme 'Clocks')",
- "value": "no"
- },
- {
- "key": "barometer",
- "description": "Layer 'Clocks' shows with a fixed text, namely 'This clock does probably not display the air pressure' (in the MapComplete.osm.be theme 'Clocks') 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.osm.be theme 'Clocks')",
- "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.osm.be theme 'Clocks')",
- "value": "no"
- },
- {
- "key": "hygrometer",
- "description": "Layer 'Clocks' shows with a fixed text, namely 'This clock does probably not display the humidity' (in the MapComplete.osm.be theme 'Clocks') 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.osm.be theme 'Clocks')"
- },
- {
- "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.osm.be theme 'Clocks')",
- "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.osm.be theme 'Clocks')",
- "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.osm.be theme 'Clocks')",
- "value": "4"
- }
- ]
-}
\ No newline at end of file
diff --git a/Docs/TagInfo/mapcomplete_cycle_infra.json b/Docs/TagInfo/mapcomplete_cycle_infra.json
deleted file mode 100644
index 787785489..000000000
--- a/Docs/TagInfo/mapcomplete_cycle_infra.json
+++ /dev/null
@@ -1,867 +0,0 @@
-{
- "data_format": 1,
- "project": {
- "name": "MapComplete Bicycle infrastructure",
- "description": "A map where you can view and edit things related to the bicycle infrastructure.",
- "project_url": "https://mapcomplete.osm.be/cycle_infra",
- "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/",
- "icon_url": "https://mapcomplete.osm.be/assets/themes/cycle_infra/cycle-infra.svg",
- "contact_name": "Pieter Vander Vennet",
- "contact_email": "pietervdvn@posteo.net"
- },
- "tags": [
- {
- "key": "highway",
- "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag",
- "value": "cycleway"
- },
- {
- "key": "cycleway",
- "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag",
- "value": "lane"
- },
- {
- "key": "cycleway",
- "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag",
- "value": "shared_lane"
- },
- {
- "key": "cycleway",
- "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag",
- "value": "track"
- },
- {
- "key": "cyclestreet",
- "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag",
- "value": "yes"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag",
- "value": "residential"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag",
- "value": "tertiary"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag",
- "value": "unclassified"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag",
- "value": "primary"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag",
- "value": "secondary"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag",
- "value": "tertiary_link"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag",
- "value": "primary_link"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag",
- "value": "secondary_link"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag",
- "value": "service"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag",
- "value": "footway"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag",
- "value": "pedestrian"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag",
- "value": "living_street"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag",
- "value": "path"
- },
- {
- "key": "bicycle",
- "description": "The MapComplete theme Bicycle infrastructure 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.osm.be theme 'Bicycle infrastructure') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "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.osm.be theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway&highway!=path&highway!=footway)",
- "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.osm.be theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway&highway!=path&highway!=footway)",
- "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.osm.be theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway&highway!=path&highway!=footway)",
- "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.osm.be theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway&highway!=path&highway!=footway)",
- "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.osm.be theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway&highway!=path&highway!=footway)",
- "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.osm.be theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway&highway!=path&highway!=footway)",
- "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.osm.be theme 'Bicycle infrastructure')",
- "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.osm.be theme 'Bicycle infrastructure')",
- "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.osm.be theme 'Bicycle infrastructure')",
- "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.osm.be theme 'Bicycle infrastructure')",
- "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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway&highway!=path&highway!=footway)",
- "value": "yes"
- },
- {
- "key": "cyclestreet",
- "description": "Layer 'Cycleways and roads' shows with a fixed text, namely 'This is not a cyclestreet.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle infrastructure') 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.osm.be theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway&highway!=path&highway!=footway)"
- },
- {
- "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.osm.be theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway&highway!=path&highway!=footway)",
- "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.osm.be theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway&highway!=path&highway!=footway)",
- "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.osm.be theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway&highway!=path&highway!=footway)",
- "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.osm.be theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway&highway!=path&highway!=footway)",
- "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.osm.be theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway&highway!=path&highway!=footway)",
- "value": "90"
- },
- {
- "key": "cycleway:surface",
- "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'cycleway:surface' (in the MapComplete.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (This is only shown if cycleway=shared_lane|cycleway=lane|cycleway=track)",
- "value": "ground"
- },
- {
- "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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure')"
- },
- {
- "key": "surface",
- "description": "Layer 'Cycleways and roads' shows surface=unpaved with a fixed text, namely 'This cycleway is unhardened' (in the MapComplete.osm.be theme 'Bicycle infrastructure')",
- "value": "unpaved"
- },
- {
- "key": "surface",
- "description": "Layer 'Cycleways and roads' shows surface=paved with a fixed text, namely 'This cycleway is paved' (in the MapComplete.osm.be theme 'Bicycle infrastructure')",
- "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.osm.be theme 'Bicycle infrastructure')",
- "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.osm.be theme 'Bicycle infrastructure')",
- "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.osm.be theme 'Bicycle infrastructure')",
- "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.osm.be theme 'Bicycle infrastructure')",
- "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.osm.be theme 'Bicycle infrastructure')",
- "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.osm.be theme 'Bicycle infrastructure')",
- "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.osm.be theme 'Bicycle infrastructure')",
- "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.osm.be theme 'Bicycle infrastructure')",
- "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.osm.be theme 'Bicycle infrastructure')",
- "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.osm.be theme 'Bicycle infrastructure')",
- "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.osm.be theme 'Bicycle infrastructure')",
- "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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (This is only shown if highway=cycleway|highway=path)",
- "value": "kerb"
- },
- {
- "key": "barrier",
- "description": "The MapComplete theme Bicycle infrastructure has a layer Barriers showing features with this tag",
- "value": "bollard"
- },
- {
- "key": "barrier",
- "description": "The MapComplete theme Bicycle infrastructure has a layer Barriers showing features with this tag",
- "value": "cycle_barrier"
- },
- {
- "key": "id",
- "description": "Layer 'Barriers' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Bicycle infrastructure') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Barriers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Barriers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Barriers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Barriers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure')",
- "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.osm.be theme 'Bicycle infrastructure')",
- "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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (This is only shown if cycle_barrier=double|cycle_barrier=triple)"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Bicycle infrastructure has a layer Crossings showing features with this tag",
- "value": "traffic_signals"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Bicycle infrastructure 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.osm.be theme 'Bicycle infrastructure') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Crossings allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Crossings allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Crossings allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Crossings allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Bicycle infrastructure') (This is only shown if highway=crossing)",
- "value": "uncontrolled"
- },
- {
- "key": "crossing",
- "description": "Layer 'Crossings' shows crossing=traffic_signals with a fixed text, namely 'Crossing with traffic signals' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle infrastructure') (This is only shown if highway=crossing)",
- "value": "traffic_signals"
- },
- {
- "key": "crossing",
- "description": "Layer 'Crossings' shows crossing=zebra with a fixed text, namely 'Zebra crossing' (in the MapComplete.osm.be theme 'Bicycle infrastructure') (This is only shown if highway=crossing)",
- "value": "zebra"
- },
- {
- "key": "crossing",
- "description": "Layer 'Crossings' shows crossing=unmarked with a fixed text, namely 'Crossing without crossing markings' and allows to pick this as a default answer (in the MapComplete.osm.be 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.osm.be theme 'Bicycle infrastructure') (This is only shown if crossing=uncontrolled)",
- "value": "zebra"
- },
- {
- "key": "crossing_ref",
- "description": "Layer 'Crossings' shows with a fixed text, namely 'This is not a zebra crossing' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle infrastructure') 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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (This is only shown if highway=traffic_signals)",
- "value": "yes"
- },
- {
- "key": "red_turn:right:bicycle",
- "description": "Layer 'Crossings' shows red_turn:right:bicycle=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.osm.be theme 'Bicycle infrastructure') (This is only shown if highway=traffic_signals)",
- "value": "yes"
- },
- {
- "key": "red_turn:right:bicycle",
- "description": "Layer 'Crossings' shows red_turn:right:bicycle=no with a fixed text, namely 'A cyclist can not turn right if the light is red' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle infrastructure') (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.osm.be theme 'Bicycle infrastructure') (This is only shown if highway=traffic_signals)",
- "value": "yes"
- },
- {
- "key": "red_turn:straight:bicycle",
- "description": "Layer 'Crossings' shows red_turn:straight:bicycle=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.osm.be theme 'Bicycle infrastructure') (This is only shown if highway=traffic_signals)",
- "value": "yes"
- },
- {
- "key": "red_turn:straight:bicycle",
- "description": "Layer 'Crossings' shows red_turn:straight:bicycle=no with a fixed text, namely 'A cyclist can not go straight on if the light is red' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle infrastructure') (This is only shown if highway=traffic_signals)",
- "value": "no"
- }
- ]
-}
\ No newline at end of file
diff --git a/Docs/TagInfo/mapcomplete_cyclestreets.json b/Docs/TagInfo/mapcomplete_cyclestreets.json
deleted file mode 100644
index 0cb744f0b..000000000
--- a/Docs/TagInfo/mapcomplete_cyclestreets.json
+++ /dev/null
@@ -1,526 +0,0 @@
-{
- "data_format": 1,
- "project": {
- "name": "MapComplete Cyclestreets",
- "description": "A map of cyclestreets",
- "project_url": "https://mapcomplete.osm.be/cyclestreets",
- "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/",
- "icon_url": "https://mapcomplete.osm.be/assets/themes/cyclestreets/logo.svg",
- "contact_name": "Pieter Vander Vennet",
- "contact_email": "pietervdvn@posteo.net"
- },
- "tags": [
- {
- "key": "cyclestreet",
- "description": "The MapComplete theme Cyclestreets has a layer Cyclestreets showing features with this tag",
- "value": "yes"
- },
- {
- "key": "bicycle_road",
- "description": "The MapComplete theme Cyclestreets has a layer Cyclestreets showing features with this tag",
- "value": "yes"
- },
- {
- "key": "cyclestreet",
- "description": "Layer 'Cyclestreets' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "yes"
- },
- {
- "key": "maxspeed",
- "description": "Layer 'Cyclestreets' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "30"
- },
- {
- "key": "overtaking:motor_vehicle",
- "description": "Layer 'Cyclestreets' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "no"
- },
- {
- "key": "proposed:cyclestreet",
- "description": "Layer 'Cyclestreets' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.",
- "value": ""
- },
- {
- "key": "bicycle_road",
- "description": "Layer 'Cyclestreets' shows bicycle_road=yes with a fixed text, namely 'This street is a bicycle road' (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "yes"
- },
- {
- "key": "bicycle_road",
- "description": "Layer 'Cyclestreets' shows bicycle_road=yes&maxspeed=30&source:maxspeed=DE:bicycle_road&vehicle=no&bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "yes"
- },
- {
- "key": "proposed:bicycle_road",
- "description": "Layer 'Cyclestreets' shows bicycle_road=yes&maxspeed=30&source:maxspeed=DE:bicycle_road&vehicle=no&bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key proposed:bicycle_road.",
- "value": ""
- },
- {
- "key": "maxspeed",
- "description": "Layer 'Cyclestreets' shows bicycle_road=yes&maxspeed=30&source:maxspeed=DE:bicycle_road&vehicle=no&bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "30"
- },
- {
- "key": "source:maxspeed",
- "description": "Layer 'Cyclestreets' shows bicycle_road=yes&maxspeed=30&source:maxspeed=DE:bicycle_road&vehicle=no&bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "DE:bicycle_road"
- },
- {
- "key": "vehicle",
- "description": "Layer 'Cyclestreets' shows bicycle_road=yes&maxspeed=30&source:maxspeed=DE:bicycle_road&vehicle=no&bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "no"
- },
- {
- "key": "bicycle",
- "description": "Layer 'Cyclestreets' shows bicycle_road=yes&maxspeed=30&source:maxspeed=DE:bicycle_road&vehicle=no&bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "designated"
- },
- {
- "key": "cyclestreet",
- "description": "Layer 'Cyclestreets' shows cyclestreet=yes with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "yes"
- },
- {
- "key": "proposed:cyclestreet",
- "description": "Layer 'Cyclestreets' shows cyclestreet=yes with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.",
- "value": ""
- },
- {
- "key": "cyclestreet",
- "description": "Layer 'Cyclestreets' shows proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclestreet soon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key cyclestreet.",
- "value": ""
- },
- {
- "key": "proposed:cyclestreet",
- "description": "Layer 'Cyclestreets' shows proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclestreet soon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "yes"
- },
- {
- "key": "bicycle_road",
- "description": "Layer 'Cyclestreets' shows proposed:bicycle_road=yes with a fixed text, namely 'This street will become a bicycle road soon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key bicycle_road.",
- "value": ""
- },
- {
- "key": "proposed:bicycle_road",
- "description": "Layer 'Cyclestreets' shows proposed:bicycle_road=yes with a fixed text, namely 'This street will become a bicycle road soon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "yes"
- },
- {
- "key": "cyclestreet",
- "description": "Layer 'Cyclestreets' shows with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key cyclestreet.",
- "value": ""
- },
- {
- "key": "proposed:cyclestreet",
- "description": "Layer 'Cyclestreets' shows with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.",
- "value": ""
- },
- {
- "key": "bicycle_road",
- "description": "Layer 'Cyclestreets' shows with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key bicycle_road.",
- "value": ""
- },
- {
- "key": "proposed:bicycle_road",
- "description": "Layer 'Cyclestreets' shows with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key proposed:bicycle_road.",
- "value": ""
- },
- {
- "key": "overtaking:motor_vehicle",
- "description": "Layer 'Cyclestreets' shows with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key overtaking:motor_vehicle.",
- "value": ""
- },
- {
- "key": "traffic_sign",
- "description": "Layer 'Cyclestreets' shows traffic_sign=DE:244.1,1020-30 with a fixed text, namely 'Residents allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') (This is only shown if bicycle_road=yes&_country=de)",
- "value": "DE:244.1,1020-30"
- },
- {
- "key": "traffic_sign",
- "description": "Layer 'Cyclestreets' shows traffic_sign=DE:244.1,1022-12,1024-10 with a fixed text, namely 'Motor vehicles allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') (This is only shown if bicycle_road=yes&_country=de)",
- "value": "DE:244.1,1022-12,1024-10"
- },
- {
- "key": "traffic_sign",
- "description": "Layer 'Cyclestreets' shows traffic_sign=DE:244.1,1022-12 with a fixed text, namely 'Motorcycles allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') (This is only shown if bicycle_road=yes&_country=de)",
- "value": "DE:244.1,1022-12"
- },
- {
- "key": "traffic_sign",
- "description": "Layer 'Cyclestreets' shows traffic_sign=DE:244.1,1024-10 with a fixed text, namely 'Cars allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') (This is only shown if bicycle_road=yes&_country=de)",
- "value": "DE:244.1,1024-10"
- },
- {
- "key": "traffic_sign",
- "description": "Layer 'Cyclestreets' shows traffic_sign=DE:244.1 with a fixed text, namely 'There are no supplementary signs at this bicycle road.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') (This is only shown if bicycle_road=yes&_country=de)",
- "value": "DE:244.1"
- },
- {
- "key": "cyclestreet:start_date",
- "description": "Layer 'Cyclestreets' shows and asks freeform values for key 'cyclestreet:start_date' (in the MapComplete.osm.be theme 'Cyclestreets') (This is only shown if proposed:cyclestreet=yes)"
- },
- {
- "key": "id",
- "description": "Layer 'Cyclestreets' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Cyclestreets') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Cyclestreets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Cyclestreets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Cyclestreets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Cyclestreets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "proposed:cyclestreet",
- "description": "The MapComplete theme Cyclestreets has a layer Future cyclestreet showing features with this tag",
- "value": "yes"
- },
- {
- "key": "proposed:bicycle_road",
- "description": "The MapComplete theme Cyclestreets has a layer Future cyclestreet showing features with this tag",
- "value": "yes"
- },
- {
- "key": "cyclestreet",
- "description": "Layer 'Future cyclestreet' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "yes"
- },
- {
- "key": "maxspeed",
- "description": "Layer 'Future cyclestreet' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "30"
- },
- {
- "key": "overtaking:motor_vehicle",
- "description": "Layer 'Future cyclestreet' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "no"
- },
- {
- "key": "proposed:cyclestreet",
- "description": "Layer 'Future cyclestreet' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.",
- "value": ""
- },
- {
- "key": "bicycle_road",
- "description": "Layer 'Future cyclestreet' shows bicycle_road=yes with a fixed text, namely 'This street is a bicycle road' (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "yes"
- },
- {
- "key": "bicycle_road",
- "description": "Layer 'Future cyclestreet' shows bicycle_road=yes&maxspeed=30&source:maxspeed=DE:bicycle_road&vehicle=no&bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "yes"
- },
- {
- "key": "proposed:bicycle_road",
- "description": "Layer 'Future cyclestreet' shows bicycle_road=yes&maxspeed=30&source:maxspeed=DE:bicycle_road&vehicle=no&bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key proposed:bicycle_road.",
- "value": ""
- },
- {
- "key": "maxspeed",
- "description": "Layer 'Future cyclestreet' shows bicycle_road=yes&maxspeed=30&source:maxspeed=DE:bicycle_road&vehicle=no&bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "30"
- },
- {
- "key": "source:maxspeed",
- "description": "Layer 'Future cyclestreet' shows bicycle_road=yes&maxspeed=30&source:maxspeed=DE:bicycle_road&vehicle=no&bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "DE:bicycle_road"
- },
- {
- "key": "vehicle",
- "description": "Layer 'Future cyclestreet' shows bicycle_road=yes&maxspeed=30&source:maxspeed=DE:bicycle_road&vehicle=no&bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "no"
- },
- {
- "key": "bicycle",
- "description": "Layer 'Future cyclestreet' shows bicycle_road=yes&maxspeed=30&source:maxspeed=DE:bicycle_road&vehicle=no&bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "designated"
- },
- {
- "key": "cyclestreet",
- "description": "Layer 'Future cyclestreet' shows cyclestreet=yes with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "yes"
- },
- {
- "key": "proposed:cyclestreet",
- "description": "Layer 'Future cyclestreet' shows cyclestreet=yes with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.",
- "value": ""
- },
- {
- "key": "cyclestreet",
- "description": "Layer 'Future cyclestreet' shows proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclestreet soon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key cyclestreet.",
- "value": ""
- },
- {
- "key": "proposed:cyclestreet",
- "description": "Layer 'Future cyclestreet' shows proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclestreet soon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "yes"
- },
- {
- "key": "bicycle_road",
- "description": "Layer 'Future cyclestreet' shows proposed:bicycle_road=yes with a fixed text, namely 'This street will become a bicycle road soon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key bicycle_road.",
- "value": ""
- },
- {
- "key": "proposed:bicycle_road",
- "description": "Layer 'Future cyclestreet' shows proposed:bicycle_road=yes with a fixed text, namely 'This street will become a bicycle road soon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "yes"
- },
- {
- "key": "cyclestreet",
- "description": "Layer 'Future cyclestreet' shows with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key cyclestreet.",
- "value": ""
- },
- {
- "key": "proposed:cyclestreet",
- "description": "Layer 'Future cyclestreet' shows with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.",
- "value": ""
- },
- {
- "key": "bicycle_road",
- "description": "Layer 'Future cyclestreet' shows with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key bicycle_road.",
- "value": ""
- },
- {
- "key": "proposed:bicycle_road",
- "description": "Layer 'Future cyclestreet' shows with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key proposed:bicycle_road.",
- "value": ""
- },
- {
- "key": "overtaking:motor_vehicle",
- "description": "Layer 'Future cyclestreet' shows with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key overtaking:motor_vehicle.",
- "value": ""
- },
- {
- "key": "traffic_sign",
- "description": "Layer 'Future cyclestreet' shows traffic_sign=DE:244.1,1020-30 with a fixed text, namely 'Residents allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') (This is only shown if bicycle_road=yes&_country=de)",
- "value": "DE:244.1,1020-30"
- },
- {
- "key": "traffic_sign",
- "description": "Layer 'Future cyclestreet' shows traffic_sign=DE:244.1,1022-12,1024-10 with a fixed text, namely 'Motor vehicles allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') (This is only shown if bicycle_road=yes&_country=de)",
- "value": "DE:244.1,1022-12,1024-10"
- },
- {
- "key": "traffic_sign",
- "description": "Layer 'Future cyclestreet' shows traffic_sign=DE:244.1,1022-12 with a fixed text, namely 'Motorcycles allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') (This is only shown if bicycle_road=yes&_country=de)",
- "value": "DE:244.1,1022-12"
- },
- {
- "key": "traffic_sign",
- "description": "Layer 'Future cyclestreet' shows traffic_sign=DE:244.1,1024-10 with a fixed text, namely 'Cars allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') (This is only shown if bicycle_road=yes&_country=de)",
- "value": "DE:244.1,1024-10"
- },
- {
- "key": "traffic_sign",
- "description": "Layer 'Future cyclestreet' shows traffic_sign=DE:244.1 with a fixed text, namely 'There are no supplementary signs at this bicycle road.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') (This is only shown if bicycle_road=yes&_country=de)",
- "value": "DE:244.1"
- },
- {
- "key": "cyclestreet:start_date",
- "description": "Layer 'Future cyclestreet' shows and asks freeform values for key 'cyclestreet:start_date' (in the MapComplete.osm.be theme 'Cyclestreets') (This is only shown if proposed:cyclestreet=yes)"
- },
- {
- "key": "id",
- "description": "Layer 'Future cyclestreet' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Cyclestreets') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Future cyclestreet allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Future cyclestreet allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Future cyclestreet allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Future cyclestreet allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Cyclestreets has a layer All streets showing features with this tag",
- "value": "residential"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Cyclestreets has a layer All streets showing features with this tag",
- "value": "tertiary"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Cyclestreets has a layer All streets showing features with this tag",
- "value": "unclassified"
- },
- {
- "key": "cyclestreet",
- "description": "Layer 'All streets' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "yes"
- },
- {
- "key": "maxspeed",
- "description": "Layer 'All streets' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "30"
- },
- {
- "key": "overtaking:motor_vehicle",
- "description": "Layer 'All streets' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "no"
- },
- {
- "key": "proposed:cyclestreet",
- "description": "Layer 'All streets' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.",
- "value": ""
- },
- {
- "key": "bicycle_road",
- "description": "Layer 'All streets' shows bicycle_road=yes with a fixed text, namely 'This street is a bicycle road' (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "yes"
- },
- {
- "key": "bicycle_road",
- "description": "Layer 'All streets' shows bicycle_road=yes&maxspeed=30&source:maxspeed=DE:bicycle_road&vehicle=no&bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "yes"
- },
- {
- "key": "proposed:bicycle_road",
- "description": "Layer 'All streets' shows bicycle_road=yes&maxspeed=30&source:maxspeed=DE:bicycle_road&vehicle=no&bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key proposed:bicycle_road.",
- "value": ""
- },
- {
- "key": "maxspeed",
- "description": "Layer 'All streets' shows bicycle_road=yes&maxspeed=30&source:maxspeed=DE:bicycle_road&vehicle=no&bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "30"
- },
- {
- "key": "source:maxspeed",
- "description": "Layer 'All streets' shows bicycle_road=yes&maxspeed=30&source:maxspeed=DE:bicycle_road&vehicle=no&bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "DE:bicycle_road"
- },
- {
- "key": "vehicle",
- "description": "Layer 'All streets' shows bicycle_road=yes&maxspeed=30&source:maxspeed=DE:bicycle_road&vehicle=no&bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "no"
- },
- {
- "key": "bicycle",
- "description": "Layer 'All streets' shows bicycle_road=yes&maxspeed=30&source:maxspeed=DE:bicycle_road&vehicle=no&bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "designated"
- },
- {
- "key": "cyclestreet",
- "description": "Layer 'All streets' shows cyclestreet=yes with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "yes"
- },
- {
- "key": "proposed:cyclestreet",
- "description": "Layer 'All streets' shows cyclestreet=yes with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.",
- "value": ""
- },
- {
- "key": "cyclestreet",
- "description": "Layer 'All streets' shows proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclestreet soon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key cyclestreet.",
- "value": ""
- },
- {
- "key": "proposed:cyclestreet",
- "description": "Layer 'All streets' shows proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclestreet soon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "yes"
- },
- {
- "key": "bicycle_road",
- "description": "Layer 'All streets' shows proposed:bicycle_road=yes with a fixed text, namely 'This street will become a bicycle road soon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key bicycle_road.",
- "value": ""
- },
- {
- "key": "proposed:bicycle_road",
- "description": "Layer 'All streets' shows proposed:bicycle_road=yes with a fixed text, namely 'This street will become a bicycle road soon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')",
- "value": "yes"
- },
- {
- "key": "cyclestreet",
- "description": "Layer 'All streets' shows with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key cyclestreet.",
- "value": ""
- },
- {
- "key": "proposed:cyclestreet",
- "description": "Layer 'All streets' shows with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.",
- "value": ""
- },
- {
- "key": "bicycle_road",
- "description": "Layer 'All streets' shows with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key bicycle_road.",
- "value": ""
- },
- {
- "key": "proposed:bicycle_road",
- "description": "Layer 'All streets' shows with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key proposed:bicycle_road.",
- "value": ""
- },
- {
- "key": "overtaking:motor_vehicle",
- "description": "Layer 'All streets' shows with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key overtaking:motor_vehicle.",
- "value": ""
- },
- {
- "key": "traffic_sign",
- "description": "Layer 'All streets' shows traffic_sign=DE:244.1,1020-30 with a fixed text, namely 'Residents allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') (This is only shown if bicycle_road=yes&_country=de)",
- "value": "DE:244.1,1020-30"
- },
- {
- "key": "traffic_sign",
- "description": "Layer 'All streets' shows traffic_sign=DE:244.1,1022-12,1024-10 with a fixed text, namely 'Motor vehicles allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') (This is only shown if bicycle_road=yes&_country=de)",
- "value": "DE:244.1,1022-12,1024-10"
- },
- {
- "key": "traffic_sign",
- "description": "Layer 'All streets' shows traffic_sign=DE:244.1,1022-12 with a fixed text, namely 'Motorcycles allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') (This is only shown if bicycle_road=yes&_country=de)",
- "value": "DE:244.1,1022-12"
- },
- {
- "key": "traffic_sign",
- "description": "Layer 'All streets' shows traffic_sign=DE:244.1,1024-10 with a fixed text, namely 'Cars allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') (This is only shown if bicycle_road=yes&_country=de)",
- "value": "DE:244.1,1024-10"
- },
- {
- "key": "traffic_sign",
- "description": "Layer 'All streets' shows traffic_sign=DE:244.1 with a fixed text, namely 'There are no supplementary signs at this bicycle road.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') (This is only shown if bicycle_road=yes&_country=de)",
- "value": "DE:244.1"
- },
- {
- "key": "cyclestreet:start_date",
- "description": "Layer 'All streets' shows and asks freeform values for key 'cyclestreet:start_date' (in the MapComplete.osm.be theme 'Cyclestreets') (This is only shown if proposed:cyclestreet=yes)"
- },
- {
- "key": "id",
- "description": "Layer 'All streets' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Cyclestreets') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'All streets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'All streets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'All streets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'All streets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- }
- ]
-}
\ No newline at end of file
diff --git a/Docs/TagInfo/mapcomplete_cyclofix.json b/Docs/TagInfo/mapcomplete_cyclofix.json
deleted file mode 100644
index eba74e39c..000000000
--- a/Docs/TagInfo/mapcomplete_cyclofix.json
+++ /dev/null
@@ -1,2686 +0,0 @@
-{
- "data_format": 1,
- "project": {
- "name": "MapComplete Cyclofix - an open map for cyclists",
- "description": "The goal of this map is to present cyclists with an easy-to-use solution to find the appropriate infrastructure for their needs",
- "project_url": "https://mapcomplete.osm.be/cyclofix",
- "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/",
- "icon_url": "https://mapcomplete.osm.be/assets/themes/cyclofix/logo.svg",
- "contact_name": "Pieter Vander Vennet",
- "contact_email": "pietervdvn@posteo.net"
- },
- "tags": [
- {
- "key": "amenity",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike cafe showing features with this tag",
- "value": "pub"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike cafe showing features with this tag",
- "value": "bar"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike cafe showing features with this tag",
- "value": "cafe"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike cafe showing features with this tag",
- "value": "restaurant"
- },
- {
- "key": "pub",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike cafe showing features with this tag",
- "value": "cycling"
- },
- {
- "key": "pub",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike cafe showing features with this tag",
- "value": "bicycle"
- },
- {
- "key": "theme",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike cafe showing features with this tag",
- "value": "cycling"
- },
- {
- "key": "theme",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike cafe showing features with this tag",
- "value": "bicycle"
- },
- {
- "key": "id",
- "description": "Layer 'Bike cafe' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Bike cafe allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Bike cafe allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Bike cafe allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Bike cafe allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "name",
- "description": "Layer 'Bike cafe' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "no"
- },
- {
- "key": "website",
- "description": "Layer 'Bike cafe' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Bike cafe' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "phone",
- "description": "Layer 'Bike cafe' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Bike cafe' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "email",
- "description": "Layer 'Bike cafe' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Bike cafe' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Bike cafe' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "shop",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike repair/shop showing features with this tag",
- "value": "bicycle"
- },
- {
- "key": "shop",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike repair/shop showing features with this tag",
- "value": "sports"
- },
- {
- "key": "sport",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike repair/shop showing features with this tag",
- "value": "bicycle"
- },
- {
- "key": "sport",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike repair/shop showing features with this tag",
- "value": "cycling"
- },
- {
- "key": "sport",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike repair/shop showing features with this tag",
- "value": ""
- },
- {
- "key": "id",
- "description": "Layer 'Bike repair/shop' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Bike repair/shop allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Bike repair/shop allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Bike repair/shop allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Bike repair/shop allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "shop",
- "description": "Layer 'Bike repair/shop' shows shop=rental with a fixed text, namely 'This business focuses on rental' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if shop~.+&shop!~^(bicycle)$&shop!~^(sports)$)",
- "value": "rental"
- },
- {
- "key": "name",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "website",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Bike repair/shop' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "phone",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Bike repair/shop' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "email",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Bike repair/shop' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "access",
- "description": "Layer 'Bike repair/shop' shows values with key 'access' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "service:bicycle:retail",
- "description": "Layer 'Bike repair/shop' shows service:bicycle:retail=yes with a fixed text, namely 'This shop sells bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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 bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "no"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "no"
- },
- {
- "key": "rental",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'rental' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if service:bicycle:rental=yes)"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if service:bicycle:rental=yes)",
- "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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if service:bicycle:rental=yes)",
- "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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if service:bicycle:rental=yes)",
- "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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if service:bicycle:rental=yes)",
- "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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if service:bicycle:rental=yes)",
- "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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if service:bicycle:rental=yes)",
- "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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if service:bicycle:rental=yes)",
- "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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if service:bicycle:rental=yes)",
- "value": "bike_helmet"
- },
- {
- "key": "capacity:city_bike",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:city_bike' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if rental~^(.*city_bike.*)$&service:bicycle:rental=yes)"
- },
- {
- "key": "capacity:ebike",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:ebike' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if rental~^(.*ebike.*)$&service:bicycle:rental=yes)"
- },
- {
- "key": "capacity:kid_bike",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:kid_bike' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if rental~^(.*kid_bike.*)$&service:bicycle:rental=yes)"
- },
- {
- "key": "capacity:bmx",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:bmx' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if rental~^(.*bmx.*)$&service:bicycle:rental=yes)"
- },
- {
- "key": "capacity:mtb",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:mtb' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if rental~^(.*mtb.*)$&service:bicycle:rental=yes)"
- },
- {
- "key": "capacity:bicycle_pannier",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:bicycle_pannier' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if rental~^(.*bicycle_pannier.*)$&service:bicycle:rental=yes)"
- },
- {
- "key": "capacity:tandem_bicycle",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:tandem_bicycle' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if rental~^(.*tandem_bicycle.*)$&service:bicycle:rental=yes)"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "only"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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 repair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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 repair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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 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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if amenity!=bike_wash&amenity!=bicycle_wash)"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if amenity!=bike_wash&amenity!=bicycle_wash)",
- "value": "no"
- },
- {
- "key": "service:bicycle:cleaning:fee",
- "description": "Layer 'Bike repair/shop' shows service:bicycle:cleaning:fee=yes with a fixed text, namely 'Free to use' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if amenity!=bike_wash&amenity!=bicycle_wash)",
- "value": "yes"
- },
- {
- "key": "service:bicycle:cleaning:charge",
- "description": "Layer 'Bike repair/shop' shows service:bicycle:cleaning:fee=yes with a fixed text, namely 'Free to use' (in the MapComplete.osm.be theme 'Cyclofix - an open 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)",
- "value": ""
- },
- {
- "key": "description",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bicycle rental showing features with this tag",
- "value": "bicycle_rental"
- },
- {
- "key": "bicycle_rental",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bicycle rental showing features with this tag"
- },
- {
- "key": "service:bicycle:rental",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bicycle rental showing features with this tag",
- "value": "yes"
- },
- {
- "key": "rental",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bicycle rental showing features with this tag"
- },
- {
- "key": "id",
- "description": "Layer 'Bicycle rental' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Bicycle rental allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Bicycle rental allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Bicycle rental allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Bicycle rental allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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 buisiness 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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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 into a structure' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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 which clearly marked as being for the rental service only' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if amenity=bicycle_rental)",
- "value": "dropoff_point"
- },
- {
- "key": "website",
- "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Bicycle rental' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "email",
- "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Bicycle rental' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "phone",
- "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Bicycle rental' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if shop~.+|opening_hours~.+)"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if shop~.+)",
- "value": "yes"
- },
- {
- "key": "payment:cards",
- "description": "Layer 'Bicycle rental' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if shop~.+)",
- "value": "yes"
- },
- {
- "key": "payment:cash",
- "description": "Layer 'Bicycle rental' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "yes"
- },
- {
- "key": "rental",
- "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'rental' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "rental",
- "description": "Layer 'Bicycle rental' shows rental=city_bike with a fixed text, namely 'Normal city bikes can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "city_bike"
- },
- {
- "key": "rental",
- "description": "Layer 'Bicycle rental' shows rental=ebike with a fixed text, namely 'Electrical bikes can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "ebike"
- },
- {
- "key": "rental",
- "description": "Layer 'Bicycle rental' shows rental=bmx with a fixed text, namely 'BMX bikes can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "bmx"
- },
- {
- "key": "rental",
- "description": "Layer 'Bicycle rental' shows rental=mtb with a fixed text, namely 'Mountainbikes can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "mtb"
- },
- {
- "key": "rental",
- "description": "Layer 'Bicycle rental' shows rental=kid_bike with a fixed text, namely 'Bikes for children can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "kid_bike"
- },
- {
- "key": "rental",
- "description": "Layer 'Bicycle rental' shows rental=tandem with a fixed text, namely 'Tandem bicycles can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "tandem"
- },
- {
- "key": "rental",
- "description": "Layer 'Bicycle rental' shows rental=racebike with a fixed text, namely 'Race bicycles can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "racebike"
- },
- {
- "key": "rental",
- "description": "Layer 'Bicycle rental' shows rental=bike_helmet with a fixed text, namely 'Bike helmets can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "bike_helmet"
- },
- {
- "key": "capacity:city_bike",
- "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:city_bike' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if rental~^(.*city_bike.*)$)"
- },
- {
- "key": "capacity:ebike",
- "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:ebike' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if rental~^(.*ebike.*)$)"
- },
- {
- "key": "capacity:kid_bike",
- "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:kid_bike' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if rental~^(.*kid_bike.*)$)"
- },
- {
- "key": "capacity:bmx",
- "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:bmx' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if rental~^(.*bmx.*)$)"
- },
- {
- "key": "capacity:mtb",
- "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:mtb' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if rental~^(.*mtb.*)$)"
- },
- {
- "key": "capacity:bicycle_pannier",
- "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:bicycle_pannier' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if rental~^(.*bicycle_pannier.*)$)"
- },
- {
- "key": "capacity:tandem_bicycle",
- "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:tandem_bicycle' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if rental~^(.*tandem_bicycle.*)$)"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bicycle library showing features with this tag",
- "value": "bicycle_library"
- },
- {
- "key": "id",
- "description": "Layer 'Bicycle library' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Bicycle library allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Bicycle library allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Bicycle library allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Bicycle library allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "name",
- "description": "Layer 'Bicycle library' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "website",
- "description": "Layer 'Bicycle library' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Bicycle library' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "phone",
- "description": "Layer 'Bicycle library' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Bicycle library' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "email",
- "description": "Layer 'Bicycle library' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Bicycle library' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Bicycle library' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "charge",
- "description": "Layer 'Bicycle library' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "fee",
- "description": "Layer 'Bicycle library' shows fee=no with a fixed text, namely 'Lending a bicycle is free' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "no"
- },
- {
- "key": "charge",
- "description": "Layer 'Bicycle library' shows fee=no with a fixed text, namely 'Lending a bicycle is free' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') 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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "disabled"
- },
- {
- "key": "description",
- "description": "Layer 'Bicycle library' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bicycle pump and repair showing features with this tag",
- "value": "bicycle_repair_station"
- },
- {
- "key": "id",
- "description": "Layer 'Bicycle pump and repair' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Bicycle pump and repair allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "24/7"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "yes"
- },
- {
- "key": "access",
- "description": "Layer 'Bicycle pump and repair' shows access=public with a fixed text, namely 'Publicly accessible' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "no"
- },
- {
- "key": "operator",
- "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "email",
- "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "phone",
- "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if service:bicycle:pump=yes)",
- "value": "broken"
- },
- {
- "key": "level",
- "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "location",
- "description": "Layer 'Bicycle pump and repair' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Bicycle pump and repair' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key level.",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "-1"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bicycle tube vending machine showing features with this tag",
- "value": "vending_machine"
- },
- {
- "key": "vending",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bicycle tube vending machine showing features with this tag"
- },
- {
- "key": "id",
- "description": "Layer 'Bicycle tube vending machine' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Bicycle tube vending machine allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Bicycle tube vending machine allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Bicycle tube vending machine allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Bicycle tube vending machine allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "operational_status",
- "description": "Layer 'Bicycle tube vending machine' shows and asks freeform values for key 'operational_status' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "operational_status",
- "description": "Layer 'Bicycle tube vending machine' shows with a fixed text, namely 'This vending machine works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key operational_status.",
- "value": ""
- },
- {
- "key": "operational_status",
- "description": "Layer 'Bicycle tube vending machine' shows operational_status=broken with a fixed text, namely 'This vending machine is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "broken"
- },
- {
- "key": "operational_status",
- "description": "Layer 'Bicycle tube vending machine' shows operational_status=closed with a fixed text, namely 'This vending machine is closed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "closed"
- },
- {
- "key": "charge",
- "description": "Layer 'Bicycle tube vending machine' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "payment:coins",
- "description": "Layer 'Bicycle tube vending machine' shows payment:coins=yes with a fixed text, namely 'Payment with coins is possible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "yes"
- },
- {
- "key": "payment:notes",
- "description": "Layer 'Bicycle tube vending machine' shows payment:notes=yes with a fixed text, namely 'Payment with notes is possible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "yes"
- },
- {
- "key": "payment:cards",
- "description": "Layer 'Bicycle tube vending machine' shows payment:cards=yes with a fixed text, namely 'Payment with cards is possible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "yes"
- },
- {
- "key": "brand",
- "description": "Layer 'Bicycle tube vending machine' shows and asks freeform values for key 'brand' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "brand",
- "description": "Layer 'Bicycle tube vending machine' shows brand=Continental with a fixed text, namely 'Continental tubes are sold here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "Continental"
- },
- {
- "key": "brand",
- "description": "Layer 'Bicycle tube vending machine' shows brand=Schwalbe with a fixed text, namely 'Schwalbe tubes are sold here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "Schwalbe"
- },
- {
- "key": "operator",
- "description": "Layer 'Bicycle tube vending machine' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "operator",
- "description": "Layer 'Bicycle tube vending machine' shows operator=Schwalbe with a fixed text, namely 'Maintained by Schwalbe' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "Schwalbe"
- },
- {
- "key": "operator",
- "description": "Layer 'Bicycle tube vending machine' shows operator=Continental with a fixed text, namely 'Maintained by Continental' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "Continental"
- },
- {
- "key": "vending:bicycle_light",
- "description": "Layer 'Bicycle tube vending machine' shows vending:bicycle_light=yes with a fixed text, namely 'Bicycle lights are sold here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "yes"
- },
- {
- "key": "vending:gloves",
- "description": "Layer 'Bicycle tube vending machine' shows vending:gloves=yes with a fixed text, namely 'Gloves are sold here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "yes"
- },
- {
- "key": "vending:bicycle_repair_kit",
- "description": "Layer 'Bicycle tube vending machine' shows vending:bicycle_repair_kit=yes with a fixed text, namely 'Bicycle repair kits are sold here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "yes"
- },
- {
- "key": "vending:bicycle_pump",
- "description": "Layer 'Bicycle tube vending machine' shows vending:bicycle_pump=yes with a fixed text, namely 'Bicycle pumps are sold here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "yes"
- },
- {
- "key": "vending:bicycle_lock",
- "description": "Layer 'Bicycle tube vending machine' shows vending:bicycle_lock=yes with a fixed text, namely 'Bicycle locks are sold here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "yes"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Drinking water showing features with this tag",
- "value": "drinking_water"
- },
- {
- "key": "drinking_water",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Drinking water showing features with this tag",
- "value": "yes"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Drinking water allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Drinking water allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Drinking water allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Drinking water allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "operational_status",
- "description": "Layer 'Drinking water' shows with a fixed text, namely 'This drinking water works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key operational_status.",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "closed"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "no"
- },
- {
- "key": "theme",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike-related object showing features with this tag",
- "value": "bicycle"
- },
- {
- "key": "theme",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike-related object showing features with this tag",
- "value": "cycling"
- },
- {
- "key": "sport",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike-related object showing features with this tag",
- "value": "cycling"
- },
- {
- "key": "association",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike-related object showing features with this tag",
- "value": "cycling"
- },
- {
- "key": "association",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike-related object showing features with this tag",
- "value": "bicycle"
- },
- {
- "key": "ngo",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike-related object showing features with this tag",
- "value": "cycling"
- },
- {
- "key": "ngo",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike-related object showing features with this tag",
- "value": "bicycle"
- },
- {
- "key": "club",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike-related object showing features with this tag",
- "value": "bicycle"
- },
- {
- "key": "club",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike-related object showing features with this tag",
- "value": "cycling"
- },
- {
- "key": "id",
- "description": "Layer 'Bike-related object' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Bike-related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Bike-related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Bike-related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Bike-related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "website",
- "description": "Layer 'Bike-related object' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Bike-related object' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "email",
- "description": "Layer 'Bike-related object' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Bike-related object' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "phone",
- "description": "Layer 'Bike-related object' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Bike-related object' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Bike-related object' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "service:bicycle:cleaning",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike cleaning service showing features with this tag",
- "value": "yes"
- },
- {
- "key": "service:bicycle:cleaning",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike cleaning service showing features with this tag",
- "value": "diy"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike cleaning service showing features with this tag",
- "value": "bicycle_wash"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Cyclofix - an open 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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Bike cleaning service allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Bike cleaning service allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Bike cleaning service allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Bike cleaning service allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if amenity!=bike_wash&amenity!=bicycle_wash)"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if amenity!=bike_wash&amenity!=bicycle_wash)",
- "value": "no"
- },
- {
- "key": "service:bicycle:cleaning:fee",
- "description": "Layer 'Bike cleaning service' shows service:bicycle:cleaning:fee=yes with a fixed text, namely 'Free to use' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if amenity!=bike_wash&amenity!=bicycle_wash)",
- "value": "yes"
- },
- {
- "key": "service:bicycle:cleaning:charge",
- "description": "Layer 'Bike cleaning service' shows service:bicycle:cleaning:fee=yes with a fixed text, namely 'Free to use' (in the MapComplete.osm.be theme 'Cyclofix - an open 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)",
- "value": ""
- },
- {
- "key": "charge",
- "description": "Layer 'Bike cleaning service' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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 'This cleaning service is paid' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if amenity=bike_wash|amenity=bicycle_wash)",
- "value": "yes"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike parking showing features with this tag",
- "value": "bicycle_parking"
- },
- {
- "key": "id",
- "description": "Layer 'Bike parking' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Bike parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Bike parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Bike parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Bike parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "bicycle_parking",
- "description": "Layer 'Bike parking' shows bicycle_parking=stands with a fixed text, namely 'Staple racks' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "stands"
- },
- {
- "key": "bicycle_parking",
- "description": "Layer 'Bike parking' shows bicycle_parking=wall_loops with a fixed text, namely 'Wheel rack/loops' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "floor"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "rooftop"
- },
- {
- "key": "location",
- "description": "Layer 'Bike parking' shows with a fixed text, namely 'Surface level parking' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') 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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "access",
- "description": "Layer 'Bike parking' shows and asks freeform values for key 'access' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "customers"
- },
- {
- "key": "access",
- "description": "Layer 'Bike parking' shows access=private 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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "private"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "no"
- },
- {
- "key": "capacity:cargo_bike",
- "description": "Layer 'Bike parking' shows and asks freeform values for key 'capacity:cargo_bike' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if cargo_bike~^(designated|yes)$)"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Charging stations showing features with this tag",
- "value": "charging_station"
- },
- {
- "key": "disused:amenity",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Charging stations showing features with this tag",
- "value": "charging_station"
- },
- {
- "key": "planned:amenity",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Charging stations showing features with this tag",
- "value": "charging_station"
- },
- {
- "key": "construction:amenity",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Charging stations showing features with this tag",
- "value": "charging_station"
- },
- {
- "key": "bicycle",
- "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Charging stations showing features with this tag",
- "value": "yes"
- },
- {
- "key": "id",
- "description": "Layer 'Charging stations' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Charging stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Charging stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Charging stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Charging stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "yes"
- },
- {
- "key": "access",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'access' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "yes"
- },
- {
- "key": "access",
- "description": "Layer 'Charging stations' shows access=permissive|access=public with a fixed text, namely 'Anyone can use this charging station (payment might be needed)' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "permissive"
- },
- {
- "key": "access",
- "description": "Layer 'Charging stations' shows access=permissive|access=public with a fixed text, namely 'Anyone can use this charging station (payment might be needed)' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "private"
- },
- {
- "key": "capacity",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "1"
- },
- {
- "key": "socket:chademo",
- "description": "Layer 'Charging stations' shows socket:chademo~.+&socket:chademo!=1 with a fixed text, namely 'Chademo' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "socket:schuko",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:schuko~.+&socket:schuko!=0)"
- },
- {
- "key": "socket:typee",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:typee~.+&socket:typee!=0)"
- },
- {
- "key": "socket:chademo",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:chademo~.+&socket:chademo!=0)"
- },
- {
- "key": "socket:type1_cable",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:type1_cable~.+&socket:type1_cable!=0)"
- },
- {
- "key": "socket:type1",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:type1~.+&socket:type1!=0)"
- },
- {
- "key": "socket:type1_combo",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:type1_combo~.+&socket:type1_combo!=0)"
- },
- {
- "key": "socket:tesla_supercharger",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:tesla_supercharger~.+&socket:tesla_supercharger!=0)"
- },
- {
- "key": "socket:type2",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:type2~.+&socket:type2!=0)"
- },
- {
- "key": "socket:type2_combo",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:type2_combo~.+&socket:type2_combo!=0)"
- },
- {
- "key": "socket:type2_cable",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:type2_cable~.+&socket:type2_cable!=0)"
- },
- {
- "key": "socket:tesla_supercharger_ccs",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:tesla_supercharger_ccs~.+&socket:tesla_supercharger_ccs!=0)"
- },
- {
- "key": "socket:tesla_destination",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:tesla_destination~.+&socket:tesla_destination!=0)"
- },
- {
- "key": "socket:tesla_destination",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:tesla_destination~.+&socket:tesla_destination!=0)"
- },
- {
- "key": "socket:USB-A",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:USB-A~.+&socket:USB-A!=0)"
- },
- {
- "key": "socket:bosch_3pin",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:bosch_5pin~.+&socket:bosch_5pin!=0)"
- },
- {
- "key": "socket:schuko:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:schuko~.+&socket:schuko!=0)",
- "value": "3.6 kW"
- },
- {
- "key": "socket:typee:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:typee~.+&socket:typee!=0)",
- "value": "22 kW"
- },
- {
- "key": "socket:chademo:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:chademo~.+&socket:chademo!=0)",
- "value": "50 kW"
- },
- {
- "key": "socket:type1_cable:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:type1_cable~.+&socket:type1_cable!=0)",
- "value": "7 kW"
- },
- {
- "key": "socket:type1:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:type1~.+&socket:type1!=0)",
- "value": "7.2 kW"
- },
- {
- "key": "socket:type1_combo:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:type1_combo~.+&socket:type1_combo!=0)",
- "value": "350 kW"
- },
- {
- "key": "socket:tesla_supercharger:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:tesla_supercharger~.+&socket:tesla_supercharger!=0)",
- "value": "250 kW"
- },
- {
- "key": "socket:type2:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:type2~.+&socket:type2!=0)",
- "value": "22 kW"
- },
- {
- "key": "socket:type2_combo:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:type2_combo~.+&socket:type2_combo!=0)",
- "value": "50 kW"
- },
- {
- "key": "socket:type2_cable:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:type2_cable~.+&socket:type2_cable!=0)",
- "value": "22 kW"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists') (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 Type 2 CSS) outputs 500 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (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 Type 2 CSS) outputs 920 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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 Type 2 CSS) outputs at most 50 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:tesla_supercharger_ccs~.+&socket:tesla_supercharger_ccs!=0)",
- "value": "50 kW"
- },
- {
- "key": "socket:tesla_destination:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:tesla_destination~.+&socket:tesla_destination!=0)",
- "value": "250 kW"
- },
- {
- "key": "socket:tesla_destination:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:tesla_destination~.+&socket:tesla_destination!=0)",
- "value": "22 kW"
- },
- {
- "key": "socket:USB-A:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:USB-A~.+&socket:USB-A!=0)",
- "value": "10W"
- },
- {
- "key": "socket:bosch_3pin:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:bosch_3pin~.+&socket:bosch_3pin!=0)"
- },
- {
- "key": "socket:bosch_5pin:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin:voltage' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if socket:bosch_5pin~.+&socket:bosch_5pin!=0)"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Charging stations' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "24/7"
- },
- {
- "key": "fee",
- "description": "Layer 'Charging stations' shows fee=no&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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "no"
- },
- {
- "key": "fee:conditional",
- "description": "Layer 'Charging stations' shows fee=no&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.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key fee:conditional.",
- "value": ""
- },
- {
- "key": "charge",
- "description": "Layer 'Charging stations' shows fee=no&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.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key charge.",
- "value": ""
- },
- {
- "key": "authentication:none",
- "description": "Layer 'Charging stations' shows fee=no&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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "yes"
- },
- {
- "key": "fee",
- "description": "Layer 'Charging stations' shows fee=no&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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "no"
- },
- {
- "key": "fee:conditional",
- "description": "Layer 'Charging stations' shows fee=no&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.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key fee:conditional.",
- "value": ""
- },
- {
- "key": "charge",
- "description": "Layer 'Charging stations' shows fee=no&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.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key charge.",
- "value": ""
- },
- {
- "key": "authentication:none",
- "description": "Layer 'Charging stations' shows fee=no&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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "no"
- },
- {
- "key": "fee",
- "description": "Layer 'Charging stations' shows fee=no with a fixed text, namely 'Free to use' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "no"
- },
- {
- "key": "fee",
- "description": "Layer 'Charging stations' shows fee=yes&fee:conditional=no @ customers with a fixed text, namely 'Paid use, but free for customers of the hotel/pub/hospital/… who operates the charging station' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "no @ customers"
- },
- {
- "key": "fee",
- "description": "Layer 'Charging stations' shows fee=yes with a fixed text, namely 'Paid use' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "yes"
- },
- {
- "key": "fee:conditional",
- "description": "Layer 'Charging stations' shows fee=yes with a fixed text, namely 'Paid use' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') 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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if fee=yes)"
- },
- {
- "key": "payment:cash",
- "description": "Layer 'Charging stations' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if fee=yes|charge~.+)",
- "value": "yes"
- },
- {
- "key": "payment:cards",
- "description": "Layer 'Charging stations' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if fee=yes|charge~.+)",
- "value": "yes"
- },
- {
- "key": "payment:membership_card",
- "description": "Layer 'Charging stations' shows payment:membership_card=yes with a fixed text, namely 'Payment is done using a membership card' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if fee=no|)",
- "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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if fee=no|)",
- "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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if fee=no|)",
- "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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if fee=no|)",
- "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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if fee=no|)",
- "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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if fee=no|)",
- "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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if fee=no|)",
- "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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if fee=no|)",
- "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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists') (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.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "Tesla"
- },
- {
- "key": "operator",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "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.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key network.",
- "value": ""
- },
- {
- "key": "phone",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "email",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "website",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "level",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')"
- },
- {
- "key": "location",
- "description": "Layer 'Charging stations' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Charging stations' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key level.",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "-1"
- },
- {
- "key": "ref",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'ref' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if network~.+)"
- },
- {
- "key": "planned:amenity",
- "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key planned:amenity.",
- "value": ""
- },
- {
- "key": "construction:amenity",
- "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key construction:amenity.",
- "value": ""
- },
- {
- "key": "disused:amenity",
- "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key disused:amenity.",
- "value": ""
- },
- {
- "key": "operational_status",
- "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key operational_status.",
- "value": ""
- },
- {
- "key": "amenity",
- "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "charging_station"
- },
- {
- "key": "planned:amenity",
- "description": "Layer 'Charging stations' shows 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.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key planned:amenity.",
- "value": ""
- },
- {
- "key": "construction:amenity",
- "description": "Layer 'Charging stations' shows 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.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key construction:amenity.",
- "value": ""
- },
- {
- "key": "disused:amenity",
- "description": "Layer 'Charging stations' shows 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.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key disused:amenity.",
- "value": ""
- },
- {
- "key": "operational_status",
- "description": "Layer 'Charging stations' shows 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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "broken"
- },
- {
- "key": "amenity",
- "description": "Layer 'Charging stations' shows 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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "charging_station"
- },
- {
- "key": "planned:amenity",
- "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "charging_station"
- },
- {
- "key": "construction:amenity",
- "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key construction:amenity.",
- "value": ""
- },
- {
- "key": "disused:amenity",
- "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key disused:amenity.",
- "value": ""
- },
- {
- "key": "operational_status",
- "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key operational_status.",
- "value": ""
- },
- {
- "key": "amenity",
- "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key amenity.",
- "value": ""
- },
- {
- "key": "planned:amenity",
- "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key planned:amenity.",
- "value": ""
- },
- {
- "key": "construction:amenity",
- "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "charging_station"
- },
- {
- "key": "disused:amenity",
- "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key disused:amenity.",
- "value": ""
- },
- {
- "key": "operational_status",
- "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key operational_status.",
- "value": ""
- },
- {
- "key": "amenity",
- "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key amenity.",
- "value": ""
- },
- {
- "key": "planned:amenity",
- "description": "Layer 'Charging stations' shows disused:amenity=charging_station 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.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key planned:amenity.",
- "value": ""
- },
- {
- "key": "construction:amenity",
- "description": "Layer 'Charging stations' shows disused:amenity=charging_station 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.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key construction:amenity.",
- "value": ""
- },
- {
- "key": "disused:amenity",
- "description": "Layer 'Charging stations' shows disused:amenity=charging_station 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.osm.be theme 'Cyclofix - an open map for cyclists')",
- "value": "charging_station"
- },
- {
- "key": "operational_status",
- "description": "Layer 'Charging stations' shows disused:amenity=charging_station 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.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key operational_status.",
- "value": ""
- },
- {
- "key": "amenity",
- "description": "Layer 'Charging stations' shows disused:amenity=charging_station 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.osm.be theme 'Cyclofix - an open map for cyclists') 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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if motor_vehicle=yes|hgv=yes|bus=yes|bicycle=no|)",
- "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.osm.be theme 'Cyclofix - an open map for cyclists') (This is only shown if motor_vehicle=yes|hgv=yes|bus=yes|bicycle=no|)",
- "value": "yes"
- }
- ]
-}
\ No newline at end of file
diff --git a/Docs/TagInfo/mapcomplete_drinking_water.json b/Docs/TagInfo/mapcomplete_drinking_water.json
deleted file mode 100644
index 501bcee64..000000000
--- a/Docs/TagInfo/mapcomplete_drinking_water.json
+++ /dev/null
@@ -1,73 +0,0 @@
-{
- "data_format": 1,
- "project": {
- "name": "MapComplete Drinking Water",
- "description": "On this map, publicly accessible drinking water spots are shown and can be easily added",
- "project_url": "https://mapcomplete.osm.be/drinking_water",
- "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/",
- "icon_url": "https://mapcomplete.osm.be/assets/themes/drinking_water/logo.svg",
- "contact_name": "Pieter Vander Vennet",
- "contact_email": "pietervdvn@posteo.net"
- },
- "tags": [
- {
- "key": "amenity",
- "description": "The MapComplete theme Drinking Water has a layer Drinking water showing features with this tag",
- "value": "drinking_water"
- },
- {
- "key": "drinking_water",
- "description": "The MapComplete theme Drinking Water has a layer Drinking water showing features with this tag",
- "value": "yes"
- },
- {
- "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.osm.be theme 'Drinking Water') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Drinking water allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Drinking water allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Drinking water allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Drinking water allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Drinking Water')"
- },
- {
- "key": "operational_status",
- "description": "Layer 'Drinking water' shows with a fixed text, namely 'This drinking water works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Drinking Water') Picking this answer will delete the key operational_status.",
- "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.osm.be theme 'Drinking Water')",
- "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.osm.be theme 'Drinking Water')",
- "value": "closed"
- },
- {
- "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.osm.be theme 'Drinking Water')",
- "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.osm.be theme 'Drinking Water')",
- "value": "no"
- }
- ]
-}
\ No newline at end of file
diff --git a/Docs/TagInfo/mapcomplete_education.json b/Docs/TagInfo/mapcomplete_education.json
deleted file mode 100644
index 403458e4d..000000000
--- a/Docs/TagInfo/mapcomplete_education.json
+++ /dev/null
@@ -1,324 +0,0 @@
-{
- "data_format": 1,
- "project": {
- "name": "MapComplete Education",
- "description": "On this map, you'll find information about all types of schools and education and can easily add more information",
- "project_url": "https://mapcomplete.osm.be/education",
- "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/",
- "icon_url": "https://mapcomplete.osm.be/assets/layers/school/college.svg",
- "contact_name": "Pieter Vander Vennet",
- "contact_email": "pietervdvn@posteo.net"
- },
- "tags": [
- {
- "key": "amenity",
- "description": "The MapComplete theme Education has a layer Colleges and universities showing features with this tag",
- "value": "college"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Education has a layer Colleges and universities showing features with this tag",
- "value": "university"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Education has a layer Colleges and universities showing features with this tag",
- "value": "school"
- },
- {
- "key": "isced:2011:level",
- "description": "The MapComplete theme Education has a layer Colleges and universities showing features with this tag"
- },
- {
- "key": "isced:2011:level",
- "description": "The MapComplete theme Education has a layer Colleges and universities showing features with this tag"
- },
- {
- "key": "id",
- "description": "Layer 'Colleges and universities' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Education') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "amenity",
- "description": "Layer 'Colleges and universities' shows amenity=college with a fixed text, namely 'This is an institution of post-secondary, non-tertiary education. One has to have completed secondary education to enroll here, but no bachelor (or higher) degrees are awarded here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')",
- "value": "college"
- },
- {
- "key": "amenity",
- "description": "Layer 'Colleges and universities' shows amenity=university with a fixed text, namely 'This is a university, an institution of tertiary education where bachelor degrees or higher are awarded.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')",
- "value": "university"
- },
- {
- "key": "isced:2011:level",
- "description": "Layer 'Colleges and universities' shows isced:2011:level=bachelor with a fixed text, namely 'Bachelor degrees are awarded here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education') (This is only shown if amenity=university)",
- "value": "bachelor"
- },
- {
- "key": "isced:2011:level",
- "description": "Layer 'Colleges and universities' shows isced:2011:level=master with a fixed text, namely 'Master degrees are awarded here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education') (This is only shown if amenity=university)",
- "value": "master"
- },
- {
- "key": "isced:2011:level",
- "description": "Layer 'Colleges and universities' shows isced:2011:level=doctorate with a fixed text, namely 'Doctorate degrees are awarded here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education') (This is only shown if amenity=university)",
- "value": "doctorate"
- },
- {
- "key": "capacity",
- "description": "Layer 'Colleges and universities' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be theme 'Education')"
- },
- {
- "key": "school:gender",
- "description": "Layer 'Colleges and universities' shows school:gender=mixed with a fixed text, namely 'Both boys and girls can enroll here and have classes together' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')",
- "value": "mixed"
- },
- {
- "key": "school:gender",
- "description": "Layer 'Colleges and universities' shows school:gender=separated with a fixed text, namely 'Both boys and girls can enroll here but they are separated (e.g. they have lessons in different classrooms or at different times)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')",
- "value": "separated"
- },
- {
- "key": "school:gender",
- "description": "Layer 'Colleges and universities' shows school:gender=male with a fixed text, namely 'This is a boys only-school' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')",
- "value": "male"
- },
- {
- "key": "school:gender",
- "description": "Layer 'Colleges and universities' shows school:gender=female with a fixed text, namely 'This is a girls-only school' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Education')",
- "value": "female"
- },
- {
- "key": "website",
- "description": "Layer 'Colleges and universities' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Education')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Colleges and universities' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Education')"
- },
- {
- "key": "email",
- "description": "Layer 'Colleges and universities' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Education')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Colleges and universities' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Education')"
- },
- {
- "key": "phone",
- "description": "Layer 'Colleges and universities' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Education')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Colleges and universities' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Education')"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Education 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.osm.be theme 'Education') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "name",
- "description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Education')"
- },
- {
- "key": "capacity",
- "description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be theme 'Education')"
- },
- {
- "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.osm.be theme 'Education') (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.
' (in the MapComplete.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (This is only shown if highway=cycleway|highway=path)",
- "value": "kerb"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Kerbs and crossings 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.osm.be theme 'Kerbs and crossings') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Crossings allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Crossings allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Crossings allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Crossings allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Kerbs and crossings') (This is only shown if highway=crossing)",
- "value": "uncontrolled"
- },
- {
- "key": "crossing",
- "description": "Layer 'Crossings' shows crossing=traffic_signals with a fixed text, namely 'Crossing with traffic signals' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings') (This is only shown if highway=crossing)",
- "value": "traffic_signals"
- },
- {
- "key": "crossing",
- "description": "Layer 'Crossings' shows crossing=zebra with a fixed text, namely 'Zebra crossing' (in the MapComplete.osm.be theme 'Kerbs and crossings') (This is only shown if highway=crossing)",
- "value": "zebra"
- },
- {
- "key": "crossing",
- "description": "Layer 'Crossings' shows crossing=unmarked with a fixed text, namely 'Crossing without crossing markings' and allows to pick this as a default answer (in the MapComplete.osm.be 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.osm.be theme 'Kerbs and crossings') (This is only shown if crossing=uncontrolled)",
- "value": "zebra"
- },
- {
- "key": "crossing_ref",
- "description": "Layer 'Crossings' shows with a fixed text, namely 'This is not a zebra crossing' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings') 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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (This is only shown if highway=traffic_signals)",
- "value": "yes"
- },
- {
- "key": "red_turn:right:bicycle",
- "description": "Layer 'Crossings' shows red_turn:right:bicycle=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.osm.be theme 'Kerbs and crossings') (This is only shown if highway=traffic_signals)",
- "value": "yes"
- },
- {
- "key": "red_turn:right:bicycle",
- "description": "Layer 'Crossings' shows red_turn:right:bicycle=no with a fixed text, namely 'A cyclist can not turn right if the light is red' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (This is only shown if highway=traffic_signals)",
- "value": "yes"
- },
- {
- "key": "red_turn:straight:bicycle",
- "description": "Layer 'Crossings' shows red_turn:straight:bicycle=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.osm.be theme 'Kerbs and crossings') (This is only shown if highway=traffic_signals)",
- "value": "yes"
- },
- {
- "key": "red_turn:straight:bicycle",
- "description": "Layer 'Crossings' shows red_turn:straight:bicycle=no with a fixed text, namely 'A cyclist can not go straight on if the light is red' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Kerbs and crossings') (This is only shown if highway=traffic_signals)",
- "value": "no"
- },
- {
- "key": "barrier",
- "description": "The MapComplete theme Kerbs and crossings has a layer Kerbs showing features with this tag",
- "value": "kerb"
- },
- {
- "key": "id",
- "description": "Layer 'Kerbs' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Kerbs and crossings') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Kerbs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Kerbs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Kerbs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Kerbs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings') (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.osm.be theme 'Kerbs and crossings')"
- },
- {
- "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.osm.be theme 'Kerbs and crossings')",
- "value": "0"
- }
- ]
-}
\ No newline at end of file
diff --git a/Docs/TagInfo/mapcomplete_maps.json b/Docs/TagInfo/mapcomplete_maps.json
deleted file mode 100644
index 6a5d886bc..000000000
--- a/Docs/TagInfo/mapcomplete_maps.json
+++ /dev/null
@@ -1,83 +0,0 @@
-{
- "data_format": 1,
- "project": {
- "name": "MapComplete A map of maps",
- "description": "This theme shows all (touristic) maps that OpenStreetMap knows of",
- "project_url": "https://mapcomplete.osm.be/maps",
- "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/",
- "icon_url": "https://mapcomplete.osm.be/assets/themes/maps/logo.svg",
- "contact_name": "Pieter Vander Vennet",
- "contact_email": "pietervdvn@posteo.net"
- },
- "tags": [
- {
- "key": "tourism",
- "description": "The MapComplete theme A map of maps has a layer Maps showing features with this tag",
- "value": "map"
- },
- {
- "key": "information",
- "description": "The MapComplete theme A map of maps 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.osm.be theme 'A map of maps') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Maps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Maps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Maps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Maps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "map_source",
- "description": "Layer 'Maps' shows and asks freeform values for key 'map_source' (in the MapComplete.osm.be theme 'A map of maps')"
- },
- {
- "key": "map_source",
- "description": "Layer 'Maps' shows map_source=OpenStreetMap with a fixed text, namely 'This map is based on OpenStreetMap' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'A map of maps')",
- "value": "OpenStreetMap"
- },
- {
- "key": "not:map_source",
- "description": "Layer 'Maps' shows map_source=OpenStreetMap with a fixed text, namely 'This map is based on OpenStreetMap' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'A map of maps') 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.osm.be theme 'A map of maps') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$|map_source=osm|map_source=OSM)",
- "value": "yes"
- },
- {
- "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.osm.be theme 'A map of maps') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$|map_source=osm|map_source=OSM)",
- "value": "incomplete"
- },
- {
- "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.osm.be theme 'A map of maps') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$|map_source=osm|map_source=OSM)",
- "value": "sticker"
- },
- {
- "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.osm.be theme 'A map of maps') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$|map_source=osm|map_source=OSM)",
- "value": "none"
- },
- {
- "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.osm.be 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"
- }
- ]
-}
\ No newline at end of file
diff --git a/Docs/TagInfo/mapcomplete_maxspeed.json b/Docs/TagInfo/mapcomplete_maxspeed.json
deleted file mode 100644
index b2b040511..000000000
--- a/Docs/TagInfo/mapcomplete_maxspeed.json
+++ /dev/null
@@ -1,132 +0,0 @@
-{
- "data_format": 1,
- "project": {
- "name": "MapComplete Maxspeed",
- "description": "This map shows the legally allowed maximum speed on every road.",
- "project_url": "https://mapcomplete.osm.be/maxspeed",
- "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/",
- "icon_url": "https://mapcomplete.osm.be/assets/themes/maxspeed/maxspeed_logo.svg",
- "contact_name": "Pieter Vander Vennet",
- "contact_email": "pietervdvn@posteo.net"
- },
- "tags": [
- {
- "key": "highway",
- "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
- "value": "residential"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
- "value": "living_street"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
- "value": "motorway"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
- "value": "tertiary"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
- "value": "unclassified"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
- "value": "secondary"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
- "value": "primary"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
- "value": "trunk"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
- "value": "motorway"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
- "value": "tertiary_link"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
- "value": "secondary_link"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
- "value": "primary_link"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
- "value": "trunk_link"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
- "value": "motorway_link"
- },
- {
- "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.osm.be theme 'Maxspeed') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "maxspeed",
- "description": "Layer 'Maxspeed' shows and asks freeform values for key 'maxspeed' (in the MapComplete.osm.be theme 'Maxspeed')"
- },
- {
- "key": "highway",
- "description": "Layer 'Maxspeed' shows highway=living_street&_country!=be with a fixed text, namely 'This is a living street, which has a maxspeed of 20km/h' (in the MapComplete.osm.be theme 'Maxspeed')",
- "value": "living_street"
- },
- {
- "key": "highway",
- "description": "Layer 'Maxspeed' shows highway=living_street 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.osm.be theme 'Maxspeed')",
- "value": "living_street"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Maxspeed has a layer Speed Camera showing features with this tag",
- "value": "speed_camera"
- },
- {
- "key": "id",
- "description": "Layer 'Speed Camera' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Maxspeed') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "maxspeed",
- "description": "Layer 'Speed Camera' shows and asks freeform values for key 'maxspeed' (in the MapComplete.osm.be theme 'Maxspeed')"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme Maxspeed has a layer Speed Display showing features with this tag",
- "value": "speed_display"
- },
- {
- "key": "id",
- "description": "Layer 'Speed Display' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Maxspeed') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "maxspeed",
- "description": "Layer 'Speed Display' shows and asks freeform values for key 'maxspeed' (in the MapComplete.osm.be theme 'Maxspeed')"
- },
- {
- "key": "inscription",
- "description": "Layer 'Speed Display' shows and asks freeform values for key 'inscription' (in the MapComplete.osm.be theme 'Maxspeed')"
- }
- ]
-}
\ No newline at end of file
diff --git a/Docs/TagInfo/mapcomplete_nature.json b/Docs/TagInfo/mapcomplete_nature.json
deleted file mode 100644
index da1401782..000000000
--- a/Docs/TagInfo/mapcomplete_nature.json
+++ /dev/null
@@ -1,1038 +0,0 @@
-{
- "data_format": 1,
- "project": {
- "name": "MapComplete Into nature",
- "description": "A map for nature lovers, with interesting POI's",
- "project_url": "https://mapcomplete.osm.be/nature",
- "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/",
- "icon_url": "https://mapcomplete.osm.be/assets/themes/nature/logo.svg",
- "contact_name": "Pieter Vander Vennet",
- "contact_email": "pietervdvn@posteo.net"
- },
- "tags": [
- {
- "key": "amenity",
- "description": "The MapComplete theme Into nature has a layer Drinking water showing features with this tag",
- "value": "drinking_water"
- },
- {
- "key": "drinking_water",
- "description": "The MapComplete theme Into nature has a layer Drinking water showing features with this tag",
- "value": "yes"
- },
- {
- "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.osm.be theme 'Into nature') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Drinking water allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Drinking water allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Drinking water allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Drinking water allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Into nature')"
- },
- {
- "key": "operational_status",
- "description": "Layer 'Drinking water' shows with a fixed text, namely 'This drinking water works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') Picking this answer will delete the key operational_status.",
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "value": "closed"
- },
- {
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "value": "no"
- },
- {
- "key": "leisure",
- "description": "The MapComplete theme Into nature has a layer Bird watching places showing features with this tag",
- "value": "bird_hide"
- },
- {
- "key": "id",
- "description": "Layer 'Bird watching places' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Into nature') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Bird watching places allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Bird watching places allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Bird watching places allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Bird watching places allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "shelter",
- "description": "Layer 'Bird watching places' shows shelter=no with a fixed text, namely 'Bird blind' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "no"
- },
- {
- "key": "building",
- "description": "Layer 'Bird watching places' shows shelter=no with a fixed text, namely 'Bird blind' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') Picking this answer will delete the key building.",
- "value": ""
- },
- {
- "key": "amenity",
- "description": "Layer 'Bird watching places' shows shelter=no with a fixed text, namely 'Bird blind' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') 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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "value": "no"
- },
- {
- "key": "operator",
- "description": "Layer 'Bird watching places' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Into nature')"
- },
- {
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "value": "Agentschap Natuur en Bos"
- },
- {
- "key": "leisure",
- "description": "The MapComplete theme Into nature has a layer Nature reserve showing features with this tag",
- "value": "nature_reserve"
- },
- {
- "key": "boundary",
- "description": "The MapComplete theme Into nature has a layer Nature reserve showing features with this tag",
- "value": "protected_area"
- },
- {
- "key": "id",
- "description": "Layer 'Nature reserve' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Into nature') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Nature reserve allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Nature reserve allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Nature reserve allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Nature reserve allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Into nature')"
- },
- {
- "key": "access",
- "description": "Layer 'Nature reserve' shows access=yes with a fixed text, namely 'Publicly accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "yes"
- },
- {
- "key": "fee",
- "description": "Layer 'Nature reserve' shows access=yes with a fixed text, namely 'Publicly accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') Picking this answer will delete the key fee.",
- "value": ""
- },
- {
- "key": "access",
- "description": "Layer 'Nature reserve' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "no"
- },
- {
- "key": "fee",
- "description": "Layer 'Nature reserve' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') Picking this answer will delete the key fee.",
- "value": ""
- },
- {
- "key": "access",
- "description": "Layer 'Nature reserve' shows access=private 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.osm.be theme 'Into nature')",
- "value": "private"
- },
- {
- "key": "fee",
- "description": "Layer 'Nature reserve' shows access=private 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.osm.be theme 'Into nature') Picking this answer will delete the key fee.",
- "value": ""
- },
- {
- "key": "access",
- "description": "Layer 'Nature reserve' shows access=permissive with a fixed text, namely 'Accessible despite being a privately owned area' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "permissive"
- },
- {
- "key": "fee",
- "description": "Layer 'Nature reserve' shows access=permissive with a fixed text, namely 'Accessible despite being a privately owned area' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') Picking this answer will delete the key fee.",
- "value": ""
- },
- {
- "key": "access",
- "description": "Layer 'Nature reserve' shows access=guided 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.osm.be theme 'Into nature')",
- "value": "guided"
- },
- {
- "key": "fee",
- "description": "Layer 'Nature reserve' shows access=guided 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.osm.be theme 'Into nature') 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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "value": "yes"
- },
- {
- "key": "operator",
- "description": "Layer 'Nature reserve' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Into nature')"
- },
- {
- "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.osm.be theme 'Into nature')",
- "value": "Natuurpunt"
- },
- {
- "key": "operator",
- "description": "Layer 'Nature reserve' shows operator~^((n|N)atuurpunt.*)$ with a fixed text, namely 'Operated by {operator}' (in the MapComplete.osm.be theme 'Into nature')"
- },
- {
- "key": "operator",
- "description": "Layer 'Nature reserve' shows operator=Agentschap Natuur en Bos with a fixed text, namely 'Operated by Agentschap Natuur en Bos' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "Agentschap Natuur en Bos"
- },
- {
- "key": "name",
- "description": "Layer 'Nature reserve' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Into nature')"
- },
- {
- "key": "noname",
- "description": "Layer 'Nature reserve' shows noname=yes with a fixed text, namely 'This area doesn't have a name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "yes"
- },
- {
- "key": "name",
- "description": "Layer 'Nature reserve' shows noname=yes with a fixed text, namely 'This area doesn't have a name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') Picking this answer will delete the key name.",
- "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.osm.be theme 'Into nature') (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.osm.be theme 'Into nature') (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.osm.be theme 'Into nature') (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.osm.be theme 'Into nature')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Nature reserve' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Into nature')"
- },
- {
- "key": "curator",
- "description": "Layer 'Nature reserve' shows and asks freeform values for key 'curator' (in the MapComplete.osm.be theme 'Into nature')"
- },
- {
- "key": "email",
- "description": "Layer 'Nature reserve' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Into nature')"
- },
- {
- "key": "phone",
- "description": "Layer 'Nature reserve' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Into nature')"
- },
- {
- "key": "description",
- "description": "Layer 'Nature reserve' shows values with key 'description' (in the MapComplete.osm.be theme 'Into nature')"
- },
- {
- "key": "description:0",
- "description": "Layer 'Nature reserve' shows and asks freeform values for key 'description:0' (in the MapComplete.osm.be theme 'Into nature')"
- },
- {
- "key": "wikidata",
- "description": "Layer 'Nature reserve' shows and asks freeform values for key 'wikidata' (in the MapComplete.osm.be theme 'Into nature')"
- },
- {
- "key": "wikipedia",
- "description": "Layer 'Nature reserve' shows wikipedia~.+ with a fixed text, namely '{wikipedia():max-height:25rem}' (in the MapComplete.osm.be theme 'Into nature')"
- },
- {
- "key": "wikidata",
- "description": "Layer 'Nature reserve' shows with a fixed text, namely 'No Wikipedia page has been linked yet' (in the MapComplete.osm.be theme 'Into nature') Picking this answer will delete the key wikidata.",
- "value": ""
- },
- {
- "key": "tourism",
- "description": "The MapComplete theme Into nature has a layer Maps showing features with this tag",
- "value": "map"
- },
- {
- "key": "information",
- "description": "The MapComplete theme Into nature has a layer Maps showing features with this tag",
- "value": "map"
- },
- {
- "key": "id",
- "description": "Layer 'Maps' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Into nature') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Maps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Maps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Maps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Maps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "map_source",
- "description": "Layer 'Maps' shows and asks freeform values for key 'map_source' (in the MapComplete.osm.be theme 'Into nature')"
- },
- {
- "key": "map_source",
- "description": "Layer 'Maps' shows map_source=OpenStreetMap with a fixed text, namely 'This map is based on OpenStreetMap' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "OpenStreetMap"
- },
- {
- "key": "not:map_source",
- "description": "Layer 'Maps' shows map_source=OpenStreetMap with a fixed text, namely 'This map is based on OpenStreetMap' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') 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.osm.be theme 'Into nature') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$|map_source=osm|map_source=OSM)",
- "value": "yes"
- },
- {
- "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.osm.be theme 'Into nature') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$|map_source=osm|map_source=OSM)",
- "value": "incomplete"
- },
- {
- "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.osm.be theme 'Into nature') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$|map_source=osm|map_source=OSM)",
- "value": "sticker"
- },
- {
- "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.osm.be theme 'Into nature') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$|map_source=osm|map_source=OSM)",
- "value": "none"
- },
- {
- "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.osm.be theme 'Into nature') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$|map_source=osm|map_source=OSM)",
- "value": "no"
- },
- {
- "key": "information",
- "description": "The MapComplete theme Into nature has a layer Information boards showing features with this tag",
- "value": "board"
- },
- {
- "key": "id",
- "description": "Layer 'Information boards' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Into nature') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Information boards allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Information boards allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Information boards allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Information boards allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Into nature has a layer Benches showing features with this tag",
- "value": "bench"
- },
- {
- "key": "id",
- "description": "Layer 'Benches' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Into nature') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Benches allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Benches allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Benches allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Benches allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "value": "yes"
- },
- {
- "key": "backrest",
- "description": "Layer 'Benches' shows backrest=yes with a fixed text, namely 'Does have a backrest' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "yes"
- },
- {
- "key": "backrest",
- "description": "Layer 'Benches' shows backrest=no with a fixed text, namely 'Does not have a backrest' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "no"
- },
- {
- "key": "seats",
- "description": "Layer 'Benches' shows and asks freeform values for key 'seats' (in the MapComplete.osm.be theme 'Into nature')"
- },
- {
- "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.osm.be theme 'Into nature')",
- "value": "no"
- },
- {
- "key": "material",
- "description": "Layer 'Benches' shows and asks freeform values for key 'material' (in the MapComplete.osm.be theme 'Into nature')"
- },
- {
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "value": "steel"
- },
- {
- "key": "direction",
- "description": "Layer 'Benches' shows and asks freeform values for key 'direction' (in the MapComplete.osm.be theme 'Into nature') (This is only shown if two_sided!=yes)"
- },
- {
- "key": "colour",
- "description": "Layer 'Benches' shows and asks freeform values for key 'colour' (in the MapComplete.osm.be theme 'Into nature')"
- },
- {
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "value": "yellow"
- },
- {
- "key": "survey:date",
- "description": "Layer 'Benches' shows and asks freeform values for key 'survey:date' (in the MapComplete.osm.be theme 'Into nature')"
- },
- {
- "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.osm.be theme 'Into nature') 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.osm.be theme 'Into nature')"
- },
- {
- "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.osm.be theme 'Into nature')",
- "value": "yes"
- },
- {
- "key": "inscription",
- "description": "Layer 'Benches' shows with a fixed text, namely 'This bench does (probably) not have an inscription' (in the MapComplete.osm.be theme 'Into nature') 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.osm.be theme 'Into nature')",
- "value": "artwork"
- },
- {
- "key": "tourism",
- "description": "Layer 'Benches' shows 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.osm.be theme 'Into nature') 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.osm.be theme 'Into nature') (This is only shown if historic=memorial|inscription~.+|memorial=bench|tourism=artwork)",
- "value": "memorial"
- },
- {
- "key": "historic",
- "description": "Layer 'Benches' shows 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.osm.be theme 'Into nature') 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 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.osm.be theme 'Into nature') (This is only shown if historic=memorial|inscription~.+|memorial=bench|tourism=artwork)",
- "value": "memorial"
- },
- {
- "key": "artwork_type",
- "description": "Layer 'Benches' shows and asks freeform values for key 'artwork_type' (in the MapComplete.osm.be theme 'Into nature') (This is only shown if tourism=artwork)"
- },
- {
- "key": "artwork_type",
- "description": "Layer 'Benches' shows artwork_type=architecture with a fixed text, namely 'Architecture' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') (This is only shown if tourism=artwork)",
- "value": "architecture"
- },
- {
- "key": "artwork_type",
- "description": "Layer 'Benches' shows artwork_type=mural with a fixed text, namely 'Mural' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') (This is only shown if tourism=artwork)",
- "value": "mural"
- },
- {
- "key": "artwork_type",
- "description": "Layer 'Benches' shows artwork_type=painting with a fixed text, namely 'Painting' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') (This is only shown if tourism=artwork)",
- "value": "painting"
- },
- {
- "key": "artwork_type",
- "description": "Layer 'Benches' shows artwork_type=sculpture with a fixed text, namely 'Sculpture' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') (This is only shown if tourism=artwork)",
- "value": "sculpture"
- },
- {
- "key": "artwork_type",
- "description": "Layer 'Benches' shows artwork_type=statue with a fixed text, namely 'Statue' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') (This is only shown if tourism=artwork)",
- "value": "statue"
- },
- {
- "key": "artwork_type",
- "description": "Layer 'Benches' shows artwork_type=bust with a fixed text, namely 'Bust' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') (This is only shown if tourism=artwork)",
- "value": "bust"
- },
- {
- "key": "artwork_type",
- "description": "Layer 'Benches' shows artwork_type=stone with a fixed text, namely 'Stone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') (This is only shown if tourism=artwork)",
- "value": "stone"
- },
- {
- "key": "artwork_type",
- "description": "Layer 'Benches' shows artwork_type=installation with a fixed text, namely 'Installation' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') (This is only shown if tourism=artwork)",
- "value": "installation"
- },
- {
- "key": "artwork_type",
- "description": "Layer 'Benches' shows artwork_type=graffiti with a fixed text, namely 'Graffiti' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') (This is only shown if tourism=artwork)",
- "value": "graffiti"
- },
- {
- "key": "artwork_type",
- "description": "Layer 'Benches' shows artwork_type=relief with a fixed text, namely 'Relief' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') (This is only shown if tourism=artwork)",
- "value": "relief"
- },
- {
- "key": "artwork_type",
- "description": "Layer 'Benches' shows artwork_type=azulejo with a fixed text, namely 'Azulejo (Spanish decorative tilework)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') (This is only shown if tourism=artwork)",
- "value": "azulejo"
- },
- {
- "key": "artwork_type",
- "description": "Layer 'Benches' shows artwork_type=tilework with a fixed text, namely 'Tilework' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') (This is only shown if tourism=artwork)",
- "value": "tilework"
- },
- {
- "key": "artwork_type",
- "description": "Layer 'Benches' shows artwork_type=woodcarving with a fixed text, namely 'Woodcarving' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') (This is only shown if tourism=artwork)",
- "value": "woodcarving"
- },
- {
- "key": "artist:wikidata",
- "description": "Layer 'Benches' shows and asks freeform values for key 'artist:wikidata' (in the MapComplete.osm.be theme 'Into nature') (This is only shown if tourism=artwork)"
- },
- {
- "key": "artist_name",
- "description": "Layer 'Benches' shows and asks freeform values for key 'artist_name' (in the MapComplete.osm.be theme 'Into nature') (This is only shown if tourism=artwork)"
- },
- {
- "key": "website",
- "description": "Layer 'Benches' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Into nature') (This is only shown if tourism=artwork)"
- },
- {
- "key": "subject:wikidata",
- "description": "Layer 'Benches' shows and asks freeform values for key 'subject:wikidata' (in the MapComplete.osm.be theme 'Into nature') (This is only shown if tourism=artwork)"
- },
- {
- "key": "leisure",
- "description": "The MapComplete theme Into nature has a layer Picnic tables showing features with this tag",
- "value": "picnic_table"
- },
- {
- "key": "id",
- "description": "Layer 'Picnic tables' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Into nature') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Picnic tables allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Picnic tables allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Picnic tables allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Picnic tables allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "level",
- "description": "Layer 'Picnic tables' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Into nature')"
- },
- {
- "key": "location",
- "description": "Layer 'Picnic tables' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Picnic tables' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Into nature') Picking this answer will delete the key level.",
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "value": "-1"
- },
- {
- "key": "material",
- "description": "Layer 'Picnic tables' shows and asks freeform values for key 'material' (in the MapComplete.osm.be theme 'Into nature')"
- },
- {
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "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.osm.be theme 'Into nature')",
- "value": "plastic"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Into nature has a layer Toilets showing features with this tag",
- "value": "toilets"
- },
- {
- "key": "id",
- "description": "Layer 'Toilets' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Into nature') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Toilets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Toilets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Toilets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Toilets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "level",
- "description": "Layer 'Toilets' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Into nature')"
- },
- {
- "key": "location",
- "description": "Layer 'Toilets' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Into nature')",
- "value": "underground"
- },
- {
- "key": "level",
- "description": "Layer 'Toilets' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Toilets' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Into nature') Picking this answer will delete the key level.",
- "value": ""
- },
- {
- "key": "level",
- "description": "Layer 'Toilets' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "1"
- },
- {
- "key": "level",
- "description": "Layer 'Toilets' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "-1"
- },
- {
- "key": "access",
- "description": "Layer 'Toilets' shows and asks freeform values for key 'access' (in the MapComplete.osm.be theme 'Into nature')"
- },
- {
- "key": "access",
- "description": "Layer 'Toilets' shows access=yes with a fixed text, namely 'Public access' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "yes"
- },
- {
- "key": "access",
- "description": "Layer 'Toilets' shows access=customers with a fixed text, namely 'Only access to customers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "customers"
- },
- {
- "key": "access",
- "description": "Layer 'Toilets' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "no"
- },
- {
- "key": "access",
- "description": "Layer 'Toilets' shows access=key with a fixed text, namely 'Accessible, but one has to ask a key to enter' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "key"
- },
- {
- "key": "access",
- "description": "Layer 'Toilets' shows access=public with a fixed text, namely 'Public access' (in the MapComplete.osm.be theme 'Into nature')",
- "value": "public"
- },
- {
- "key": "fee",
- "description": "Layer 'Toilets' shows fee=yes with a fixed text, namely 'These are paid toilets' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') (This is only shown if access!=no)",
- "value": "yes"
- },
- {
- "key": "fee",
- "description": "Layer 'Toilets' shows fee=no with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') (This is only shown if access!=no)",
- "value": "no"
- },
- {
- "key": "charge",
- "description": "Layer 'Toilets' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Into nature') (This is only shown if fee=yes)"
- },
- {
- "key": "payment:cash",
- "description": "Layer 'Toilets' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' (in the MapComplete.osm.be theme 'Into nature') (This is only shown if fee=yes)",
- "value": "yes"
- },
- {
- "key": "payment:cards",
- "description": "Layer 'Toilets' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' (in the MapComplete.osm.be theme 'Into nature') (This is only shown if fee=yes)",
- "value": "yes"
- },
- {
- "key": "payment:coins",
- "description": "Layer 'Toilets' shows payment:coins=yes with a fixed text, namely 'Coins are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') (This is only shown if fee=yes)",
- "value": "yes"
- },
- {
- "key": "payment:notes",
- "description": "Layer 'Toilets' shows payment:notes=yes with a fixed text, namely 'Bank notes are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') (This is only shown if fee=yes)",
- "value": "yes"
- },
- {
- "key": "payment:debit_cards",
- "description": "Layer 'Toilets' shows payment:debit_cards=yes with a fixed text, namely 'Debit cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') (This is only shown if fee=yes)",
- "value": "yes"
- },
- {
- "key": "payment:credit_cards",
- "description": "Layer 'Toilets' shows payment:credit_cards=yes with a fixed text, namely 'Credit cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') (This is only shown if fee=yes)",
- "value": "yes"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Toilets' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Into nature') (This is only shown if access!=no)"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Toilets' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') (This is only shown if access!=no)",
- "value": "24/7"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Toilets' shows wheelchair=yes with a fixed text, namely 'There is a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "yes"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Toilets' shows wheelchair=no with a fixed text, namely 'No wheelchair access' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "no"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Toilets' shows wheelchair=designated with a fixed text, namely 'There is only a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "designated"
- },
- {
- "key": "door:width",
- "description": "Layer 'Toilets' shows and asks freeform values for key 'door:width' (in the MapComplete.osm.be theme 'Into nature') (This is only shown if wheelchair=yes|wheelchair=designated)"
- },
- {
- "key": "toilets:position",
- "description": "Layer 'Toilets' shows toilets:position=seated with a fixed text, namely 'There are only seated toilets' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "seated"
- },
- {
- "key": "toilets:position",
- "description": "Layer 'Toilets' shows toilets:position=urinal with a fixed text, namely 'There are only urinals here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "urinal"
- },
- {
- "key": "toilets:position",
- "description": "Layer 'Toilets' shows toilets:position=squat with a fixed text, namely 'There are only squat toilets here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "squat"
- },
- {
- "key": "toilets:position",
- "description": "Layer 'Toilets' shows toilets:position=seated;urinal with a fixed text, namely 'Both seated toilets and urinals are available here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "seated;urinal"
- },
- {
- "key": "changing_table",
- "description": "Layer 'Toilets' shows changing_table=yes with a fixed text, namely 'A changing table is available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "yes"
- },
- {
- "key": "changing_table",
- "description": "Layer 'Toilets' shows changing_table=no with a fixed text, namely 'No changing table is available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "no"
- },
- {
- "key": "changing_table:location",
- "description": "Layer 'Toilets' shows and asks freeform values for key 'changing_table:location' (in the MapComplete.osm.be theme 'Into nature') (This is only shown if changing_table=yes)"
- },
- {
- "key": "changing_table:location",
- "description": "Layer 'Toilets' shows changing_table:location=female_toilet with a fixed text, namely 'The changing table is in the toilet for women. ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') (This is only shown if changing_table=yes)",
- "value": "female_toilet"
- },
- {
- "key": "changing_table:location",
- "description": "Layer 'Toilets' shows changing_table:location=male_toilet with a fixed text, namely 'The changing table is in the toilet for men. ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') (This is only shown if changing_table=yes)",
- "value": "male_toilet"
- },
- {
- "key": "changing_table:location",
- "description": "Layer 'Toilets' shows changing_table:location=wheelchair_toilet with a fixed text, namely 'The changing table is in the toilet for wheelchair users. ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') (This is only shown if changing_table=yes)",
- "value": "wheelchair_toilet"
- },
- {
- "key": "changing_table:location",
- "description": "Layer 'Toilets' shows changing_table:location=dedicated_room with a fixed text, namely 'The changing table is in a dedicated room. ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') (This is only shown if changing_table=yes)",
- "value": "dedicated_room"
- },
- {
- "key": "toilets:handwashing",
- "description": "Layer 'Toilets' shows toilets:handwashing=yes with a fixed text, namely 'This toilets have a sink to wash your hands' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "yes"
- },
- {
- "key": "toilets:handwashing",
- "description": "Layer 'Toilets' shows toilets:handwashing=no with a fixed text, namely 'This toilets don't have a sink to wash your hands' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')",
- "value": "no"
- },
- {
- "key": "toilets:paper_supplied",
- "description": "Layer 'Toilets' shows toilets:paper_supplied=yes with a fixed text, namely 'This toilet is equipped with toilet paper' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') (This is only shown if toilets:position!=urinal)",
- "value": "yes"
- },
- {
- "key": "toilets:paper_supplied",
- "description": "Layer 'Toilets' shows toilets:paper_supplied=no with a fixed text, namely 'You have to bring your own toilet paper to this toilet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') (This is only shown if toilets:position!=urinal)",
- "value": "no"
- },
- {
- "key": "description",
- "description": "Layer 'Toilets' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'Into nature')"
- }
- ]
-}
\ No newline at end of file
diff --git a/Docs/TagInfo/mapcomplete_observation_towers.json b/Docs/TagInfo/mapcomplete_observation_towers.json
deleted file mode 100644
index 8f0de3de1..000000000
--- a/Docs/TagInfo/mapcomplete_observation_towers.json
+++ /dev/null
@@ -1,145 +0,0 @@
-{
- "data_format": 1,
- "project": {
- "name": "MapComplete Observation towers",
- "description": "Publicly accessible towers to enjoy the view",
- "project_url": "https://mapcomplete.osm.be/observation_towers",
- "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/",
- "icon_url": "https://mapcomplete.osm.be/assets/layers/observation_tower/Tower_observation.svg",
- "contact_name": "Pieter Vander Vennet",
- "contact_email": "pietervdvn@posteo.net"
- },
- "tags": [
- {
- "key": "tower:type",
- "description": "The MapComplete theme Observation towers 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.osm.be theme 'Observation towers') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Observation towers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Observation towers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Observation towers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Observation towers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "name",
- "description": "Layer 'Observation towers' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Observation towers')"
- },
- {
- "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.osm.be theme 'Observation towers')",
- "value": "yes"
- },
- {
- "key": "height",
- "description": "Layer 'Observation towers' shows and asks freeform values for key 'height' (in the MapComplete.osm.be theme 'Observation towers')"
- },
- {
- "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.osm.be theme 'Observation towers')",
- "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.osm.be theme 'Observation towers')",
- "value": "guided"
- },
- {
- "key": "charge",
- "description": "Layer 'Observation towers' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Observation towers') (This is only shown if access=yes|access=guided)"
- },
- {
- "key": "fee",
- "description": "Layer 'Observation towers' shows fee=no with a fixed text, namely 'Free to visit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Observation towers') (This is only shown if access=yes|access=guided)",
- "value": "no"
- },
- {
- "key": "charge",
- "description": "Layer 'Observation towers' shows fee=no with a fixed text, namely 'Free to visit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Observation towers') 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.osm.be theme 'Observation towers') (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.osm.be theme 'Observation towers') (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.osm.be theme 'Observation towers')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Observation towers' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Observation towers')"
- },
- {
- "key": "step_count",
- "description": "Layer 'Observation towers' shows and asks freeform values for key 'step_count' (in the MapComplete.osm.be theme 'Observation towers') (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.osm.be theme 'Observation towers') (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.osm.be theme 'Observation towers') (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.osm.be theme 'Observation towers')"
- },
- {
- "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.osm.be theme 'Observation towers') (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.osm.be theme 'Observation towers') (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.osm.be theme 'Observation towers') (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.osm.be theme 'Observation towers') (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.osm.be theme 'Observation towers')"
- },
- {
- "key": "wikipedia",
- "description": "Layer 'Observation towers' shows wikipedia~.+ with a fixed text, namely '{wikipedia():max-height:25rem}' (in the MapComplete.osm.be theme 'Observation towers')"
- },
- {
- "key": "wikidata",
- "description": "Layer 'Observation towers' shows with a fixed text, namely 'No Wikipedia page has been linked yet' (in the MapComplete.osm.be theme 'Observation towers') Picking this answer will delete the key wikidata.",
- "value": ""
- }
- ]
-}
\ No newline at end of file
diff --git a/Docs/TagInfo/mapcomplete_onwheels.json b/Docs/TagInfo/mapcomplete_onwheels.json
deleted file mode 100644
index 89339c22b..000000000
--- a/Docs/TagInfo/mapcomplete_onwheels.json
+++ /dev/null
@@ -1,3008 +0,0 @@
-{
- "data_format": 1,
- "project": {
- "name": "MapComplete OnWheels",
- "description": "On this map, publicly weelchair accessible places are shown and can be easily added",
- "project_url": "https://mapcomplete.osm.be/onwheels",
- "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/",
- "icon_url": "https://mapcomplete.osm.be/assets/themes/onwheels/crest.svg",
- "contact_name": "Pieter Vander Vennet",
- "contact_email": "pietervdvn@posteo.net"
- },
- "tags": [
- {
- "key": "amenity",
- "description": "The MapComplete theme OnWheels has a layer Cafés and pubs showing features with this tag",
- "value": "bar"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme OnWheels has a layer Cafés and pubs showing features with this tag",
- "value": "pub"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme OnWheels has a layer Cafés and pubs showing features with this tag",
- "value": "cafe"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme OnWheels has a layer Cafés and pubs showing features with this tag",
- "value": "biergarten"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme OnWheels 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.osm.be theme 'OnWheels') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'OnWheels')"
- },
- {
- "key": "location",
- "description": "Layer 'Cafés and pubs' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Cafés and pubs' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key level.",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "value": "-1"
- },
- {
- "key": "name",
- "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "value": "nightclub"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "website",
- "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Cafés and pubs' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "email",
- "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Cafés and pubs' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "phone",
- "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Cafés and pubs' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "value": "unleashed"
- },
- {
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "value": "wired"
- },
- {
- "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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (This is only shown if internet_access=wlan)",
- "value": "Telekom"
- },
- {
- "key": "entrance",
- "description": "The MapComplete theme OnWheels has a layer Entrance showing features with this tag"
- },
- {
- "key": "indoor",
- "description": "The MapComplete theme OnWheels has a layer Entrance showing features with this tag",
- "value": "door"
- },
- {
- "key": "door",
- "description": "The MapComplete theme OnWheels has a layer Entrance showing features with this tag"
- },
- {
- "key": "id",
- "description": "Layer 'Entrance' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "level",
- "description": "Layer 'Entrance' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "location",
- "description": "Layer 'Entrance' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Entrance' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key level.",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "value": "-1"
- },
- {
- "key": "entrance",
- "description": "Layer 'Entrance' shows entrance=yes with a fixed text, namely 'No specific entrance type is known' (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "yes"
- },
- {
- "key": "entrance",
- "description": "Layer 'Entrance' shows 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.osm.be theme 'OnWheels') Picking this answer will delete the key entrance.",
- "value": ""
- },
- {
- "key": "indoor",
- "description": "Layer 'Entrance' shows 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.osm.be theme 'OnWheels')",
- "value": "door"
- },
- {
- "key": "indoor",
- "description": "Layer 'Entrance' shows entrance=main with a fixed text, namely 'This is the main entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key indoor.",
- "value": ""
- },
- {
- "key": "entrance",
- "description": "Layer 'Entrance' shows entrance=main with a fixed text, namely 'This is the main entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "main"
- },
- {
- "key": "indoor",
- "description": "Layer 'Entrance' shows entrance=secondary with a fixed text, namely 'This is a secondary entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key indoor.",
- "value": ""
- },
- {
- "key": "entrance",
- "description": "Layer 'Entrance' shows entrance=secondary with a fixed text, namely 'This is a secondary entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "secondary"
- },
- {
- "key": "indoor",
- "description": "Layer 'Entrance' shows 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.osm.be theme 'OnWheels') Picking this answer will delete the key indoor.",
- "value": ""
- },
- {
- "key": "entrance",
- "description": "Layer 'Entrance' shows 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.osm.be theme 'OnWheels')",
- "value": "service"
- },
- {
- "key": "indoor",
- "description": "Layer 'Entrance' shows 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.osm.be theme 'OnWheels') Picking this answer will delete the key indoor.",
- "value": ""
- },
- {
- "key": "entrance",
- "description": "Layer 'Entrance' shows 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.osm.be theme 'OnWheels')",
- "value": "exit"
- },
- {
- "key": "indoor",
- "description": "Layer 'Entrance' shows 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.osm.be theme 'OnWheels') Picking this answer will delete the key indoor.",
- "value": ""
- },
- {
- "key": "entrance",
- "description": "Layer 'Entrance' shows 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.osm.be theme 'OnWheels')",
- "value": "entrance"
- },
- {
- "key": "indoor",
- "description": "Layer 'Entrance' shows entrance=emergency with a fixed text, namely 'This is emergency exit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key indoor.",
- "value": ""
- },
- {
- "key": "entrance",
- "description": "Layer 'Entrance' shows entrance=emergency with a fixed text, namely 'This is emergency exit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "emergency"
- },
- {
- "key": "indoor",
- "description": "Layer 'Entrance' shows 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.osm.be theme 'OnWheels') Picking this answer will delete the key indoor.",
- "value": ""
- },
- {
- "key": "entrance",
- "description": "Layer 'Entrance' shows 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.osm.be theme 'OnWheels')",
- "value": "home"
- },
- {
- "key": "door",
- "description": "Layer 'Entrance' shows door=yes with a fixed text, namely 'The door type is not known' (in the MapComplete.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels')"
- },
- {
- "key": "kerb:height",
- "description": "Layer 'Entrance' shows and asks freeform values for key 'kerb:height' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "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.osm.be theme 'OnWheels')",
- "value": "0"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme OnWheels has a layer Restaurants and fast food showing features with this tag",
- "value": "fast_food"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme OnWheels has a layer Restaurants and fast food showing features with this tag",
- "value": "restaurant"
- },
- {
- "key": "id",
- "description": "Layer 'Restaurants and fast food' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "level",
- "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "location",
- "description": "Layer 'Restaurants and fast food' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Restaurants and fast food' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key level.",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "value": "-1"
- },
- {
- "key": "name",
- "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "amenity",
- "description": "Layer 'Restaurants and fast food' shows amenity=fast_food with a fixed text, namely 'This is a fastfood-business, focused on fast service. If seating is available, these are rather limited and functional.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "value": "restaurant"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "website",
- "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Restaurants and fast food' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "email",
- "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Restaurants and fast food' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "phone",
- "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Restaurants and fast food' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "payment:cash",
- "description": "Layer 'Restaurants and fast food' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "yes"
- },
- {
- "key": "payment:cards",
- "description": "Layer 'Restaurants and fast food' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "yes"
- },
- {
- "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.osm.be theme 'OnWheels')",
- "value": "designated"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Restaurants and fast food' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "yes"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Restaurants and fast food' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "limited"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Restaurants and fast food' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "no"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'cuisine' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=pizza with a fixed text, namely 'This is a pizzeria' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "pizza"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=friture with a fixed text, namely 'This is a friture' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "friture"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=pasta with a fixed text, namely 'Mainly serves pasta' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "pasta"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=kebab with a fixed text, namely 'This is kebab shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "kebab"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=sandwich with a fixed text, namely 'This is a sandwichbar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "sandwich"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=burger with a fixed text, namely 'Burgers are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "burger"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=sushi with a fixed text, namely 'Sushi is served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "sushi"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=coffee with a fixed text, namely 'Coffee is served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "coffee"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=italian with a fixed text, namely 'This is an italian restaurant (which serves more then pasta and pizza)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "italian"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=french with a fixed text, namely 'French dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "french"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=chinese with a fixed text, namely 'Chinese dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "chinese"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=greek with a fixed text, namely 'Greek dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "greek"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=indian with a fixed text, namely 'Indian dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "indian"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=turkish with a fixed text, namely 'Turkish dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "turkish"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=thai with a fixed text, namely 'Thai dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "thai"
- },
- {
- "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.osm.be theme 'OnWheels') (This is only shown if amenity=restaurant)",
- "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.osm.be theme 'OnWheels') (This is only shown if amenity=restaurant)",
- "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.osm.be theme 'OnWheels') (This is only shown if amenity=restaurant)",
- "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.osm.be theme 'OnWheels') (This is only shown if amenity=restaurant)",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "value": "no"
- },
- {
- "key": "delivery",
- "description": "Layer 'Restaurants and fast food' shows delivery=yes with a fixed text, namely 'This business does home delivery (eventually via a third party)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (This is only shown if cuisine!=friture)",
- "value": "only"
- },
- {
- "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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (This is only shown if cuisine!=friture)",
- "value": "only"
- },
- {
- "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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (This is only shown if cuisine=friture)",
- "value": "no"
- },
- {
- "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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (This is only shown if cuisine=friture)",
- "value": "only"
- },
- {
- "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.osm.be theme 'OnWheels')",
- "value": "yes"
- },
- {
- "key": "service:electricity",
- "description": "Layer 'Restaurants and fast food' shows service:electricity=limited with a fixed text, namely 'There are a few domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "limited"
- },
- {
- "key": "service:electricity",
- "description": "Layer 'Restaurants and fast food' shows service:electricity=ask with a fixed text, namely 'There are no sockets available indoors to customers, but charging might be possible if the staff is asked' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "ask"
- },
- {
- "key": "service:electricity",
- "description": "Layer 'Restaurants and fast food' shows service:electricity=no with a fixed text, namely 'There are a no domestic sockets available to customers seated indoors' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "value": "yes"
- },
- {
- "key": "dog",
- "description": "Layer 'Restaurants and fast food' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "no"
- },
- {
- "key": "dog",
- "description": "Layer 'Restaurants and fast food' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "leashed"
- },
- {
- "key": "dog",
- "description": "Layer 'Restaurants and fast food' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "unleashed"
- },
- {
- "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.osm.be theme 'OnWheels')",
- "value": "wlan"
- },
- {
- "key": "internet_access",
- "description": "Layer 'Restaurants and fast food' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "no"
- },
- {
- "key": "internet_access",
- "description": "Layer 'Restaurants and fast food' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "yes"
- },
- {
- "key": "internet_access",
- "description": "Layer 'Restaurants and fast food' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "terminal"
- },
- {
- "key": "internet_access",
- "description": "Layer 'Restaurants and fast food' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "wired"
- },
- {
- "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.osm.be theme 'OnWheels') (This is only shown if internet_access!=no&internet_access~.+)",
- "value": "yes"
- },
- {
- "key": "internet_access:fee",
- "description": "Layer 'Restaurants and fast food' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if internet_access!=no&internet_access~.+)",
- "value": "no"
- },
- {
- "key": "internet_access:fee",
- "description": "Layer 'Restaurants and fast food' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if internet_access!=no&internet_access~.+)",
- "value": "customers"
- },
- {
- "key": "internet_access:ssid",
- "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'internet_access:ssid' (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if internet_access=wlan)"
- },
- {
- "key": "internet_access:ssid",
- "description": "Layer 'Restaurants and fast food' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if internet_access=wlan)",
- "value": "Telekom"
- },
- {
- "key": "barrier",
- "description": "The MapComplete theme OnWheels has a layer Kerbs showing features with this tag",
- "value": "kerb"
- },
- {
- "key": "id",
- "description": "Layer 'Kerbs' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Kerbs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Kerbs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Kerbs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Kerbs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels') (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.osm.be theme 'OnWheels')"
- },
- {
- "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.osm.be theme 'OnWheels')",
- "value": "0"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme OnWheels has a layer Parking showing features with this tag",
- "value": "parking"
- },
- {
- "key": "id",
- "description": "Layer 'Parking' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "level",
- "description": "Layer 'Parking' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "location",
- "description": "Layer 'Parking' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Parking' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key level.",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "value": "sheds"
- },
- {
- "key": "capacity:disabled",
- "description": "Layer 'Parking' shows and asks freeform values for key 'capacity:disabled' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "value": "0"
- },
- {
- "key": "capacity",
- "description": "Layer 'Parking' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "parking_space",
- "description": "The MapComplete theme OnWheels has a layer Disabled parking spaces showing features with this tag",
- "value": "disabled"
- },
- {
- "key": "id",
- "description": "Layer 'Disabled parking spaces' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Disabled parking spaces allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Disabled parking spaces allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Disabled parking spaces allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Disabled parking spaces allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "shop",
- "description": "The MapComplete theme OnWheels has a layer Shop showing features with this tag"
- },
- {
- "key": "id",
- "description": "Layer 'Shop' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Shop allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Shop allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Shop allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Shop allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "name",
- "description": "Layer 'Shop' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows and asks freeform values for key 'shop' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=agrarian with a fixed text, namely 'Farm Supply Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "agrarian"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=alcohol with a fixed text, namely 'Liquor Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "alcohol"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=anime with a fixed text, namely 'Anime / Manga Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "anime"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=antiques with a fixed text, namely 'Antiques Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "antiques"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=appliance with a fixed text, namely 'Appliance Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "appliance"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=art with a fixed text, namely 'Art Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "art"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=baby_goods with a fixed text, namely 'Baby Goods Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "baby_goods"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=bag with a fixed text, namely 'Bag/Luggage Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "bag"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=bakery with a fixed text, namely 'Bakery' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "bakery"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=bathroom_furnishing with a fixed text, namely 'Bathroom Furnishing Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "bathroom_furnishing"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=beauty with a fixed text, namely 'Beauty Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "beauty"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=bed with a fixed text, namely 'Bedding/Mattress Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "bed"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=beverages with a fixed text, namely 'Beverage Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "beverages"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=bicycle with a fixed text, namely 'Bicycle Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "bicycle"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=boat with a fixed text, namely 'Boat Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "boat"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=bookmaker with a fixed text, namely 'Bookmaker' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "bookmaker"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=books with a fixed text, namely 'Book Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "books"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=brewing_supplies with a fixed text, namely 'Brewing Supply Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "brewing_supplies"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=butcher with a fixed text, namely 'Butcher' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "butcher"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=camera with a fixed text, namely 'Camera Equipment Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "camera"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=candles with a fixed text, namely 'Candle Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "candles"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=cannabis with a fixed text, namely 'Cannabis Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "cannabis"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=car with a fixed text, namely 'Car Dealership' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "car"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=car_parts with a fixed text, namely 'Car Parts Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "car_parts"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=car_repair with a fixed text, namely 'Car Repair Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "car_repair"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=caravan with a fixed text, namely 'RV Dealership' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "caravan"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=carpet with a fixed text, namely 'Carpet Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "carpet"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=catalogue with a fixed text, namely 'Catalog Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "catalogue"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=charity with a fixed text, namely 'Charity Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "charity"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=cheese with a fixed text, namely 'Cheese Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "cheese"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=chemist with a fixed text, namely 'Drugstore' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "chemist"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=chocolate with a fixed text, namely 'Chocolate Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "chocolate"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=clothes with a fixed text, namely 'Clothing Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "clothes"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=coffee with a fixed text, namely 'Coffee Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "coffee"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=collector with a fixed text, namely 'Collectibles Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "collector"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=computer with a fixed text, namely 'Computer Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "computer"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=confectionery with a fixed text, namely 'Candy Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "confectionery"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=convenience with a fixed text, namely 'Convenience Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "convenience"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=copyshop with a fixed text, namely 'Copy Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "copyshop"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=cosmetics with a fixed text, namely 'Cosmetics Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "cosmetics"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=country_store with a fixed text, namely 'Country Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "country_store"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=craft with a fixed text, namely 'Arts & Crafts Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "craft"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=curtain with a fixed text, namely 'Curtain Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "curtain"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=dairy with a fixed text, namely 'Dairy Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "dairy"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=deli with a fixed text, namely 'Deli' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "deli"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=department_store with a fixed text, namely 'Department Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "department_store"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=doityourself with a fixed text, namely 'DIY Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "doityourself"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=doors with a fixed text, namely 'Door Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "doors"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=dry_cleaning with a fixed text, namely 'Dry Cleaner' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "dry_cleaning"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=e-cigarette with a fixed text, namely 'E-Cigarette Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "e-cigarette"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=electrical with a fixed text, namely 'Electrical Equipment Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "electrical"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=electronics with a fixed text, namely 'Electronics Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "electronics"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=erotic with a fixed text, namely 'Erotic Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "erotic"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=fabric with a fixed text, namely 'Fabric Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "fabric"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=farm with a fixed text, namely 'Produce Stand' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "farm"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=fashion_accessories with a fixed text, namely 'Fashion Accessories Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "fashion_accessories"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=fireplace with a fixed text, namely 'Fireplace Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "fireplace"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=fishing with a fixed text, namely 'Fishing Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "fishing"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=flooring with a fixed text, namely 'Flooring Supply Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "flooring"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=florist with a fixed text, namely 'Florist' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "florist"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=frame with a fixed text, namely 'Framing Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "frame"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=frozen_food with a fixed text, namely 'Frozen Food Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "frozen_food"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=fuel with a fixed text, namely 'Fuel Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "fuel"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=funeral_directors with a fixed text, namely 'Funeral Home' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "funeral_directors"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=furniture with a fixed text, namely 'Furniture Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "furniture"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=games with a fixed text, namely 'Tabletop Game Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "games"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=garden_centre with a fixed text, namely 'Garden Center' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "garden_centre"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=gas with a fixed text, namely 'Bottled Gas Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "gas"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=general with a fixed text, namely 'General Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "general"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=gift with a fixed text, namely 'Gift Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "gift"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=greengrocer with a fixed text, namely 'Greengrocer' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "greengrocer"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=hairdresser with a fixed text, namely 'Hairdresser' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "hairdresser"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=hairdresser_supply with a fixed text, namely 'Hairdresser Supply Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "hairdresser_supply"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=hardware with a fixed text, namely 'Hardware Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "hardware"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=health_food with a fixed text, namely 'Health Food Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "health_food"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=hearing_aids with a fixed text, namely 'Hearing Aids Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "hearing_aids"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=herbalist with a fixed text, namely 'Herbalist' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "herbalist"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=hifi with a fixed text, namely 'Hifi Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "hifi"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=hobby with a fixed text, namely 'Hobby Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "hobby"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=household_linen with a fixed text, namely 'Household Linen Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "household_linen"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=houseware with a fixed text, namely 'Houseware Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "houseware"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=hunting with a fixed text, namely 'Hunting Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "hunting"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=interior_decoration with a fixed text, namely 'Interior Decoration Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "interior_decoration"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=jewelry with a fixed text, namely 'Jewelry Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "jewelry"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=kiosk with a fixed text, namely 'Kiosk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "kiosk"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=kitchen with a fixed text, namely 'Kitchen Design Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "kitchen"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=laundry with a fixed text, namely 'Laundry' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "laundry"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=leather with a fixed text, namely 'Leather Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "leather"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=lighting with a fixed text, namely 'Lighting Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "lighting"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=locksmith with a fixed text, namely 'Locksmith' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "locksmith"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=lottery with a fixed text, namely 'Lottery Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "lottery"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=mall with a fixed text, namely 'Mall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "mall"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=massage with a fixed text, namely 'Massage Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "massage"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=medical_supply with a fixed text, namely 'Medical Supply Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "medical_supply"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=military_surplus with a fixed text, namely 'Military Surplus Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "military_surplus"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=mobile_phone with a fixed text, namely 'Mobile Phone Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "mobile_phone"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=model with a fixed text, namely 'Model Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "model"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=money_lender with a fixed text, namely 'Money Lender' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "money_lender"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=motorcycle with a fixed text, namely 'Motorcycle Dealership' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "motorcycle"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=motorcycle_repair with a fixed text, namely 'Motorcycle Repair Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "motorcycle_repair"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=music with a fixed text, namely 'Music Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "music"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=musical_instrument with a fixed text, namely 'Musical Instrument Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "musical_instrument"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=newsagent with a fixed text, namely 'Newspaper/Magazine Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "newsagent"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=nutrition_supplements with a fixed text, namely 'Nutrition Supplements Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "nutrition_supplements"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=optician with a fixed text, namely 'Optician' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "optician"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=outdoor with a fixed text, namely 'Outdoors Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "outdoor"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=outpost with a fixed text, namely 'Online Retailer Outpost' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "outpost"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=paint with a fixed text, namely 'Paint Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "paint"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=party with a fixed text, namely 'Party Supply Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "party"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=pastry with a fixed text, namely 'Pastry Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "pastry"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=pawnbroker with a fixed text, namely 'Pawn Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "pawnbroker"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=perfumery with a fixed text, namely 'Perfume Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "perfumery"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=pet with a fixed text, namely 'Pet Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "pet"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=pet_grooming with a fixed text, namely 'Pet Grooming Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "pet_grooming"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=photo with a fixed text, namely 'Photography Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "photo"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=pottery with a fixed text, namely 'Pottery Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "pottery"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=printer_ink with a fixed text, namely 'Printer Ink Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "printer_ink"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=psychic with a fixed text, namely 'Psychic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "psychic"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=pyrotechnics with a fixed text, namely 'Fireworks Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "pyrotechnics"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=radiotechnics with a fixed text, namely 'Radio/Electronic Component Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "radiotechnics"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=religion with a fixed text, namely 'Religious Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "religion"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=rental with a fixed text, namely 'Rental Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "rental"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=repair with a fixed text, namely 'Repair Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "repair"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=scuba_diving with a fixed text, namely 'Scuba Diving Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "scuba_diving"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=seafood with a fixed text, namely 'Seafood Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "seafood"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=second_hand with a fixed text, namely 'Consignment/Thrift Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "second_hand"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=sewing with a fixed text, namely 'Sewing Supply Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "sewing"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=shoe_repair with a fixed text, namely 'Shoe Repair Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "shoe_repair"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=shoes with a fixed text, namely 'Shoe Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "shoes"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=spices with a fixed text, namely 'Spice Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "spices"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=sports with a fixed text, namely 'Sporting Goods Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "sports"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=stationery with a fixed text, namely 'Stationery Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "stationery"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=storage_rental with a fixed text, namely 'Storage Rental' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "storage_rental"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=supermarket with a fixed text, namely 'Supermarket' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "supermarket"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=swimming_pool with a fixed text, namely 'Pool Supply Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "swimming_pool"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=tailor with a fixed text, namely 'Tailor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "tailor"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=tattoo with a fixed text, namely 'Tattoo Parlor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "tattoo"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=tea with a fixed text, namely 'Tea Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "tea"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=telecommunication with a fixed text, namely 'Telecom Retail Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "telecommunication"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=ticket with a fixed text, namely 'Ticket Seller' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "ticket"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=tiles with a fixed text, namely 'Tile Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "tiles"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=tobacco with a fixed text, namely 'Tobacco Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "tobacco"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=tool_hire with a fixed text, namely 'Tool Rental' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "tool_hire"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=toys with a fixed text, namely 'Toy Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "toys"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=trade with a fixed text, namely 'Trade Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "trade"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=travel_agency with a fixed text, namely 'Travel Agency' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "travel_agency"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=trophy with a fixed text, namely 'Trophy Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "trophy"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=tyres with a fixed text, namely 'Tire Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "tyres"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=vacuum_cleaner with a fixed text, namely 'Vacuum Cleaner Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "vacuum_cleaner"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=variety_store with a fixed text, namely 'Variety Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "variety_store"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=video with a fixed text, namely 'Video Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "video"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=video_games with a fixed text, namely 'Video Game Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "video_games"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=watches with a fixed text, namely 'Watches Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "watches"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=water with a fixed text, namely 'Drinking Water Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "water"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=water_sports with a fixed text, namely 'Watersport/Swim Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "water_sports"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=weapons with a fixed text, namely 'Weapon Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "weapons"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=wholesale with a fixed text, namely 'Wholesale Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "wholesale"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=wigs with a fixed text, namely 'Wig Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "wigs"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=window_blind with a fixed text, namely 'Window Blind Store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "window_blind"
- },
- {
- "key": "shop",
- "description": "Layer 'Shop' shows shop=wine with a fixed text, namely 'Wine Shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "wine"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Shop' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "website",
- "description": "Layer 'Shop' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Shop' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "email",
- "description": "Layer 'Shop' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Shop' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "phone",
- "description": "Layer 'Shop' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Shop' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "payment:cash",
- "description": "Layer 'Shop' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "yes"
- },
- {
- "key": "payment:cards",
- "description": "Layer 'Shop' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "yes"
- },
- {
- "key": "level",
- "description": "Layer 'Shop' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "location",
- "description": "Layer 'Shop' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "underground"
- },
- {
- "key": "level",
- "description": "Layer 'Shop' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Shop' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key level.",
- "value": ""
- },
- {
- "key": "level",
- "description": "Layer 'Shop' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "1"
- },
- {
- "key": "level",
- "description": "Layer 'Shop' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "-1"
- },
- {
- "key": "service:print:A4",
- "description": "Layer 'Shop' shows service:print:A4=yes with a fixed text, namely 'This shop can print on papers of size A4' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if shop~^(.*copyshop.*)$|shop~^(.*stationery.*)$|service:print=yes)",
- "value": "yes"
- },
- {
- "key": "service:print:A3",
- "description": "Layer 'Shop' shows service:print:A3=yes with a fixed text, namely 'This shop can print on papers of size A3' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if shop~^(.*copyshop.*)$|shop~^(.*stationery.*)$|service:print=yes)",
- "value": "yes"
- },
- {
- "key": "service:print:A2",
- "description": "Layer 'Shop' shows service:print:A2=yes with a fixed text, namely 'This shop can print on papers of size A2' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if shop~^(.*copyshop.*)$|shop~^(.*stationery.*)$|service:print=yes)",
- "value": "yes"
- },
- {
- "key": "service:print:A1",
- "description": "Layer 'Shop' shows service:print:A1=yes with a fixed text, namely 'This shop can print on papers of size A1' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if shop~^(.*copyshop.*)$|shop~^(.*stationery.*)$|service:print=yes)",
- "value": "yes"
- },
- {
- "key": "service:print:A0",
- "description": "Layer 'Shop' shows service:print:A0=yes with a fixed text, namely 'This shop can print on papers of size A0' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if shop~^(.*copyshop.*)$|shop~^(.*stationery.*)$|service:print=yes)",
- "value": "yes"
- },
- {
- "key": "internet_access",
- "description": "Layer 'Shop' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "wlan"
- },
- {
- "key": "internet_access",
- "description": "Layer 'Shop' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "no"
- },
- {
- "key": "internet_access",
- "description": "Layer 'Shop' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "yes"
- },
- {
- "key": "internet_access",
- "description": "Layer 'Shop' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "terminal"
- },
- {
- "key": "internet_access",
- "description": "Layer 'Shop' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "wired"
- },
- {
- "key": "internet_access:fee",
- "description": "Layer 'Shop' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if internet_access!=no&internet_access~.+)",
- "value": "yes"
- },
- {
- "key": "internet_access:fee",
- "description": "Layer 'Shop' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if internet_access!=no&internet_access~.+)",
- "value": "no"
- },
- {
- "key": "internet_access:fee",
- "description": "Layer 'Shop' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if internet_access!=no&internet_access~.+)",
- "value": "customers"
- },
- {
- "key": "internet_access:ssid",
- "description": "Layer 'Shop' shows and asks freeform values for key 'internet_access:ssid' (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if internet_access=wlan)"
- },
- {
- "key": "internet_access:ssid",
- "description": "Layer 'Shop' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if internet_access=wlan)",
- "value": "Telekom"
- },
- {
- "key": "organic",
- "description": "Layer 'Shop' shows organic=yes with a fixed text, namely 'This shop offers organic products' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if shop=supermarket|shop=convenience|shop=farm|shop=greengrocer|shop=health_food|shop=clothes|shop=shoes|shop=butcher|shop=cosmetics|shop=deli|shop=bakery|shop=alcohol|shop=seafood|shop=beverages|shop=florist)",
- "value": "yes"
- },
- {
- "key": "organic",
- "description": "Layer 'Shop' shows organic=only with a fixed text, namely 'This shop only offers organic products' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if shop=supermarket|shop=convenience|shop=farm|shop=greengrocer|shop=health_food|shop=clothes|shop=shoes|shop=butcher|shop=cosmetics|shop=deli|shop=bakery|shop=alcohol|shop=seafood|shop=beverages|shop=florist)",
- "value": "only"
- },
- {
- "key": "organic",
- "description": "Layer 'Shop' shows organic=no with a fixed text, namely 'This shop does not offer organic products' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if shop=supermarket|shop=convenience|shop=farm|shop=greengrocer|shop=health_food|shop=clothes|shop=shoes|shop=butcher|shop=cosmetics|shop=deli|shop=bakery|shop=alcohol|shop=seafood|shop=beverages|shop=florist)",
- "value": "no"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme OnWheels has a layer Toilets showing features with this tag",
- "value": "toilets"
- },
- {
- "key": "id",
- "description": "Layer 'Toilets' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Toilets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Toilets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Toilets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Toilets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "level",
- "description": "Layer 'Toilets' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "location",
- "description": "Layer 'Toilets' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "underground"
- },
- {
- "key": "level",
- "description": "Layer 'Toilets' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Toilets' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key level.",
- "value": ""
- },
- {
- "key": "level",
- "description": "Layer 'Toilets' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "1"
- },
- {
- "key": "level",
- "description": "Layer 'Toilets' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "-1"
- },
- {
- "key": "access",
- "description": "Layer 'Toilets' shows and asks freeform values for key 'access' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "access",
- "description": "Layer 'Toilets' shows access=yes with a fixed text, namely 'Public access' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "yes"
- },
- {
- "key": "access",
- "description": "Layer 'Toilets' shows access=customers with a fixed text, namely 'Only access to customers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "customers"
- },
- {
- "key": "access",
- "description": "Layer 'Toilets' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "no"
- },
- {
- "key": "access",
- "description": "Layer 'Toilets' shows access=key with a fixed text, namely 'Accessible, but one has to ask a key to enter' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "key"
- },
- {
- "key": "access",
- "description": "Layer 'Toilets' shows access=public with a fixed text, namely 'Public access' (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "public"
- },
- {
- "key": "fee",
- "description": "Layer 'Toilets' shows fee=yes with a fixed text, namely 'These are paid toilets' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if access!=no)",
- "value": "yes"
- },
- {
- "key": "fee",
- "description": "Layer 'Toilets' shows fee=no with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if access!=no)",
- "value": "no"
- },
- {
- "key": "charge",
- "description": "Layer 'Toilets' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if fee=yes)"
- },
- {
- "key": "payment:cash",
- "description": "Layer 'Toilets' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if fee=yes)",
- "value": "yes"
- },
- {
- "key": "payment:cards",
- "description": "Layer 'Toilets' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if fee=yes)",
- "value": "yes"
- },
- {
- "key": "payment:coins",
- "description": "Layer 'Toilets' shows payment:coins=yes with a fixed text, namely 'Coins are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if fee=yes)",
- "value": "yes"
- },
- {
- "key": "payment:notes",
- "description": "Layer 'Toilets' shows payment:notes=yes with a fixed text, namely 'Bank notes are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if fee=yes)",
- "value": "yes"
- },
- {
- "key": "payment:debit_cards",
- "description": "Layer 'Toilets' shows payment:debit_cards=yes with a fixed text, namely 'Debit cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if fee=yes)",
- "value": "yes"
- },
- {
- "key": "payment:credit_cards",
- "description": "Layer 'Toilets' shows payment:credit_cards=yes with a fixed text, namely 'Credit cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if fee=yes)",
- "value": "yes"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Toilets' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if access!=no)"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Toilets' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if access!=no)",
- "value": "24/7"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Toilets' shows wheelchair=yes with a fixed text, namely 'There is a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "yes"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Toilets' shows wheelchair=no with a fixed text, namely 'No wheelchair access' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "no"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Toilets' shows wheelchair=designated with a fixed text, namely 'There is only a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "designated"
- },
- {
- "key": "door:width",
- "description": "Layer 'Toilets' shows and asks freeform values for key 'door:width' (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if wheelchair=yes|wheelchair=designated)"
- },
- {
- "key": "toilets:position",
- "description": "Layer 'Toilets' shows toilets:position=seated with a fixed text, namely 'There are only seated toilets' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "seated"
- },
- {
- "key": "toilets:position",
- "description": "Layer 'Toilets' shows toilets:position=urinal with a fixed text, namely 'There are only urinals here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "urinal"
- },
- {
- "key": "toilets:position",
- "description": "Layer 'Toilets' shows toilets:position=squat with a fixed text, namely 'There are only squat toilets here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "squat"
- },
- {
- "key": "toilets:position",
- "description": "Layer 'Toilets' shows toilets:position=seated;urinal with a fixed text, namely 'Both seated toilets and urinals are available here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "seated;urinal"
- },
- {
- "key": "changing_table",
- "description": "Layer 'Toilets' shows changing_table=yes with a fixed text, namely 'A changing table is available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "yes"
- },
- {
- "key": "changing_table",
- "description": "Layer 'Toilets' shows changing_table=no with a fixed text, namely 'No changing table is available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "no"
- },
- {
- "key": "changing_table:location",
- "description": "Layer 'Toilets' shows and asks freeform values for key 'changing_table:location' (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if changing_table=yes)"
- },
- {
- "key": "changing_table:location",
- "description": "Layer 'Toilets' shows changing_table:location=female_toilet with a fixed text, namely 'The changing table is in the toilet for women. ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if changing_table=yes)",
- "value": "female_toilet"
- },
- {
- "key": "changing_table:location",
- "description": "Layer 'Toilets' shows changing_table:location=male_toilet with a fixed text, namely 'The changing table is in the toilet for men. ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if changing_table=yes)",
- "value": "male_toilet"
- },
- {
- "key": "changing_table:location",
- "description": "Layer 'Toilets' shows changing_table:location=wheelchair_toilet with a fixed text, namely 'The changing table is in the toilet for wheelchair users. ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if changing_table=yes)",
- "value": "wheelchair_toilet"
- },
- {
- "key": "changing_table:location",
- "description": "Layer 'Toilets' shows changing_table:location=dedicated_room with a fixed text, namely 'The changing table is in a dedicated room. ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if changing_table=yes)",
- "value": "dedicated_room"
- },
- {
- "key": "toilets:handwashing",
- "description": "Layer 'Toilets' shows toilets:handwashing=yes with a fixed text, namely 'This toilets have a sink to wash your hands' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "yes"
- },
- {
- "key": "toilets:handwashing",
- "description": "Layer 'Toilets' shows toilets:handwashing=no with a fixed text, namely 'This toilets don't have a sink to wash your hands' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "no"
- },
- {
- "key": "toilets:paper_supplied",
- "description": "Layer 'Toilets' shows toilets:paper_supplied=yes with a fixed text, namely 'This toilet is equipped with toilet paper' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if toilets:position!=urinal)",
- "value": "yes"
- },
- {
- "key": "toilets:paper_supplied",
- "description": "Layer 'Toilets' shows toilets:paper_supplied=no with a fixed text, namely 'You have to bring your own toilet paper to this toilet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if toilets:position!=urinal)",
- "value": "no"
- },
- {
- "key": "description",
- "description": "Layer 'Toilets' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme OnWheels has a layer Pharmacies showing features with this tag",
- "value": "pharmacy"
- },
- {
- "key": "id",
- "description": "Layer 'Pharmacies' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Pharmacies allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Pharmacies allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Pharmacies allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Pharmacies allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "name",
- "description": "Layer 'Pharmacies' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Pharmacies' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "phone",
- "description": "Layer 'Pharmacies' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Pharmacies' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "email",
- "description": "Layer 'Pharmacies' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Pharmacies' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "website",
- "description": "Layer 'Pharmacies' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Pharmacies' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "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.osm.be 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.osm.be 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.osm.be theme 'OnWheels')",
- "value": "limited"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme OnWheels has a layer Doctors showing features with this tag",
- "value": "doctors"
- },
- {
- "key": "id",
- "description": "Layer 'Doctors' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Doctors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Doctors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Doctors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Doctors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "name",
- "description": "Layer 'Doctors' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Doctors' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "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.osm.be theme 'OnWheels')",
- "value": "\"by appointment\""
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Doctors' shows opening_hours~^(\"by appointment\"|by appointment)$ with a fixed text, namely 'Only by appointment' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "phone",
- "description": "Layer 'Doctors' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Doctors' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "email",
- "description": "Layer 'Doctors' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Doctors' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "website",
- "description": "Layer 'Doctors' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Doctors' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "healthcare:speciality",
- "description": "Layer 'Doctors' shows and asks freeform values for key 'healthcare:speciality' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "value": "paediatrics"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme OnWheels has a layer Hospitals showing features with this tag",
- "value": "hospital"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme OnWheels has a layer Hospitals showing features with this tag",
- "value": "clinic"
- },
- {
- "key": "id",
- "description": "Layer 'Hospitals' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "name",
- "description": "Layer 'Hospitals' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "value": "hospital"
- },
- {
- "key": "phone",
- "description": "Layer 'Hospitals' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Hospitals' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "email",
- "description": "Layer 'Hospitals' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Hospitals' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "website",
- "description": "Layer 'Hospitals' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Hospitals' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme OnWheels has a layer Reception desks showing features with this tag",
- "value": "reception_desk"
- },
- {
- "key": "id",
- "description": "Layer 'Reception desks' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Reception desks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Reception desks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Reception desks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Reception desks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "level",
- "description": "Layer 'Reception desks' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "location",
- "description": "Layer 'Reception desks' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Reception desks' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key level.",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "value": "-1"
- },
- {
- "key": "desk:height",
- "description": "Layer 'Reception desks' shows and asks freeform values for key 'desk:height' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "value": "no"
- },
- {
- "key": "highway",
- "description": "The MapComplete theme OnWheels has a layer Elevator showing features with this tag",
- "value": "elevator"
- },
- {
- "key": "id",
- "description": "Layer 'Elevator' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Elevator allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Elevator allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Elevator allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Elevator allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "level",
- "description": "Layer 'Elevator' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "location",
- "description": "Layer 'Elevator' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Elevator' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'OnWheels') Picking this answer will delete the key level.",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "value": "ok"
- },
- {
- "key": "operational_status",
- "description": "Layer 'Elevator' shows with a fixed text, namely 'This elevator works' (in the MapComplete.osm.be theme 'OnWheels') 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.osm.be theme 'OnWheels')"
- },
- {
- "key": "elevator:width",
- "description": "Layer 'Elevator' shows and asks freeform values for key 'elevator:width' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "elevator:depth",
- "description": "Layer 'Elevator' shows and asks freeform values for key 'elevator:depth' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "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.osm.be theme 'OnWheels')",
- "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.osm.be theme 'OnWheels')",
- "value": "no"
- },
- {
- "key": "tourism",
- "description": "The MapComplete theme OnWheels has a layer Hotels showing features with this tag",
- "value": "hotel"
- },
- {
- "key": "id",
- "description": "Layer '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.osm.be theme 'OnWheels') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Hotels allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Hotels allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Hotels allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Hotels allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "name",
- "description": "Layer 'Hotels' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "phone",
- "description": "Layer 'Hotels' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Hotels' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "email",
- "description": "Layer 'Hotels' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Hotels' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "website",
- "description": "Layer 'Hotels' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Hotels' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Hotels' 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.osm.be theme 'OnWheels')",
- "value": "designated"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Hotels' 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.osm.be theme 'OnWheels')",
- "value": "yes"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Hotels' 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.osm.be theme 'OnWheels')",
- "value": "limited"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Hotels' 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.osm.be theme 'OnWheels')",
- "value": "no"
- },
- {
- "key": "internet_access",
- "description": "Layer 'Hotels' 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.osm.be theme 'OnWheels')",
- "value": "wlan"
- },
- {
- "key": "internet_access",
- "description": "Layer 'Hotels' 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.osm.be theme 'OnWheels')",
- "value": "no"
- },
- {
- "key": "internet_access",
- "description": "Layer 'Hotels' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the MapComplete.osm.be theme 'OnWheels')",
- "value": "yes"
- },
- {
- "key": "internet_access",
- "description": "Layer 'Hotels' 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.osm.be theme 'OnWheels')",
- "value": "terminal"
- },
- {
- "key": "internet_access",
- "description": "Layer 'Hotels' 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.osm.be theme 'OnWheels')",
- "value": "wired"
- },
- {
- "key": "internet_access:fee",
- "description": "Layer 'Hotels' 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.osm.be theme 'OnWheels') (This is only shown if internet_access!=no&internet_access~.+)",
- "value": "yes"
- },
- {
- "key": "internet_access:fee",
- "description": "Layer 'Hotels' 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.osm.be theme 'OnWheels') (This is only shown if internet_access!=no&internet_access~.+)",
- "value": "no"
- },
- {
- "key": "internet_access:fee",
- "description": "Layer 'Hotels' 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.osm.be theme 'OnWheels') (This is only shown if internet_access!=no&internet_access~.+)",
- "value": "customers"
- },
- {
- "key": "internet_access:ssid",
- "description": "Layer 'Hotels' shows and asks freeform values for key 'internet_access:ssid' (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if internet_access=wlan)"
- },
- {
- "key": "internet_access:ssid",
- "description": "Layer 'Hotels' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if internet_access=wlan)",
- "value": "Telekom"
- },
- {
- "key": "office",
- "description": "The MapComplete theme OnWheels has a layer governments showing features with this tag",
- "value": "government"
- },
- {
- "key": "id",
- "description": "Layer 'governments' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'OnWheels') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'governments allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'governments allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'governments allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'governments allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "phone",
- "description": "Layer 'governments' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'governments' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "email",
- "description": "Layer 'governments' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'governments' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "website",
- "description": "Layer 'governments' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'governments' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'OnWheels')"
- },
- {
- "key": "name",
- "description": "Layer 'governments' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'OnWheels')"
- }
- ]
-}
\ No newline at end of file
diff --git a/Docs/TagInfo/mapcomplete_openwindpowermap.json b/Docs/TagInfo/mapcomplete_openwindpowermap.json
deleted file mode 100644
index bff08f0f5..000000000
--- a/Docs/TagInfo/mapcomplete_openwindpowermap.json
+++ /dev/null
@@ -1,63 +0,0 @@
-{
- "data_format": 1,
- "project": {
- "name": "MapComplete OpenWindPowerMap",
- "description": "A map for showing and editing wind turbines",
- "project_url": "https://mapcomplete.osm.be/openwindpowermap",
- "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/",
- "icon_url": "https://mapcomplete.osm.be/assets/themes/openwindpowermap/logo.svg",
- "contact_name": "Pieter Vander Vennet",
- "contact_email": "pietervdvn@posteo.net"
- },
- "tags": [
- {
- "key": "generator:source",
- "description": "The MapComplete theme OpenWindPowerMap has a layer wind turbine showing features with this tag",
- "value": "wind"
- },
- {
- "key": "id",
- "description": "Layer 'wind turbine' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'OpenWindPowerMap') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "generator:output:electricity",
- "description": "Layer 'wind turbine' shows and asks freeform values for key 'generator:output:electricity' (in the MapComplete.osm.be theme 'OpenWindPowerMap')"
- },
- {
- "key": "operator",
- "description": "Layer 'wind turbine' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'OpenWindPowerMap')"
- },
- {
- "key": "height",
- "description": "Layer 'wind turbine' shows and asks freeform values for key 'height' (in the MapComplete.osm.be theme 'OpenWindPowerMap')"
- },
- {
- "key": "rotor:diameter",
- "description": "Layer 'wind turbine' shows and asks freeform values for key 'rotor:diameter' (in the MapComplete.osm.be theme 'OpenWindPowerMap')"
- },
- {
- "key": "start_date",
- "description": "Layer 'wind turbine' shows and asks freeform values for key 'start_date' (in the MapComplete.osm.be theme 'OpenWindPowerMap')"
- },
- {
- "key": "fixme",
- "description": "Layer 'wind turbine' shows and asks freeform values for key 'fixme' (in the MapComplete.osm.be theme 'OpenWindPowerMap')"
- },
- {
- "key": "image",
- "description": "The layer 'wind turbine allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'wind turbine allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'wind turbine allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'wind turbine allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- }
- ]
-}
\ No newline at end of file
diff --git a/Docs/TagInfo/mapcomplete_parkings.json b/Docs/TagInfo/mapcomplete_parkings.json
deleted file mode 100644
index 6f9c6b018..000000000
--- a/Docs/TagInfo/mapcomplete_parkings.json
+++ /dev/null
@@ -1,390 +0,0 @@
-{
- "data_format": 1,
- "project": {
- "name": "MapComplete Parking",
- "description": "This map shows different parking spots",
- "project_url": "https://mapcomplete.osm.be/parkings",
- "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/",
- "icon_url": "https://mapcomplete.osm.be/assets/themes/parkings/parkings.svg",
- "contact_name": "Pieter Vander Vennet",
- "contact_email": "pietervdvn@posteo.net"
- },
- "tags": [
- {
- "key": "amenity",
- "description": "The MapComplete theme Parking 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.osm.be theme 'Parking') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "level",
- "description": "Layer 'Parking' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Parking')"
- },
- {
- "key": "location",
- "description": "Layer 'Parking' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Parking' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Parking') Picking this answer will delete the key level.",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "value": "sheds"
- },
- {
- "key": "capacity:disabled",
- "description": "Layer 'Parking' shows and asks freeform values for key 'capacity:disabled' (in the MapComplete.osm.be theme 'Parking')"
- },
- {
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "value": "0"
- },
- {
- "key": "capacity",
- "description": "Layer 'Parking' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be theme 'Parking')"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Parking has a layer Parking Spaces showing features with this tag",
- "value": "parking_space"
- },
- {
- "key": "id",
- "description": "Layer 'Parking Spaces' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Parking') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Parking Spaces allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Parking Spaces allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Parking Spaces allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Parking Spaces allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "parking_space",
- "description": "Layer 'Parking Spaces' shows with a fixed text, namely 'This is a normal parking space.' (in the MapComplete.osm.be theme 'Parking') 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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "value": "disabled"
- },
- {
- "key": "parking_space",
- "description": "Layer 'Parking Spaces' shows parking_space=private with a fixed text, namely 'This is a private parking space.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Parking')",
- "value": "private"
- },
- {
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "value": "1"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Parking has a layer Parking Ticket Machines showing features with this tag",
- "value": "vending_machine"
- },
- {
- "key": "vending",
- "description": "The MapComplete theme Parking has a layer Parking Ticket Machines showing features with this tag",
- "value": "parking_tickets"
- },
- {
- "key": "id",
- "description": "Layer 'Parking Ticket Machines' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Parking') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Parking Ticket Machines allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Parking Ticket Machines allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Parking Ticket Machines allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Parking Ticket Machines allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking')",
- "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.osm.be theme 'Parking') (This is only shown if payment:coins=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "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.osm.be theme 'Parking') (This is only shown if payment:coins=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "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.osm.be theme 'Parking') (This is only shown if payment:coins=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "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.osm.be theme 'Parking') (This is only shown if payment:coins=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "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.osm.be theme 'Parking') (This is only shown if payment:coins=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "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.osm.be theme 'Parking') (This is only shown if payment:coins=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "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.osm.be theme 'Parking') (This is only shown if payment:coins=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "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.osm.be theme 'Parking') (This is only shown if payment:coins=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "value": "2 EUR"
- },
- {
- "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.osm.be theme 'Parking') (This is only shown if payment:notes=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "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.osm.be theme 'Parking') (This is only shown if payment:notes=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "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.osm.be theme 'Parking') (This is only shown if payment:notes=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "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.osm.be theme 'Parking') (This is only shown if payment:notes=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "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.osm.be theme 'Parking') (This is only shown if payment:notes=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "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.osm.be theme 'Parking') (This is only shown if payment:notes=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "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.osm.be theme 'Parking') (This is only shown if payment:notes=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "value": "500 EUR"
- },
- {
- "key": "ref",
- "description": "Layer 'Parking Ticket Machines' shows and asks freeform values for key 'ref' (in the MapComplete.osm.be theme 'Parking')"
- },
- {
- "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.osm.be theme 'Parking')",
- "value": "yes"
- }
- ]
-}
\ No newline at end of file
diff --git a/Docs/TagInfo/mapcomplete_personal.json b/Docs/TagInfo/mapcomplete_personal.json
deleted file mode 100644
index a2f77c192..000000000
--- a/Docs/TagInfo/mapcomplete_personal.json
+++ /dev/null
@@ -1,13022 +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.osm.be/personal",
- "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/",
- "icon_url": "https://mapcomplete.osm.be/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 Advertise showing features with this tag"
- },
- {
- "key": "id",
- "description": "Layer 'Advertise' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Advertise allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Advertise allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Advertise allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Advertise allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "advertising",
- "description": "Layer 'Advertise' shows and asks freeform values for key 'advertising' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "advertising",
- "description": "Layer 'Advertise' shows advertising=billboard with a fixed text, namely 'This is a billboard' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "billboard"
- },
- {
- "key": "advertising",
- "description": "Layer 'Advertise' shows advertising=board with a fixed text, namely 'This is a board' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "board"
- },
- {
- "key": "advertising",
- "description": "Layer 'Advertise' shows advertising=column with a fixed text, namely 'This is a column' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "column"
- },
- {
- "key": "advertising",
- "description": "Layer 'Advertise' shows advertising=flag with a fixed text, namely 'This is a flag' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "flag"
- },
- {
- "key": "advertising",
- "description": "Layer 'Advertise' 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.osm.be theme 'Personal theme')",
- "value": "poster_box"
- },
- {
- "key": "advertising",
- "description": "Layer 'Advertise' shows advertising=screen with a fixed text, namely 'This is a screen' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "screen"
- },
- {
- "key": "advertising",
- "description": "Layer 'Advertise' shows advertising=sculpture with a fixed text, namely 'This is a sculpture' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "sculpture"
- },
- {
- "key": "advertising",
- "description": "Layer 'Advertise' shows advertising=sign with a fixed text, namely 'This is a sign' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "sign"
- },
- {
- "key": "advertising",
- "description": "Layer 'Advertise' 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.osm.be theme 'Personal theme')",
- "value": "tarp"
- },
- {
- "key": "advertising",
- "description": "Layer 'Advertise' shows advertising=totem with a fixed text, namely 'This is a totem' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "totem"
- },
- {
- "key": "advertising",
- "description": "Layer 'Advertise' 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.osm.be theme 'Personal theme')",
- "value": "wall_painting"
- },
- {
- "key": "animated",
- "description": "Layer 'Advertise' 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.osm.be 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 'Advertise' 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.osm.be 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 'Advertise' 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.osm.be 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 'Advertise' shows animated=winding_posters with a fixed text, namely 'Scrolling posters' and allows to pick this as a default answer (in the MapComplete.osm.be 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 'Advertise' shows animated=revolving with a fixed text, namely 'Rotates on itself' and allows to pick this as a default answer (in the MapComplete.osm.be 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 'Advertise' 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.osm.be theme 'Personal theme') (This is only shown if advertising!=screen)",
- "value": "neon"
- },
- {
- "key": "lit",
- "description": "Layer 'Advertise' 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.osm.be theme 'Personal theme') (This is only shown if advertising!=screen)",
- "value": "yes"
- },
- {
- "key": "luminous",
- "description": "Layer 'Advertise' 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.osm.be theme 'Personal theme') (This is only shown if advertising!=screen)",
- "value": "yes"
- },
- {
- "key": "luminous",
- "description": "Layer 'Advertise' shows luminous=yes with a fixed text, namely 'This object emits light' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if advertising!=screen)",
- "value": "yes"
- },
- {
- "key": "lit",
- "description": "Layer 'Advertise' 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.osm.be theme 'Personal theme') (This is only shown if advertising!=screen)",
- "value": "yes"
- },
- {
- "key": "lit",
- "description": "Layer 'Advertise' 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.osm.be theme 'Personal theme') (This is only shown if advertising!=screen)",
- "value": "no"
- },
- {
- "key": "luminous",
- "description": "Layer 'Advertise' 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.osm.be theme 'Personal theme') (This is only shown if advertising!=screen)",
- "value": "no"
- },
- {
- "key": "operator",
- "description": "Layer 'Advertise' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "message",
- "description": "Layer 'Advertise' shows message=commercial with a fixed text, namely 'Commercial message' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "commercial"
- },
- {
- "key": "message",
- "description": "Layer 'Advertise' shows message=local with a fixed text, namely 'Local information' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "local"
- },
- {
- "key": "message",
- "description": "Layer 'Advertise' shows message=safety with a fixed text, namely 'Securty information' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "safety"
- },
- {
- "key": "message",
- "description": "Layer 'Advertise' shows message=political with a fixed text, namely 'Electoral advertising' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "political"
- },
- {
- "key": "message",
- "description": "Layer 'Advertise' shows message=showbiz with a fixed text, namely 'Inormation related to theatre, concerts, ...' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "showbiz"
- },
- {
- "key": "message",
- "description": "Layer 'Advertise' 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.osm.be theme 'Personal theme')",
- "value": "non_profit"
- },
- {
- "key": "message",
- "description": "Layer 'Advertise' shows message=opinion with a fixed text, namely 'To expres your opinion' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "opinion"
- },
- {
- "key": "message",
- "description": "Layer 'Advertise' shows message=religion with a fixed text, namely 'Religious message' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "religion"
- },
- {
- "key": "message",
- "description": "Layer 'Advertise' shows message=funding with a fixed text, namely 'Funding sign' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "funding"
- },
- {
- "key": "information",
- "description": "Layer 'Advertise' shows information=map with a fixed text, namely 'A map' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "map"
- },
- {
- "key": "sides",
- "description": "Layer 'Advertise' 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.osm.be theme 'Personal theme') (This is only shown if advertising=poster_box|advertising=screen|advertising=billboard)",
- "value": "1"
- },
- {
- "key": "sides",
- "description": "Layer 'Advertise' 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.osm.be theme 'Personal theme') (This is only shown if advertising=poster_box|advertising=screen|advertising=billboard)",
- "value": "2"
- },
- {
- "key": "ref",
- "description": "Layer 'Advertise' shows and asks freeform values for key 'ref' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if advertising!=sign)"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "name",
- "description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "addr:street",
- "description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'addr:street' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "addr:place",
- "description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'addr:place' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "operator",
- "description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "operator:type",
- "description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'operator:type' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "private"
- },
- {
- "key": "image",
- "description": "The layer 'Map of ambulance stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Artworks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Artworks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Artworks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Artworks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "woodcarving"
- },
- {
- "key": "artist:wikidata",
- "description": "Layer 'Artworks' shows and asks freeform values for key 'artist:wikidata' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "artist_name",
- "description": "Layer 'Artworks' shows and asks freeform values for key 'artist_name' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Artworks' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "wikidata",
- "description": "Layer 'Artworks' shows and asks freeform values for key 'wikidata' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "wikipedia",
- "description": "Layer 'Artworks' shows wikipedia~.+ with a fixed text, namely '{wikipedia():max-height:25rem}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "wikidata",
- "description": "Layer 'Artworks' shows with a fixed text, namely 'No Wikipedia page has been linked yet' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme') (This is only shown if subject:wikidata~.+)"
- },
- {
- "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.osm.be theme 'Personal theme')",
- "value": "bench"
- },
- {
- "key": "amenity",
- "description": "Layer 'Artworks' shows 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.osm.be 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.osm.be 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.osm.be 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 'Does have a backrest' and allows to pick this as a default answer (in the MapComplete.osm.be 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 'Does not have a backrest' and allows to pick this as a default answer (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if amenity=bench)"
- },
- {
- "key": "colour",
- "description": "Layer 'Artworks' shows and asks freeform values for key 'colour' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if amenity=bench)",
- "value": "yes"
- },
- {
- "key": "inscription",
- "description": "Layer 'Artworks' shows with a fixed text, namely 'This bench does (probably) not have an inscription' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme') (This is only shown if amenity=bench)",
- "value": "memorial"
- },
- {
- "key": "historic",
- "description": "Layer 'Artworks' shows 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.osm.be theme 'Personal theme') Picking this answer will delete the key historic. (This is only shown if amenity=bench)",
- "value": ""
- },
- {
- "key": "not:historic",
- "description": "Layer 'Artworks' shows 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.osm.be theme 'Personal theme') (This is only shown if amenity=bench)",
- "value": "memorial"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'ATMs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'ATMs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'ATMs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'ATMs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "brand",
- "description": "Layer 'ATMs' shows and asks freeform values for key 'brand' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "operator",
- "description": "Layer 'ATMs' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "cash_out",
- "description": "Layer 'ATMs' shows with a fixed text, namely 'You can withdraw cash from this ATM' (in the MapComplete.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "cash_in",
- "description": "Layer 'ATMs' shows with a fixed text, namely 'You probably cannot deposit cash into this ATM' (in the MapComplete.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Barriers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Barriers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Barriers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Barriers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Benches allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Benches allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Benches allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Benches allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "backrest",
- "description": "Layer 'Benches' shows backrest=yes with a fixed text, namely 'Does have a backrest' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "backrest",
- "description": "Layer 'Benches' shows backrest=no with a fixed text, namely 'Does not have a backrest' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "seats",
- "description": "Layer 'Benches' shows and asks freeform values for key 'seats' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "material",
- "description": "Layer 'Benches' shows and asks freeform values for key 'material' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "steel"
- },
- {
- "key": "direction",
- "description": "Layer 'Benches' shows and asks freeform values for key 'direction' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "yellow"
- },
- {
- "key": "survey:date",
- "description": "Layer 'Benches' shows and asks freeform values for key 'survey:date' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "inscription",
- "description": "Layer 'Benches' shows with a fixed text, namely 'This bench does (probably) not have an inscription' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme')",
- "value": "artwork"
- },
- {
- "key": "tourism",
- "description": "Layer 'Benches' shows 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if historic=memorial|inscription~.+|memorial=bench|tourism=artwork)",
- "value": "memorial"
- },
- {
- "key": "historic",
- "description": "Layer 'Benches' shows 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.osm.be 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 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Benches at public transport stops allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "name",
- "description": "Layer 'Benches at public transport stops' shows values with key 'name' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Bicycle library allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Bicycle library allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Bicycle library allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Bicycle library allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "name",
- "description": "Layer 'Bicycle library' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Bicycle library' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Bicycle library' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Bicycle library' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Bicycle library' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Bicycle library' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Bicycle library' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Bicycle library' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "charge",
- "description": "Layer 'Bicycle library' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "fee",
- "description": "Layer 'Bicycle library' shows fee=no with a fixed text, namely 'Lending a bicycle is free' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "charge",
- "description": "Layer 'Bicycle library' shows fee=no with a fixed text, namely 'Lending a bicycle is free' and allows to pick this as a default answer (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "disabled"
- },
- {
- "key": "description",
- "description": "Layer 'Bicycle library' shows and asks freeform values for key 'description' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Bicycle rental allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Bicycle rental allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Bicycle rental allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Bicycle rental allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be 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.osm.be 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 buisiness 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.osm.be 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.osm.be 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.osm.be 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 into a structure' and allows to pick this as a default answer (in the MapComplete.osm.be 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.osm.be 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 which clearly marked as being for the rental service only' and allows to pick this as a default answer (in the MapComplete.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Bicycle rental' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Bicycle rental' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Bicycle rental' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if shop~.+|opening_hours~.+)"
- },
- {
- "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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "rental",
- "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'rental' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "bike_helmet"
- },
- {
- "key": "capacity:city_bike",
- "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:city_bike' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if rental~^(.*tandem_bicycle.*)$)"
- },
- {
- "key": "amenity",
- "description": "The MapComplete theme Personal theme has a layer Bicycle tube vending machine showing features with this tag",
- "value": "vending_machine"
- },
- {
- "key": "vending",
- "description": "The MapComplete theme Personal theme has a layer Bicycle tube vending machine showing features with this tag"
- },
- {
- "key": "id",
- "description": "Layer 'Bicycle tube vending machine' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Bicycle tube vending machine allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Bicycle tube vending machine allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Bicycle tube vending machine allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Bicycle tube vending machine allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "operational_status",
- "description": "Layer 'Bicycle tube vending machine' shows and asks freeform values for key 'operational_status' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "operational_status",
- "description": "Layer 'Bicycle tube vending machine' shows with a fixed text, namely 'This vending machine works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key operational_status.",
- "value": ""
- },
- {
- "key": "operational_status",
- "description": "Layer 'Bicycle tube vending machine' shows operational_status=broken with a fixed text, namely 'This vending machine is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "broken"
- },
- {
- "key": "operational_status",
- "description": "Layer 'Bicycle tube vending machine' shows operational_status=closed with a fixed text, namely 'This vending machine is closed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "closed"
- },
- {
- "key": "charge",
- "description": "Layer 'Bicycle tube vending machine' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "payment:coins",
- "description": "Layer 'Bicycle tube vending machine' shows payment:coins=yes with a fixed text, namely 'Payment with coins is possible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "payment:notes",
- "description": "Layer 'Bicycle tube vending machine' shows payment:notes=yes with a fixed text, namely 'Payment with notes is possible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "payment:cards",
- "description": "Layer 'Bicycle tube vending machine' shows payment:cards=yes with a fixed text, namely 'Payment with cards is possible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "brand",
- "description": "Layer 'Bicycle tube vending machine' shows and asks freeform values for key 'brand' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "brand",
- "description": "Layer 'Bicycle tube vending machine' shows brand=Continental with a fixed text, namely 'Continental tubes are sold here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "Continental"
- },
- {
- "key": "brand",
- "description": "Layer 'Bicycle tube vending machine' shows brand=Schwalbe with a fixed text, namely 'Schwalbe tubes are sold here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "Schwalbe"
- },
- {
- "key": "operator",
- "description": "Layer 'Bicycle tube vending machine' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "operator",
- "description": "Layer 'Bicycle tube vending machine' shows operator=Schwalbe with a fixed text, namely 'Maintained by Schwalbe' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "Schwalbe"
- },
- {
- "key": "operator",
- "description": "Layer 'Bicycle tube vending machine' shows operator=Continental with a fixed text, namely 'Maintained by Continental' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "Continental"
- },
- {
- "key": "vending:bicycle_light",
- "description": "Layer 'Bicycle tube vending machine' shows vending:bicycle_light=yes with a fixed text, namely 'Bicycle lights are sold here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "vending:gloves",
- "description": "Layer 'Bicycle tube vending machine' shows vending:gloves=yes with a fixed text, namely 'Gloves are sold here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "vending:bicycle_repair_kit",
- "description": "Layer 'Bicycle tube vending machine' shows vending:bicycle_repair_kit=yes with a fixed text, namely 'Bicycle repair kits are sold here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "vending:bicycle_pump",
- "description": "Layer 'Bicycle tube vending machine' shows vending:bicycle_pump=yes with a fixed text, namely 'Bicycle pumps are sold here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "vending:bicycle_lock",
- "description": "Layer 'Bicycle tube vending machine' shows vending:bicycle_lock=yes with a fixed text, namely 'Bicycle locks are sold here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Bike cafe allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Bike cafe allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Bike cafe allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Bike cafe allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "name",
- "description": "Layer 'Bike cafe' shows and asks freeform values for key 'name' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "website",
- "description": "Layer 'Bike cafe' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Bike cafe' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Bike cafe' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Bike cafe' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Bike cafe' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Bike cafe' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Bike cafe' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Bike cleaning service allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Bike cleaning service allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Bike cleaning service allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Bike cleaning service allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Personal theme') (This is only shown if amenity!=bike_wash&amenity!=bicycle_wash)"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if amenity!=bike_wash&amenity!=bicycle_wash)",
- "value": "no"
- },
- {
- "key": "service:bicycle:cleaning:fee",
- "description": "Layer 'Bike cleaning service' shows service:bicycle:cleaning:fee=yes with a fixed text, namely 'Free to use' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if amenity!=bike_wash&amenity!=bicycle_wash)",
- "value": "yes"
- },
- {
- "key": "service:bicycle:cleaning:charge",
- "description": "Layer 'Bike cleaning service' shows service:bicycle:cleaning:fee=yes with a fixed text, namely 'Free to use' (in the MapComplete.osm.be 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)",
- "value": ""
- },
- {
- "key": "charge",
- "description": "Layer 'Bike cleaning service' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be 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.osm.be 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 'This cleaning service is paid' and allows to pick this as a default answer (in the MapComplete.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Bike parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Bike parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Bike parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Bike parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "bicycle_parking",
- "description": "Layer 'Bike parking' shows bicycle_parking=stands with a fixed text, namely 'Staple racks' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "stands"
- },
- {
- "key": "bicycle_parking",
- "description": "Layer 'Bike parking' shows bicycle_parking=wall_loops with a fixed text, namely 'Wheel rack/loops' and allows to pick this as a default answer (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "floor"
- },
- {
- "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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "rooftop"
- },
- {
- "key": "location",
- "description": "Layer 'Bike parking' shows with a fixed text, namely 'Surface level parking' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "access",
- "description": "Layer 'Bike parking' shows and asks freeform values for key 'access' (in the MapComplete.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "customers"
- },
- {
- "key": "access",
- "description": "Layer 'Bike parking' shows access=private 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.osm.be theme 'Personal theme')",
- "value": "private"
- },
- {
- "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.osm.be 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.osm.be 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' and allows to pick this as a default answer (in the MapComplete.osm.be 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.osm.be theme 'Personal theme') (This is only shown if cargo_bike~^(designated|yes)$)"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Bicycle pump and repair allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "24/7"
- },
- {
- "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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "operator",
- "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "location",
- "description": "Layer 'Bicycle pump and repair' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Bicycle pump and repair' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key level.",
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "value": "-1"
- },
- {
- "key": "shop",
- "description": "The MapComplete theme Personal theme has a layer Bike repair/shop showing features with this tag",
- "value": "bicycle"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Bike repair/shop allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Bike repair/shop allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Bike repair/shop allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Bike repair/shop allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "shop",
- "description": "Layer 'Bike repair/shop' shows shop=rental with a fixed text, namely 'This business focuses on rental' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if shop~.+&shop!~^(bicycle)$&shop!~^(sports)$)",
- "value": "rental"
- },
- {
- "key": "name",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Bike repair/shop' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Bike repair/shop' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Bike repair/shop' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "access",
- "description": "Layer 'Bike repair/shop' shows values with key 'access' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "service:bicycle:retail",
- "description": "Layer 'Bike repair/shop' shows service:bicycle:retail=yes with a fixed text, namely 'This shop sells bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "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 bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "rental",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'rental' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if service:bicycle:rental=yes)"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if service:bicycle:rental=yes)",
- "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.osm.be theme 'Personal theme') (This is only shown if service:bicycle:rental=yes)",
- "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.osm.be theme 'Personal theme') (This is only shown if service:bicycle:rental=yes)",
- "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.osm.be theme 'Personal theme') (This is only shown if service:bicycle:rental=yes)",
- "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.osm.be theme 'Personal theme') (This is only shown if service:bicycle:rental=yes)",
- "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.osm.be theme 'Personal theme') (This is only shown if service:bicycle:rental=yes)",
- "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.osm.be theme 'Personal theme') (This is only shown if service:bicycle:rental=yes)",
- "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.osm.be theme 'Personal theme') (This is only shown if service:bicycle:rental=yes)",
- "value": "bike_helmet"
- },
- {
- "key": "capacity:city_bike",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:city_bike' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if rental~^(.*city_bike.*)$&service:bicycle:rental=yes)"
- },
- {
- "key": "capacity:ebike",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:ebike' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if rental~^(.*ebike.*)$&service:bicycle:rental=yes)"
- },
- {
- "key": "capacity:kid_bike",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:kid_bike' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if rental~^(.*kid_bike.*)$&service:bicycle:rental=yes)"
- },
- {
- "key": "capacity:bmx",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:bmx' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if rental~^(.*bmx.*)$&service:bicycle:rental=yes)"
- },
- {
- "key": "capacity:mtb",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:mtb' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if rental~^(.*mtb.*)$&service:bicycle:rental=yes)"
- },
- {
- "key": "capacity:bicycle_pannier",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:bicycle_pannier' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if rental~^(.*bicycle_pannier.*)$&service:bicycle:rental=yes)"
- },
- {
- "key": "capacity:tandem_bicycle",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:tandem_bicycle' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if rental~^(.*tandem_bicycle.*)$&service:bicycle:rental=yes)"
- },
- {
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "value": "only"
- },
- {
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "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 repair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "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 repair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "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 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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme') (This is only shown if amenity!=bike_wash&amenity!=bicycle_wash)"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if amenity!=bike_wash&amenity!=bicycle_wash)",
- "value": "no"
- },
- {
- "key": "service:bicycle:cleaning:fee",
- "description": "Layer 'Bike repair/shop' shows service:bicycle:cleaning:fee=yes with a fixed text, namely 'Free to use' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if amenity!=bike_wash&amenity!=bicycle_wash)",
- "value": "yes"
- },
- {
- "key": "service:bicycle:cleaning:charge",
- "description": "Layer 'Bike repair/shop' shows service:bicycle:cleaning:fee=yes with a fixed text, namely 'Free to use' (in the MapComplete.osm.be 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)",
- "value": ""
- },
- {
- "key": "description",
- "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'description' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Bike-related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Bike-related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Bike-related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Bike-related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Bike-related object' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Bike-related object' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Bike-related object' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Bike-related object' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Bike-related object' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Bike-related object' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Bike-related object' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Binoculars allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Binoculars allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Binoculars allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Binoculars allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "charge",
- "description": "Layer 'Binoculars' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "fee",
- "description": "Layer 'Binoculars' shows fee=no with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "charge",
- "description": "Layer 'Binoculars' shows fee=no with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the MapComplete.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Bird watching places allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Bird watching places allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Bird watching places allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Bird watching places allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "shelter",
- "description": "Layer 'Bird watching places' shows shelter=no with a fixed text, namely 'Bird blind' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "building",
- "description": "Layer 'Bird watching places' shows shelter=no with a fixed text, namely 'Bird blind' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key building.",
- "value": ""
- },
- {
- "key": "amenity",
- "description": "Layer 'Bird watching places' shows shelter=no with a fixed text, namely 'Bird blind' and allows to pick this as a default answer (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "operator",
- "description": "Layer 'Bird watching places' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "location",
- "description": "Layer 'Cafés and pubs' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Cafés and pubs' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key level.",
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "value": "-1"
- },
- {
- "key": "name",
- "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'name' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'website' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'email' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Cafés and pubs' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "unleashed"
- },
- {
- "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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "wired"
- },
- {
- "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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if internet_access=wlan)",
- "value": "Telekom"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Charging stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Charging stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Charging stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Charging stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "access",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'access' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "access",
- "description": "Layer 'Charging stations' shows access=permissive|access=public with a fixed text, namely 'Anyone can use this charging station (payment might be needed)' (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "permissive"
- },
- {
- "key": "access",
- "description": "Layer 'Charging stations' shows access=permissive|access=public with a fixed text, namely 'Anyone can use this charging station (payment might be needed)' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "private"
- },
- {
- "key": "capacity",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "socket:schuko",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if socket:schuko~.+&socket:schuko!=0)"
- },
- {
- "key": "socket:typee",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if socket:typee~.+&socket:typee!=0)"
- },
- {
- "key": "socket:chademo",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if socket:chademo~.+&socket:chademo!=0)"
- },
- {
- "key": "socket:type1_cable",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if socket:type1_cable~.+&socket:type1_cable!=0)"
- },
- {
- "key": "socket:type1",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if socket:type1~.+&socket:type1!=0)"
- },
- {
- "key": "socket:type1_combo",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if socket:type1_combo~.+&socket:type1_combo!=0)"
- },
- {
- "key": "socket:tesla_supercharger",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if socket:tesla_supercharger~.+&socket:tesla_supercharger!=0)"
- },
- {
- "key": "socket:type2",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if socket:type2~.+&socket:type2!=0)"
- },
- {
- "key": "socket:type2_combo",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if socket:type2_combo~.+&socket:type2_combo!=0)"
- },
- {
- "key": "socket:type2_cable",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if socket:type2_cable~.+&socket:type2_cable!=0)"
- },
- {
- "key": "socket:tesla_supercharger_ccs",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if socket:tesla_supercharger_ccs~.+&socket:tesla_supercharger_ccs!=0)"
- },
- {
- "key": "socket:tesla_destination",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if socket:tesla_destination~.+&socket:tesla_destination!=0)"
- },
- {
- "key": "socket:tesla_destination",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if socket:tesla_destination~.+&socket:tesla_destination!=0)"
- },
- {
- "key": "socket:USB-A",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if socket:USB-A~.+&socket:USB-A!=0)"
- },
- {
- "key": "socket:bosch_3pin",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme') (This is only shown if socket:bosch_5pin~.+&socket:bosch_5pin!=0)"
- },
- {
- "key": "socket:schuko:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko:voltage' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if socket:schuko~.+&socket:schuko!=0)",
- "value": "3.6 kW"
- },
- {
- "key": "socket:typee:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee:voltage' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if socket:typee~.+&socket:typee!=0)",
- "value": "22 kW"
- },
- {
- "key": "socket:chademo:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo:voltage' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if socket:chademo~.+&socket:chademo!=0)",
- "value": "50 kW"
- },
- {
- "key": "socket:type1_cable:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable:voltage' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if socket:type1_cable~.+&socket:type1_cable!=0)",
- "value": "7 kW"
- },
- {
- "key": "socket:type1:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1:voltage' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if socket:type1~.+&socket:type1!=0)",
- "value": "7.2 kW"
- },
- {
- "key": "socket:type1_combo:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo:voltage' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if socket:type1_combo~.+&socket:type1_combo!=0)",
- "value": "350 kW"
- },
- {
- "key": "socket:tesla_supercharger:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger:voltage' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if socket:tesla_supercharger~.+&socket:tesla_supercharger!=0)",
- "value": "250 kW"
- },
- {
- "key": "socket:type2:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2:voltage' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if socket:type2~.+&socket:type2!=0)",
- "value": "22 kW"
- },
- {
- "key": "socket:type2_combo:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo:voltage' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if socket:type2_combo~.+&socket:type2_combo!=0)",
- "value": "50 kW"
- },
- {
- "key": "socket:type2_cable:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable:voltage' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if socket:type2_cable~.+&socket:type2_cable!=0)",
- "value": "22 kW"
- },
- {
- "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.osm.be 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 Type 2 CSS) outputs 500 volt' and allows to pick this as a default answer (in the MapComplete.osm.be 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 Type 2 CSS) outputs 920 volt' and allows to pick this as a default answer (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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 Type 2 CSS) outputs at most 50 kw A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if socket:tesla_supercharger_ccs~.+&socket:tesla_supercharger_ccs!=0)",
- "value": "50 kW"
- },
- {
- "key": "socket:tesla_destination:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:voltage' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if socket:tesla_destination~.+&socket:tesla_destination!=0)",
- "value": "250 kW"
- },
- {
- "key": "socket:tesla_destination:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:voltage' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if socket:tesla_destination~.+&socket:tesla_destination!=0)",
- "value": "22 kW"
- },
- {
- "key": "socket:USB-A:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A:voltage' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if socket:USB-A~.+&socket:USB-A!=0)",
- "value": "10W"
- },
- {
- "key": "socket:bosch_3pin:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin:voltage' (in the MapComplete.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if socket:bosch_3pin~.+&socket:bosch_3pin!=0)"
- },
- {
- "key": "socket:bosch_5pin:voltage",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin:voltage' (in the MapComplete.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if socket:bosch_5pin~.+&socket:bosch_5pin!=0)"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme')",
- "value": "24/7"
- },
- {
- "key": "fee",
- "description": "Layer 'Charging stations' shows fee=no&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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "fee:conditional",
- "description": "Layer 'Charging stations' shows fee=no&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.osm.be theme 'Personal theme') Picking this answer will delete the key fee:conditional.",
- "value": ""
- },
- {
- "key": "charge",
- "description": "Layer 'Charging stations' shows fee=no&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.osm.be theme 'Personal theme') Picking this answer will delete the key charge.",
- "value": ""
- },
- {
- "key": "authentication:none",
- "description": "Layer 'Charging stations' shows fee=no&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.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "fee",
- "description": "Layer 'Charging stations' shows fee=no&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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "fee:conditional",
- "description": "Layer 'Charging stations' shows fee=no&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.osm.be theme 'Personal theme') Picking this answer will delete the key fee:conditional.",
- "value": ""
- },
- {
- "key": "charge",
- "description": "Layer 'Charging stations' shows fee=no&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.osm.be theme 'Personal theme') Picking this answer will delete the key charge.",
- "value": ""
- },
- {
- "key": "authentication:none",
- "description": "Layer 'Charging stations' shows fee=no&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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no @ customers"
- },
- {
- "key": "fee",
- "description": "Layer 'Charging stations' shows fee=yes with a fixed text, namely 'Paid use' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "fee:conditional",
- "description": "Layer 'Charging stations' shows fee=yes with a fixed text, namely 'Paid use' and allows to pick this as a default answer (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if fee=no|)",
- "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.osm.be theme 'Personal theme') (This is only shown if fee=no|)",
- "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.osm.be theme 'Personal theme') (This is only shown if fee=no|)",
- "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.osm.be theme 'Personal theme') (This is only shown if fee=no|)",
- "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.osm.be theme 'Personal theme') (This is only shown if fee=no|)",
- "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.osm.be theme 'Personal theme') (This is only shown if fee=no|)",
- "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.osm.be theme 'Personal theme') (This is only shown if fee=no|)",
- "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.osm.be theme 'Personal theme') (This is only shown if fee=no|)",
- "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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "Tesla"
- },
- {
- "key": "operator",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "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.osm.be theme 'Personal theme') Picking this answer will delete the key network.",
- "value": ""
- },
- {
- "key": "phone",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "level",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "location",
- "description": "Layer 'Charging stations' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Charging stations' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key level.",
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "value": "-1"
- },
- {
- "key": "ref",
- "description": "Layer 'Charging stations' shows and asks freeform values for key 'ref' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if network~.+)"
- },
- {
- "key": "planned:amenity",
- "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key planned:amenity.",
- "value": ""
- },
- {
- "key": "construction:amenity",
- "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key construction:amenity.",
- "value": ""
- },
- {
- "key": "disused:amenity",
- "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key disused:amenity.",
- "value": ""
- },
- {
- "key": "operational_status",
- "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key operational_status.",
- "value": ""
- },
- {
- "key": "amenity",
- "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "charging_station"
- },
- {
- "key": "planned:amenity",
- "description": "Layer 'Charging stations' shows 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.osm.be theme 'Personal theme') Picking this answer will delete the key planned:amenity.",
- "value": ""
- },
- {
- "key": "construction:amenity",
- "description": "Layer 'Charging stations' shows 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.osm.be theme 'Personal theme') Picking this answer will delete the key construction:amenity.",
- "value": ""
- },
- {
- "key": "disused:amenity",
- "description": "Layer 'Charging stations' shows 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.osm.be theme 'Personal theme') Picking this answer will delete the key disused:amenity.",
- "value": ""
- },
- {
- "key": "operational_status",
- "description": "Layer 'Charging stations' shows 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.osm.be theme 'Personal theme')",
- "value": "broken"
- },
- {
- "key": "amenity",
- "description": "Layer 'Charging stations' shows 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.osm.be theme 'Personal theme')",
- "value": "charging_station"
- },
- {
- "key": "planned:amenity",
- "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "charging_station"
- },
- {
- "key": "construction:amenity",
- "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be 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 with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be 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 with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key operational_status.",
- "value": ""
- },
- {
- "key": "amenity",
- "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key amenity.",
- "value": ""
- },
- {
- "key": "planned:amenity",
- "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key planned:amenity.",
- "value": ""
- },
- {
- "key": "construction:amenity",
- "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "charging_station"
- },
- {
- "key": "disused:amenity",
- "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key disused:amenity.",
- "value": ""
- },
- {
- "key": "operational_status",
- "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key operational_status.",
- "value": ""
- },
- {
- "key": "amenity",
- "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key amenity.",
- "value": ""
- },
- {
- "key": "planned:amenity",
- "description": "Layer 'Charging stations' shows disused:amenity=charging_station 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.osm.be theme 'Personal theme') Picking this answer will delete the key planned:amenity.",
- "value": ""
- },
- {
- "key": "construction:amenity",
- "description": "Layer 'Charging stations' shows disused:amenity=charging_station 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.osm.be theme 'Personal theme') Picking this answer will delete the key construction:amenity.",
- "value": ""
- },
- {
- "key": "disused:amenity",
- "description": "Layer 'Charging stations' shows disused:amenity=charging_station 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.osm.be theme 'Personal theme')",
- "value": "charging_station"
- },
- {
- "key": "operational_status",
- "description": "Layer 'Charging stations' shows disused:amenity=charging_station 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.osm.be theme 'Personal theme') Picking this answer will delete the key operational_status.",
- "value": ""
- },
- {
- "key": "amenity",
- "description": "Layer 'Charging stations' shows disused:amenity=charging_station 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if motor_vehicle=yes|hgv=yes|bus=yes|bicycle=no|)",
- "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.osm.be theme 'Personal theme') (This is only shown if motor_vehicle=yes|hgv=yes|bus=yes|bicycle=no|)",
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Climbing opportunities allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Climbing opportunities allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Climbing opportunities allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Climbing opportunities allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "name",
- "description": "Layer 'Climbing opportunities' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "noname",
- "description": "Layer 'Climbing opportunities' shows noname=yes 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.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "name",
- "description": "Layer 'Climbing opportunities' shows noname=yes 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "area"
- },
- {
- "key": "rock",
- "description": "Layer 'Climbing opportunities' shows and asks freeform values for key 'rock' (in the MapComplete.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if leisure!~^(sports_centre)$&sport=climbing)"
- },
- {
- "key": "charge",
- "description": "Layer 'Climbing opportunities' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "fee",
- "description": "Layer 'Climbing opportunities' shows fee=yes 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.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "charge",
- "description": "Layer 'Climbing opportunities' shows fee=yes 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "climbing:boulder",
- "description": "Layer 'Climbing opportunities' shows climbing:boulder=limited with a fixed text, namely 'Bouldering is possible, allthough there are only a few routes' and allows to pick this as a default answer (in the MapComplete.osm.be 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 routes' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "name",
- "description": "Layer 'Climbing club' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Climbing club' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Climbing club' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Climbing club' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Climbing club' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Climbing club' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Climbing club' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Climbing club' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Climbing gyms allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Climbing gyms allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Climbing gyms allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Climbing gyms allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "name",
- "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Climbing gyms' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Climbing gyms' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Climbing gyms' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "charge",
- "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "fee",
- "description": "Layer 'Climbing gyms' shows fee=yes 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.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "charge",
- "description": "Layer 'Climbing gyms' shows fee=yes 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.osm.be theme 'Personal theme') Picking this answer will delete the key charge.",
- "value": ""
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "service:rental:climbing_shoes",
- "description": "Layer 'Climbing gyms' shows service:rental:climbing_shoes=yes with a fixed text, namely 'Climbing shoes can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "service:rental:climbing_shoes",
- "description": "Layer 'Climbing gyms' shows service:rental:climbing_shoes=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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "service:rental:climbing_harness",
- "description": "Layer 'Climbing gyms' shows service:rental:climbing_harness=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.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "service:rental:climbing_harness",
- "description": "Layer 'Climbing gyms' shows service:rental:climbing_harness=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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "climbing:length",
- "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'climbing:length' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if climbing!~^(route)$&climbing:sport=yes|sport=climbing)"
- },
- {
- "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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "climbing:boulder",
- "description": "Layer 'Climbing gyms' shows climbing:boulder=limited with a fixed text, namely 'Bouldering is possible, allthough there are only a few routes' and allows to pick this as a default answer (in the MapComplete.osm.be 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 routes' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "climbing:bolts:max",
- "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'climbing:bolts:max' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if climbing:sport=yes)"
- },
- {
- "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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Climbing routes allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Climbing routes allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Climbing routes allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Climbing routes allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "name",
- "description": "Layer 'Climbing routes' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "noname",
- "description": "Layer 'Climbing routes' shows noname=yes 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.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "name",
- "description": "Layer 'Climbing routes' shows noname=yes 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.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "climbing:grade:french",
- "description": "Layer 'Climbing routes' shows and asks freeform values for key 'climbing:grade:french' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "climbing:bolts",
- "description": "Layer 'Climbing routes' shows and asks freeform values for key 'climbing:bolts' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "description",
- "description": "Layer 'Climbing routes' shows and asks freeform values for key 'description' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Clocks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Clocks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Clocks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Clocks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "date",
- "description": "Layer 'Clocks' shows with a fixed text, namely 'This clock does probably not display the date' (in the MapComplete.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "thermometer",
- "description": "Layer 'Clocks' shows with a fixed text, namely 'This clock does probably not display the temperature' (in the MapComplete.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "barometer",
- "description": "Layer 'Clocks' shows with a fixed text, namely 'This clock does probably not display the air pressure' (in the MapComplete.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "hygrometer",
- "description": "Layer 'Clocks' shows with a fixed text, namely 'This clock does probably not display the humidity' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Crossings allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Crossings allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Crossings allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Crossings allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if crossing=uncontrolled)",
- "value": "zebra"
- },
- {
- "key": "crossing_ref",
- "description": "Layer 'Crossings' shows with a fixed text, namely 'This is not a zebra crossing' and allows to pick this as a default answer (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if highway!=cycleway&highway!=path&highway!=footway)",
- "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.osm.be theme 'Personal theme') (This is only shown if highway!=cycleway&highway!=path&highway!=footway)",
- "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.osm.be theme 'Personal theme') (This is only shown if highway!=cycleway&highway!=path&highway!=footway)",
- "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.osm.be theme 'Personal theme') (This is only shown if highway!=cycleway&highway!=path&highway!=footway)",
- "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.osm.be theme 'Personal theme') (This is only shown if highway!=cycleway&highway!=path&highway!=footway)",
- "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.osm.be theme 'Personal theme') (This is only shown if highway!=cycleway&highway!=path&highway!=footway)",
- "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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if highway!=cycleway&highway!=path&highway!=footway)",
- "value": "yes"
- },
- {
- "key": "cyclestreet",
- "description": "Layer 'Cycleways and roads' shows with a fixed text, namely 'This is not a cyclestreet.' and allows to pick this as a default answer (in the MapComplete.osm.be 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.osm.be theme 'Personal theme') (This is only shown if highway!=cycleway&highway!=path&highway!=footway)"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if highway!=cycleway&highway!=path&highway!=footway)",
- "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.osm.be theme 'Personal theme') (This is only shown if highway!=cycleway&highway!=path&highway!=footway)",
- "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.osm.be theme 'Personal theme') (This is only shown if highway!=cycleway&highway!=path&highway!=footway)",
- "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.osm.be theme 'Personal theme') (This is only shown if highway!=cycleway&highway!=path&highway!=footway)",
- "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.osm.be theme 'Personal theme') (This is only shown if highway!=cycleway&highway!=path&highway!=footway)",
- "value": "90"
- },
- {
- "key": "cycleway:surface",
- "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'cycleway:surface' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if cycleway=shared_lane|cycleway=lane|cycleway=track)",
- "value": "ground"
- },
- {
- "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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Defibrillators allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Defibrillators allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Defibrillators allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Defibrillators allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "access",
- "description": "Layer 'Defibrillators' shows and asks freeform values for key 'access' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "access",
- "description": "Layer 'Defibrillators' shows access=public with a fixed text, namely 'Publicly accessible' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "defibrillator",
- "description": "Layer 'Defibrillators' shows with a fixed text, namely 'There is no info about the type of device' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "defibrillator:location:en",
- "description": "Layer 'Defibrillators' shows and asks freeform values for key 'defibrillator:location:en' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "defibrillator:location:fr",
- "description": "Layer 'Defibrillators' shows and asks freeform values for key 'defibrillator:location:fr' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "ref",
- "description": "Layer 'Defibrillators' shows and asks freeform values for key 'ref' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Defibrillators' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Defibrillators' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Defibrillators' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme')",
- "value": "24/7"
- },
- {
- "key": "description",
- "description": "Layer 'Defibrillators' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "survey:date",
- "description": "Layer 'Defibrillators' shows and asks freeform values for key 'survey:date' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Dentist allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Dentist allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Dentist allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Dentist allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Dentist' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Dentist' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Dentist' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Dentist' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Dentist' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Dentist' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "name",
- "description": "Layer 'Dentist' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "camera:direction",
- "description": "The MapComplete theme Personal theme has a layer Direction visualization showing features with this tag"
- },
- {
- "key": "direction",
- "description": "The MapComplete theme Personal theme has a layer Direction visualization showing features with this tag"
- },
- {
- "key": "id",
- "description": "Layer 'Direction visualization' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Doctors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Doctors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Doctors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Doctors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "name",
- "description": "Layer 'Doctors' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Doctors' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be 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.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Doctors' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Doctors' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Doctors' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Doctors' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Doctors' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Doctors' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "healthcare:speciality",
- "description": "Layer 'Doctors' shows and asks freeform values for key 'healthcare:speciality' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "shared"
- },
- {
- "key": "name",
- "description": "Layer 'dog parks' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "image",
- "description": "The layer 'dog parks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'dog parks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'dog parks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'dog parks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "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": "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Drinking water allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Drinking water allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Drinking water allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Drinking water allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "operational_status",
- "description": "Layer 'Drinking water' shows with a fixed text, namely 'This drinking water works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key operational_status.",
- "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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "closed"
- },
- {
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Elevator allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Elevator allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Elevator allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Elevator allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "level",
- "description": "Layer 'Elevator' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "location",
- "description": "Layer 'Elevator' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Elevator' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key level.",
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "ok"
- },
- {
- "key": "operational_status",
- "description": "Layer 'Elevator' shows with a fixed text, namely 'This elevator works' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "elevator:width",
- "description": "Layer 'Elevator' shows and asks freeform values for key 'elevator:width' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "elevator:depth",
- "description": "Layer 'Elevator' shows and asks freeform values for key 'elevator:depth' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "level",
- "description": "Layer 'Entrance' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "location",
- "description": "Layer 'Entrance' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Entrance' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key level.",
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "value": "-1"
- },
- {
- "key": "entrance",
- "description": "Layer 'Entrance' shows entrance=yes with a fixed text, namely 'No specific entrance type is known' (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "entrance",
- "description": "Layer 'Entrance' shows 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.osm.be theme 'Personal theme') Picking this answer will delete the key entrance.",
- "value": ""
- },
- {
- "key": "indoor",
- "description": "Layer 'Entrance' shows 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.osm.be theme 'Personal theme')",
- "value": "door"
- },
- {
- "key": "indoor",
- "description": "Layer 'Entrance' shows entrance=main with a fixed text, namely 'This is the main entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key indoor.",
- "value": ""
- },
- {
- "key": "entrance",
- "description": "Layer 'Entrance' shows entrance=main with a fixed text, namely 'This is the main entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "main"
- },
- {
- "key": "indoor",
- "description": "Layer 'Entrance' shows entrance=secondary with a fixed text, namely 'This is a secondary entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key indoor.",
- "value": ""
- },
- {
- "key": "entrance",
- "description": "Layer 'Entrance' shows entrance=secondary with a fixed text, namely 'This is a secondary entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "secondary"
- },
- {
- "key": "indoor",
- "description": "Layer 'Entrance' shows 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.osm.be theme 'Personal theme') Picking this answer will delete the key indoor.",
- "value": ""
- },
- {
- "key": "entrance",
- "description": "Layer 'Entrance' shows 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.osm.be theme 'Personal theme')",
- "value": "service"
- },
- {
- "key": "indoor",
- "description": "Layer 'Entrance' shows 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.osm.be theme 'Personal theme') Picking this answer will delete the key indoor.",
- "value": ""
- },
- {
- "key": "entrance",
- "description": "Layer 'Entrance' shows 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.osm.be theme 'Personal theme')",
- "value": "exit"
- },
- {
- "key": "indoor",
- "description": "Layer 'Entrance' shows 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.osm.be theme 'Personal theme') Picking this answer will delete the key indoor.",
- "value": ""
- },
- {
- "key": "entrance",
- "description": "Layer 'Entrance' shows 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.osm.be theme 'Personal theme')",
- "value": "entrance"
- },
- {
- "key": "indoor",
- "description": "Layer 'Entrance' shows entrance=emergency with a fixed text, namely 'This is emergency exit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key indoor.",
- "value": ""
- },
- {
- "key": "entrance",
- "description": "Layer 'Entrance' shows entrance=emergency with a fixed text, namely 'This is emergency exit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "emergency"
- },
- {
- "key": "indoor",
- "description": "Layer 'Entrance' shows 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.osm.be theme 'Personal theme') Picking this answer will delete the key indoor.",
- "value": ""
- },
- {
- "key": "entrance",
- "description": "Layer 'Entrance' shows 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "kerb:height",
- "description": "Layer 'Entrance' shows and asks freeform values for key 'kerb:height' (in the MapComplete.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Has etymology shows images based on the keys image, image:0, image:1,... and wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Has etymology shows images based on the keys image, image:0, image:1,... and wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Has etymology shows images based on the keys image, image:0, image:1,... and wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Has etymology shows images based on the keys image, image:0, image:1,... and 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if name:etymology~.+|)"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if name:etymology~.+|)",
- "value": "unknown"
- },
- {
- "key": "image",
- "description": "The layer 'Has etymology allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Has etymology allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Has etymology allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Has etymology allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "location",
- "description": "Layer 'Map of fire extinguishers' shows and asks freeform values for key 'location' (in the MapComplete.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "outdoor"
- },
- {
- "key": "image",
- "description": "The layer 'Map of fire extinguishers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "name",
- "description": "Layer 'Map of fire stations' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "addr:street",
- "description": "Layer 'Map of fire stations' shows and asks freeform values for key 'addr:street' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "addr:place",
- "description": "Layer 'Map of fire stations' shows and asks freeform values for key 'addr:place' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "operator",
- "description": "Layer 'Map of fire stations' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "private"
- },
- {
- "key": "image",
- "description": "The layer 'Map of fire stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "name",
- "description": "Layer 'Fitness Centres' shows and asks freeform values for key 'name' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "image",
- "description": "The layer 'Fitness Centres allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Fitness Centres allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Fitness Centres allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Fitness Centres allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "phone",
- "description": "Layer 'Fitness Centres' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Fitness Centres' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Fitness Centres' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Fitness Centres' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Fitness Centres' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Fitness Centres' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Fitness Centres' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "level",
- "description": "Layer 'Fitness Centres' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "location",
- "description": "Layer 'Fitness Centres' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Fitness Centres' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key level.",
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Fitness Stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Fitness Stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Fitness Stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Fitness Stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "name",
- "description": "Layer 'Fitness Stations' shows and asks freeform values for key 'name' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "slackline"
- },
- {
- "key": "operator",
- "description": "Layer 'Fitness Stations' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Fitness Stations' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "level",
- "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "location",
- "description": "Layer 'Restaurants and fast food' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Restaurants and fast food' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key level.",
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "value": "-1"
- },
- {
- "key": "name",
- "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "amenity",
- "description": "Layer 'Restaurants and fast food' shows amenity=fast_food with a fixed text, namely 'This is a fastfood-business, focused on fast service. If seating is available, these are rather limited and functional.' and allows to pick this as a default answer (in the MapComplete.osm.be 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.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'website' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'email' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Restaurants and fast food' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'cuisine' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=pizza with a fixed text, namely 'This is a pizzeria' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "pizza"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=friture with a fixed text, namely 'This is a friture' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "friture"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=pasta with a fixed text, namely 'Mainly serves pasta' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "pasta"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=kebab with a fixed text, namely 'This is kebab shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "kebab"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=sandwich with a fixed text, namely 'This is a sandwichbar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "sandwich"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=burger with a fixed text, namely 'Burgers are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "burger"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=sushi with a fixed text, namely 'Sushi is served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "sushi"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=coffee with a fixed text, namely 'Coffee is served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "coffee"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=italian with a fixed text, namely 'This is an italian restaurant (which serves more then pasta and pizza)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "italian"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=french with a fixed text, namely 'French dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "french"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=chinese with a fixed text, namely 'Chinese dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "chinese"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=greek with a fixed text, namely 'Greek dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "greek"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=indian with a fixed text, namely 'Indian dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "indian"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=turkish with a fixed text, namely 'Turkish dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "turkish"
- },
- {
- "key": "cuisine",
- "description": "Layer 'Restaurants and fast food' shows cuisine=thai with a fixed text, namely 'Thai dishes are served here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "thai"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if amenity=restaurant)",
- "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.osm.be theme 'Personal theme') (This is only shown if amenity=restaurant)",
- "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.osm.be theme 'Personal theme') (This is only shown if amenity=restaurant)",
- "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.osm.be theme 'Personal theme') (This is only shown if amenity=restaurant)",
- "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.osm.be 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.osm.be 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.osm.be 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 (eventually via a third party)' and allows to pick this as a default answer (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if cuisine!=friture)",
- "value": "only"
- },
- {
- "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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if cuisine!=friture)",
- "value": "only"
- },
- {
- "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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if cuisine=friture)",
- "value": "no"
- },
- {
- "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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if cuisine=friture)",
- "value": "only"
- },
- {
- "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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "unleashed"
- },
- {
- "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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "wired"
- },
- {
- "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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if internet_access=wlan)",
- "value": "Telekom"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Ghost bikes allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Ghost bikes allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Ghost bikes allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Ghost bikes allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "name",
- "description": "Layer 'Ghost bikes' shows and asks freeform values for key 'name' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "source",
- "description": "Layer 'Ghost bikes' shows and asks freeform values for key 'source' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "inscription",
- "description": "Layer 'Ghost bikes' shows and asks freeform values for key 'inscription' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "start_date",
- "description": "Layer 'Ghost bikes' shows and asks freeform values for key 'start_date' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'governments allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'governments allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'governments allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'governments allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "phone",
- "description": "Layer 'governments' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'governments' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'governments' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'governments' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'governments' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'governments' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "name",
- "description": "Layer 'governments' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Hackerspace allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Hackerspace allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Hackerspace allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Hackerspace allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Personal theme')",
- "value": "makerspace"
- },
- {
- "key": "hackerspace",
- "description": "Layer 'Hackerspace' shows with a fixed text, namely 'This is a traditional (software oriented) hackerspace' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key hackerspace.",
- "value": ""
- },
- {
- "key": "name",
- "description": "Layer 'Hackerspace' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "level",
- "description": "Layer 'Hackerspace' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "location",
- "description": "Layer 'Hackerspace' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Hackerspace' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key level.",
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "value": "-1"
- },
- {
- "key": "website",
- "description": "Layer 'Hackerspace' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Hackerspace' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Hackerspace' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Hackerspace' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Hackerspace' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Hackerspace' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Hackerspace' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme')",
- "value": "24/7"
- },
- {
- "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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "start_date",
- "description": "Layer 'Hackerspace' shows and asks freeform values for key 'start_date' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "name",
- "description": "Layer 'Hospitals' shows and asks freeform values for key 'name' (in the MapComplete.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "hospital"
- },
- {
- "key": "phone",
- "description": "Layer 'Hospitals' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Hospitals' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Hospitals' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Hospitals' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Hospitals' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Hospitals' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "tourism",
- "description": "The MapComplete theme Personal theme has a layer Hotels showing features with this tag",
- "value": "hotel"
- },
- {
- "key": "id",
- "description": "Layer '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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Hotels allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Hotels allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Hotels allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Hotels allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "name",
- "description": "Layer 'Hotels' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Hotels' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Hotels' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Hotels' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Hotels' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Hotels' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Hotels' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Hotels' 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.osm.be theme 'Personal theme')",
- "value": "designated"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Hotels' 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.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Hotels' 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.osm.be theme 'Personal theme')",
- "value": "limited"
- },
- {
- "key": "wheelchair",
- "description": "Layer 'Hotels' 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "internet_access",
- "description": "Layer 'Hotels' 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.osm.be theme 'Personal theme')",
- "value": "wlan"
- },
- {
- "key": "internet_access",
- "description": "Layer 'Hotels' 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "internet_access",
- "description": "Layer 'Hotels' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "internet_access",
- "description": "Layer 'Hotels' 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.osm.be theme 'Personal theme')",
- "value": "terminal"
- },
- {
- "key": "internet_access",
- "description": "Layer 'Hotels' 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.osm.be theme 'Personal theme')",
- "value": "wired"
- },
- {
- "key": "internet_access:fee",
- "description": "Layer 'Hotels' 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.osm.be theme 'Personal theme') (This is only shown if internet_access!=no&internet_access~.+)",
- "value": "yes"
- },
- {
- "key": "internet_access:fee",
- "description": "Layer 'Hotels' 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.osm.be theme 'Personal theme') (This is only shown if internet_access!=no&internet_access~.+)",
- "value": "no"
- },
- {
- "key": "internet_access:fee",
- "description": "Layer 'Hotels' 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.osm.be theme 'Personal theme') (This is only shown if internet_access!=no&internet_access~.+)",
- "value": "customers"
- },
- {
- "key": "internet_access:ssid",
- "description": "Layer 'Hotels' shows and asks freeform values for key 'internet_access:ssid' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if internet_access=wlan)"
- },
- {
- "key": "internet_access:ssid",
- "description": "Layer 'Hotels' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if internet_access=wlan)",
- "value": "Telekom"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "colour",
- "description": "Layer 'Map of hydrants' shows and asks freeform values for key 'colour' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "fire_hydrant"
- },
- {
- "key": "disused:emergency",
- "description": "Layer 'Map of hydrants' shows disused:emergency=fire_hydrant with a fixed text, namely 'The hydrant is unavailable' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "fire_hydrant"
- },
- {
- "key": "emergency",
- "description": "Layer 'Map of hydrants' shows disused:emergency=fire_hydrant with a fixed text, namely 'The hydrant is unavailable' and allows to pick this as a default answer (in the MapComplete.osm.be 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 with a fixed text, namely 'The hydrant has been removed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "fire_hydrant"
- },
- {
- "key": "emergency",
- "description": "Layer 'Map of hydrants' shows removed:emergency=fire_hydrant with a fixed text, namely 'The hydrant has been removed' and allows to pick this as a default answer (in the MapComplete.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "couplings",
- "description": "Layer 'Map of hydrants' shows and asks freeform values for key 'couplings' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "couplings:type",
- "description": "Layer 'Map of hydrants' shows and asks freeform values for key 'couplings:type' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "image",
- "description": "The layer 'Map of hydrants allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Map of hydrants allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Map of hydrants allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Map of hydrants allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Indoors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Indoors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Indoors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Indoors allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "ref",
- "description": "Layer 'Indoors' shows and asks freeform values for key 'ref' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme') (This is only shown if indoor=room|indoor=area|indoor=corridor)"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Information boards allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Information boards allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Information boards allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Information boards allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Kerbs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Kerbs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Kerbs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Kerbs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "childcare"
- },
- {
- "key": "name",
- "description": "Layer 'Kindergartens and childcare' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Kindergartens and childcare' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Kindergartens and childcare' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Kindergartens and childcare' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Kindergartens and childcare' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Kindergartens and childcare' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Kindergartens and childcare' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Kindergartens and childcare' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if amenity=childcare)"
- },
- {
- "key": "capacity",
- "description": "Layer 'Kindergartens and childcare' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Maps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Maps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Maps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Maps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "map_source",
- "description": "Layer 'Maps' shows and asks freeform values for key 'map_source' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "map_source",
- "description": "Layer 'Maps' shows map_source=OpenStreetMap with a fixed text, namely 'This map is based on OpenStreetMap' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "OpenStreetMap"
- },
- {
- "key": "not:map_source",
- "description": "Layer 'Maps' shows map_source=OpenStreetMap with a fixed text, namely 'This map is based on OpenStreetMap' and allows to pick this as a default answer (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "maxspeed",
- "description": "Layer 'Maxspeed' shows and asks freeform values for key 'maxspeed' (in the MapComplete.osm.be 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' (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "living_street"
- },
- {
- "key": "highway",
- "description": "Layer 'Maxspeed' shows highway=living_street 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.osm.be theme 'Personal theme')",
- "value": "living_street"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Nature reserve allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Nature reserve allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Nature reserve allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Nature reserve allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "access",
- "description": "Layer 'Nature reserve' shows access=yes with a fixed text, namely 'Publicly accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "fee",
- "description": "Layer 'Nature reserve' shows access=yes with a fixed text, namely 'Publicly accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key fee.",
- "value": ""
- },
- {
- "key": "access",
- "description": "Layer 'Nature reserve' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "fee",
- "description": "Layer 'Nature reserve' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key fee.",
- "value": ""
- },
- {
- "key": "access",
- "description": "Layer 'Nature reserve' shows access=private 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.osm.be theme 'Personal theme')",
- "value": "private"
- },
- {
- "key": "fee",
- "description": "Layer 'Nature reserve' shows access=private 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.osm.be theme 'Personal theme') Picking this answer will delete the key fee.",
- "value": ""
- },
- {
- "key": "access",
- "description": "Layer 'Nature reserve' shows access=permissive with a fixed text, namely 'Accessible despite being a privately owned area' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "permissive"
- },
- {
- "key": "fee",
- "description": "Layer 'Nature reserve' shows access=permissive with a fixed text, namely 'Accessible despite being a privately owned area' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key fee.",
- "value": ""
- },
- {
- "key": "access",
- "description": "Layer 'Nature reserve' shows access=guided 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.osm.be theme 'Personal theme')",
- "value": "guided"
- },
- {
- "key": "fee",
- "description": "Layer 'Nature reserve' shows access=guided 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "operator",
- "description": "Layer 'Nature reserve' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "noname",
- "description": "Layer 'Nature reserve' shows noname=yes with a fixed text, namely 'This area doesn't have a name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "name",
- "description": "Layer 'Nature reserve' shows noname=yes with a fixed text, namely 'This area doesn't have a name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key name.",
- "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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Nature reserve' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "curator",
- "description": "Layer 'Nature reserve' shows and asks freeform values for key 'curator' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Nature reserve' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Nature reserve' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "description",
- "description": "Layer 'Nature reserve' shows values with key 'description' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "description:0",
- "description": "Layer 'Nature reserve' shows and asks freeform values for key 'description:0' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "wikidata",
- "description": "Layer 'Nature reserve' shows and asks freeform values for key 'wikidata' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "wikipedia",
- "description": "Layer 'Nature reserve' shows wikipedia~.+ with a fixed text, namely '{wikipedia():max-height:25rem}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "wikidata",
- "description": "Layer 'Nature reserve' shows with a fixed text, namely 'No Wikipedia page has been linked yet' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Observation towers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Observation towers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Observation towers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Observation towers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "name",
- "description": "Layer 'Observation towers' shows and asks freeform values for key 'name' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "height",
- "description": "Layer 'Observation towers' shows and asks freeform values for key 'height' (in the MapComplete.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "guided"
- },
- {
- "key": "charge",
- "description": "Layer 'Observation towers' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if access=yes|access=guided)"
- },
- {
- "key": "fee",
- "description": "Layer 'Observation towers' shows fee=no with a fixed text, namely 'Free to visit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if access=yes|access=guided)",
- "value": "no"
- },
- {
- "key": "charge",
- "description": "Layer 'Observation towers' shows fee=no with a fixed text, namely 'Free to visit' and allows to pick this as a default answer (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Observation towers' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "step_count",
- "description": "Layer 'Observation towers' shows and asks freeform values for key 'step_count' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "wikipedia",
- "description": "Layer 'Observation towers' shows wikipedia~.+ with a fixed text, namely '{wikipedia():max-height:25rem}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "wikidata",
- "description": "Layer 'Observation towers' shows with a fixed text, namely 'No Wikipedia page has been linked yet' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key wikidata.",
- "value": ""
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Parcel Lockers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Parcel Lockers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Parcel Lockers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Parcel Lockers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "brand",
- "description": "Layer 'Parcel Lockers' shows and asks freeform values for key 'brand' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "brand",
- "description": "Layer 'Parcel Lockers' shows brand=Amazon Locker with a fixed text, namely 'This is an Amazon Locker' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "Amazon Locker"
- },
- {
- "key": "brand",
- "description": "Layer 'Parcel Lockers' shows brand=DHL Packstation with a fixed text, namely 'This is a DHL Packstation' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "DHL Packstation"
- },
- {
- "key": "brand",
- "description": "Layer 'Parcel Lockers' shows brand=Pickup Station with a fixed text, namely 'This is a DPD Pickup Station' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "Pickup Station"
- },
- {
- "key": "brand",
- "description": "Layer 'Parcel Lockers' shows brand=PostNL with a fixed text, namely 'This is a PostNL Parcel Locker' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "PostNL"
- },
- {
- "key": "operator",
- "description": "Layer 'Parcel Lockers' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Parcel Lockers' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme')",
- "value": "24/7"
- },
- {
- "key": "ref",
- "description": "Layer 'Parcel Lockers' shows and asks freeform values for key 'ref' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "level",
- "description": "Layer 'Parking' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "location",
- "description": "Layer 'Parking' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Parking' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key level.",
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "sheds"
- },
- {
- "key": "capacity:disabled",
- "description": "Layer 'Parking' shows and asks freeform values for key 'capacity:disabled' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "0"
- },
- {
- "key": "capacity",
- "description": "Layer 'Parking' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Parking Spaces allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Parking Spaces allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Parking Spaces allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Parking Spaces allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "parking_space",
- "description": "Layer 'Parking Spaces' shows with a fixed text, namely 'This is a normal parking space.' (in the MapComplete.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "disabled"
- },
- {
- "key": "parking_space",
- "description": "Layer 'Parking Spaces' shows parking_space=private with a fixed text, namely 'This is a private parking space.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "private"
- },
- {
- "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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Parking Ticket Machines allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Parking Ticket Machines allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Parking Ticket Machines allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Parking Ticket Machines allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if payment:coins=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "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.osm.be theme 'Personal theme') (This is only shown if payment:coins=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "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.osm.be theme 'Personal theme') (This is only shown if payment:coins=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "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.osm.be theme 'Personal theme') (This is only shown if payment:coins=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "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.osm.be theme 'Personal theme') (This is only shown if payment:coins=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "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.osm.be theme 'Personal theme') (This is only shown if payment:coins=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "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.osm.be theme 'Personal theme') (This is only shown if payment:coins=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "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.osm.be theme 'Personal theme') (This is only shown if payment:coins=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "value": "2 EUR"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if payment:notes=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "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.osm.be theme 'Personal theme') (This is only shown if payment:notes=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "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.osm.be theme 'Personal theme') (This is only shown if payment:notes=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "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.osm.be theme 'Personal theme') (This is only shown if payment:notes=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "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.osm.be theme 'Personal theme') (This is only shown if payment:notes=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "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.osm.be theme 'Personal theme') (This is only shown if payment:notes=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "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.osm.be theme 'Personal theme') (This is only shown if payment:notes=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk)",
- "value": "500 EUR"
- },
- {
- "key": "ref",
- "description": "Layer 'Parking Ticket Machines' shows and asks freeform values for key 'ref' (in the MapComplete.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Pharmacies allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Pharmacies allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Pharmacies allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Pharmacies allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "name",
- "description": "Layer 'Pharmacies' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Pharmacies' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Pharmacies' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Pharmacies' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Pharmacies' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Pharmacies' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Pharmacies' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Pharmacies' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Physiotherapist allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Physiotherapist allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Physiotherapist allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Physiotherapist allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "name",
- "description": "Layer 'Physiotherapist' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Physiotherapist' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be 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.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Physiotherapist' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:phone",
- "description": "Layer 'Physiotherapist' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Physiotherapist' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:email",
- "description": "Layer 'Physiotherapist' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Physiotherapist' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Physiotherapist' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Picnic tables allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Picnic tables allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Picnic tables allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Picnic tables allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "level",
- "description": "Layer 'Picnic tables' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "location",
- "description": "Layer 'Picnic tables' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Picnic tables' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key level.",
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "value": "-1"
- },
- {
- "key": "material",
- "description": "Layer 'Picnic tables' shows and asks freeform values for key 'material' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "plastic"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Playgrounds allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Playgrounds allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Playgrounds allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Playgrounds allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "surface",
- "description": "Layer 'Playgrounds' shows and asks freeform values for key 'surface' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "paved"
- },
- {
- "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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "min_age",
- "description": "Layer 'Playgrounds' shows and asks freeform values for key 'min_age' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "max_age",
- "description": "Layer 'Playgrounds' shows and asks freeform values for key 'max_age' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "operator",
- "description": "Layer 'Playgrounds' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "schoolyard"
- },
- {
- "key": "website",
- "description": "Layer 'Playgrounds' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "contact:website",
- "description": "Layer 'Playgrounds' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "email",
- "description": "Layer 'Playgrounds' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "phone",
- "description": "Layer 'Playgrounds' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Playgrounds' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "24/7"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Postboxes allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Postboxes allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Postboxes allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Postboxes allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Post offices allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Post offices allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Post offices allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Post offices allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "opening_hours",
- "description": "Layer 'Post offices' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if post_office=post_partner)",
- "value": "post_partner"
- },
- {
- "key": "post_office",
- "description": "Layer 'Post offices' shows with a fixed text, namely 'This shop is not a post partner' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key post_office. (This is only shown if post_office=post_partner)",
- "value": ""
- },
- {
- "key": "post_office:brand",
- "description": "Layer 'Post offices' shows and asks freeform values for key 'post_office:brand' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Bookcases allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Bookcases allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Bookcases allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Bookcases allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "name",
- "description": "Layer 'Bookcases' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "noname",
- "description": "Layer 'Bookcases' shows noname=yes with a fixed text, namely 'This bookcase doesn't have a name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "name",
- "description": "Layer 'Bookcases' shows noname=yes with a fixed text, namely 'This bookcase doesn't have a name' and allows to pick this as a default answer (in the MapComplete.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "books",
- "description": "Layer 'Bookcases' shows and asks freeform values for key 'books' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "no"
- },
- {
- "key": "indoor",
- "description": "Layer 'Bookcases' shows with a fixed text, namely 'This bookcase is located outdoors' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "brand",
- "description": "Layer 'Bookcases' shows and asks freeform values for key 'brand' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "brand",
- "description": "Layer 'Bookcases' shows brand=Little Free Library with a fixed text, namely 'Part of the network 'Little Free Library'' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')",
- "value": "Little Free Library"
- },
- {
- "key": "nobrand",
- "description": "Layer 'Bookcases' shows brand=Little Free Library with a fixed text, namely 'Part of the network 'Little Free Library'' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key nobrand.",
- "value": ""
- },
- {
- "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.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "brand",
- "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.osm.be theme 'Personal theme') Picking this answer will delete the key brand.",
- "value": ""
- },
- {
- "key": "ref",
- "description": "Layer 'Bookcases' shows and asks freeform values for key 'ref' (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if brand~.+)"
- },
- {
- "key": "nobrand",
- "description": "Layer 'Bookcases' shows nobrand=yes 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.osm.be theme 'Personal theme') (This is only shown if brand~.+)",
- "value": "yes"
- },
- {
- "key": "brand",
- "description": "Layer 'Bookcases' shows nobrand=yes 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.osm.be 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 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.osm.be 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.osm.be theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Bookcases' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "highway",
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Crossings with rainbow paintings allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "crossing:marking",
- "description": "Layer 'Crossings with rainbow paintings' shows crossing:marking=rainbow with a fixed text, namely 'This crossing has rainbow paintings' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if highway=crossing)",
- "value": "rainbow"
- },
- {
- "key": "not:crossing:marking",
- "description": "Layer 'Crossings with rainbow paintings' shows not:crossing:marking=rainbow with a fixed text, namely 'No rainbow paintings here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') (This is only shown if highway=crossing)",
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Reception desks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Reception desks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Reception desks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Reception desks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "level",
- "description": "Layer 'Reception desks' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "location",
- "description": "Layer 'Reception desks' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "value": "0"
- },
- {
- "key": "level",
- "description": "Layer 'Reception desks' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key level.",
- "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.osm.be theme 'Personal theme')",
- "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.osm.be theme 'Personal theme')",
- "value": "-1"
- },
- {
- "key": "desk:height",
- "description": "Layer 'Reception desks' shows and asks freeform values for key 'desk:height' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "image",
- "description": "The layer 'Recycling allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "mapillary",
- "description": "The layer 'Recycling allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikidata",
- "description": "The layer 'Recycling allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary"
- },
- {
- "key": "wikipedia",
- "description": "The layer 'Recycling allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "waste_disposal"
- },
- {
- "key": "name",
- "description": "Layer 'Recycling' shows and asks freeform values for key 'name' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme') (This is only shown if recycling_type=container)",
- "value": "indoor"
- },
- {
- "key": "location",
- "description": "Layer 'Recycling' shows with a fixed text, namely 'This container is located outdoors' and allows to pick this as a default answer (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "yes"
- },
- {
- "key": "operator",
- "description": "Layer 'Recycling' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "website",
- "description": "Layer 'Recycling' shows and asks freeform values for key 'website' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be 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.osm.be 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 '{contact:phone}' (in the MapComplete.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "24/7"
- },
- {
- "key": "access",
- "description": "Layer 'Recycling' shows and asks freeform values for key 'access' (in the MapComplete.osm.be 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.osm.be 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.osm.be 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.osm.be theme 'Personal theme')",
- "value": "private"
- },
- {
- "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.osm.be theme 'Personal theme') (This is only shown if _backend~.+&_last_edit:passed_time<300&|_version_number=1)"
- },
- {
- "key": "name",
- "description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')"
- },
- {
- "key": "capacity",
- "description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be 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.osm.be 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. Opening hours for visitors
Regular visitors are allowed at the following moments: {opening_hours_table(opening_hours:visitors)}Opening hours for visitors
Regular visitors are allowed at the following moments: {opening_hours_table(opening_hours:visitors)}Öffnungszeiten für Besucher
Regelmäßige Besucher sind zu den folgenden Zeiten zugelassen: {opening_hours_table(opening_hours:visitors)}
Vous pouvez contribuer aussi ! Zoomez suffisamment et toutes les rues seront affichées. Cliquez sur l'une d'elles et une boîte de recherche Wikidata apparaîtra. En quelques clics, vous pouvez ajouter un lien étymologique. Vous devez disposer d’un compte OpenStreetMap gratuit.",
"da": "På dette kort kan du se, hvad et objekt er opkaldt efter. Gaderne, bygningerne, ... kommer fra OpenStreetMap, som blev forbundet med Wikidata. I pop op-vinduet vil du se Wikipedia-artiklen (hvis den findes) eller en wikidata-boks med, hvad objektet er opkaldt efter. Hvis selve objektet har en wikipedia-side, vil det også blive vist.
Du kan også hjælpe med at bidrage!Zoom nok ind og alle gader vil dukke op. Du kan klikke på en og en Wikidata-søgeboks vil poppe op. Med et par klik kan du tilføje et etymologilink. Bemærk, at du har brug for en gratis OpenStreetMap-konto for at gøre dette.",
"cs": "Na této mapě se můžete podívat, podle čeho je objekt pojmenován. Ulice, budovy, ... pocházejí z OpenStreetMap, které byly propojeny s Wikidaty. Ve vyskakovacím okně se zobrazí článek na Wikipedii (pokud existuje) nebo wikidatové pole toho, po čem je objekt pojmenován. Pokud má samotný objekt stránku na Wikipedii, zobrazí se i ta.
Přispět můžete i vy!Dostatečně si objekt přiblížíte a zobrazí se všechnyulice. Na některou z nich můžete kliknout a objeví se okno pro vyhledávání na Wikidatech. Několika kliknutími můžete přidat etymologický odkaz. K provádění těchto úprav potřebujete bezplatný účet na OpenStreetMap.",
- "es": "En este mapa, puedes ver el nombre de un objeto. Las calles, edificios, ... provienen de OpenStreetMap que tienen enlace con Wikidata. En la ventana emergente, verás el artículo de Wikipedia (si existe) o un recuadro de wikidata del nombre del objeto. Si el objeto en sí tiene una página wikipedia, también se mostrará.
¡Puedes contribuir! Acerca el zoom lo suficiente y aparecerán todas las calles. Puedes hacer clic en una y aparecerá un cuadro de búsqueda en Wikidata. Con unos pocos clics, puedes añadir un enlace etimológico. Ten en cuenta que para ello necesitas una cuenta gratuita de OpenStreetMap.",
+ "es": "En este mapa, puedes ver el nombre de un objeto. Las calles, edificios, ... provienen de OpenStreetMap que tienen enlace con Wikidata. En la ventana emergente, verás el artículo de Wikipedia (si existe) o un recuadro de wikidata del nombre del objeto. Si el objeto en sí tiene una página wikipedia, también se mostrará.
¡Puedes contribuir! Acerca el zoom lo suficiente y aparecerán todas las calles. Puedes hacer clic en una y aparecerá un cuadro de búsqueda en Wikidata. Con unos pocos clics, puedes añadir un enlace etimológico. Ten en cuenta que para ello necesitas una cuenta gratuita de OpenStreetMap.",
"ca": "En aquest mapa, podeu veure el nom d'un objecte. Els carrers, edificis, ... provenen d'OpenStreetMap que tenen un enllaça a Wikidata. A la finestra emergent, veuràs l'article de la Viquipèdia (si existeix) o un quadre de wikidata amb el nom de l'objecte. Si l'objecte en si té una pàgina de viquipèdia, també es mostrarà.
També pots ajudar a contribuir!Amplia prou i tots els carrers apareixerà. Podeu fer clic en un i apareixerà un quadre de cerca de Wikidata. Amb uns quants clics, podeu afegir un enllaç d'etimologia. Tingueu en compte que necessiteu un compte d'OpenStreetMap gratuït per fer-ho."
},
"icon": "./assets/layers/etymology/logo.svg",
diff --git a/assets/themes/ghostbikes/ghostbikes.json b/assets/themes/ghostbikes/ghostbikes.json
index 446c052b2..676c469dd 100644
--- a/assets/themes/ghostbikes/ghostbikes.json
+++ b/assets/themes/ghostbikes/ghostbikes.json
@@ -33,7 +33,7 @@
"hu": "A szellemkerékpár egy közlekedési balesetben elhunyt kerékpáros emlékműve: egy fehér kerékpár, amelyet állandó jelleggel a baleset helyszínének közelében helyeznek el.
A térképen az OpenStreetMap által ismert összes szellemkerékpár megtekinthető. Hiányzik róla egy szellemkerékpár? Bárki hozzáadhat vagy frissíthet adatokat – csak egy (ingyenes) OpenStreetMap-fiókra van szükség hozzá.",
"da": "En spøgelsescykel er et mindesmærke for en cyklist, der døde i en trafikulykke, i form af en hvid cykel placeret permanent i nærheden af ulykkesstedet.
På dette kort er en kan se alle de spøgelsescykler, som er kendt af OpenStreetMap. Mangler der en spøgelsescykel? Alle kan tilføje eller opdatere oplysninger her - du behøver kun at have en (gratis) OpenStreetMap-konto.",
"cs": "Kolo duchů je památník pro cyklisty, kteří zemřeli při dopravní nehodě, ve formě bílého kola trvale umístěného poblíž místa nehody.
Na této mapě je možné vidět všechna kola duchů, která jsou známa OpenStreetMap. Chybí na mapě nějaké? Každý může přidat nebo aktualizovat informace zde - stačí mít pouze (bezplatný) účet OpenStreetMap.
En este mapa se pueden ver todas las bicicletas fantasma conocidas por OpenStreetMap. ¿Falta alguna bicicleta fantasma?\n Todo el mundo puede añadir o actualizar información aquí - sólo necesitas tener una cuenta (gratuita) de OpenStreetMap. ",
+ "es": "Una bicicleta fantasma es un monumento en memoria de un ciclista fallecido en un accidente de tráfico, en forma de una bicicleta blanca colocada permanentemente cerca del lugar del accidente.
En este mapa se pueden ver todas las bicicletas fantasma conocidas por OpenStreetMap. ¿Falta alguna bicicleta fantasma? Todo el mundo puede añadir o actualizar información aquí - sólo necesitas tener una cuenta (gratuita) de OpenStreetMap. ",
"ca": "Una bicicleta fantasma és un monument commemoratiu d'un ciclista que va morir en un accident de trànsit en forma d'una bicicleta blanca col·locada permanentment a prop del lloc de l'accident.
En aquest mapa, un pot veure totes les bicicletes fantasma conegudes per OpenStreetMap. Falta una bicicleta fantasma? Tothom pot afegir o actualitzar informació aquí; només cal que tingueu un compte d'OpenStreetMap (gratuït). Acerca de MapComplete
Descubre más
Añadir {title} aquí?
El punto que estás creando lo verá todo el mundo. Sólo añade cosas que realmente existan. Muchas aplicaciones usan estos datos.",
"disableFilters": "Desactivar todos los filtros",
"disableFiltersExplanation": "Algunas características pueden estar ocultas por un filtro",
"hasBeenImported": "Este punto ya ha sido importado",
@@ -61,7 +69,7 @@
"openLayerControl": "Abrir el control de capas",
"pleaseLogin": "Por favor inicia sesión para añadir un nuevo punto",
"presetInfo": "El nuevo POI tendrá {tags}",
- "stillLoading": "Los datos se siguen cargando. Espera un poco antes de añadir ningún punto.",
+ "stillLoading": "Los datos se siguen cargando. Espera un poco antes de añadir una nueva función.",
"title": "Quieres añadir un punto?",
"warnVisibleForEveryone": "Su adición será visible para todos",
"wrongType": "Este elemento no es un punto o una vía y no puede ser importado",
@@ -95,6 +103,7 @@
"translatedBy": "MapComplete ha sido traducido por {contributors} y {hiddenCount} más contribuidores"
},
"back": "Atrás",
+ "backToIndex": "Volver a la vista general con todos los mapas temáticos",
"backToMapcomplete": "Volver a la vista de temas",
"backgroundMap": "Mapa de fondo",
"cancel": "Cancelar",
@@ -142,13 +151,13 @@
"loginWithOpenStreetMap": "Acceder con OpenStreetMap",
"logout": "Cerrar la sesión",
"morescreen": {
- "createYourOwnTheme": "Crea tu propia petición completa de MapComplete desde cero.",
+ "createYourOwnTheme": "Crea tu propia petición completa de MapComplete desde cero",
"hiddenExplanation": "Estos temas solo son visibles para aquellos con el enlace. Has descubierto {hidden_discovered} de {total_hidden} temas ocultos.",
"intro": "Más peticiones
Te gusta captar datos?
Hay más capas disponibles.",
"noMatchingThemes": "Ningún tema coincide con tus criterios de búsqueda",
"noSearch": "Mostrar todos los temas",
"previouslyHiddenTitle": "Temas ocultos previamente visitados",
- "requestATheme": "Si quieres que te hagamos una petición propia , pídela aquí.",
+ "requestATheme": "Si quieres que te hagamos una petición propia , pídela aquí",
"searchForATheme": "Buscar un tema",
"streetcomplete": "Otra aplicación similar es StreetComplete."
},
@@ -158,7 +167,8 @@
"noTagsSelected": "No se han seleccionado etiquetas",
"notValid": "Selecciona un valor válido para continuar",
"number": "número",
- "openStreetMapIntro": "Un mapa abierto
¿No sería genial si hubiera un solo mapa, que todos pudieran usar y editar libremente?¿Un solo lugar para almacenar toda la información geográfica? Entonces, todos esos sitios web con mapas diferentes, pequeños e incompatibles (que siempre están desactualizados) ya no serían necesarios.
OpenStreetMap es ese mapa. Los datos del mapa se pueden utilizar de forma gratuita (con atribución y publicación de cambios en esos datos). Además de eso, todos pueden agregar libremente nuevos datos y corregir errores. Este sitio web también usa OpenStreetMap. Todos los datos provienen de allí, y tus respuestas y correcciones también se añadirán allí.
Muchas personas y aplicaciones ya usan OpenStreetMap: Maps.me, OsmAnd, pero también los mapas de Facebook, Instagram, Apple y Bing son (en parte) impulsados por OpenStreetMap. Si cambias algo aquí, también se reflejará en esas aplicaciones, en su próxima actualización
", + "oneSkippedQuestion": "Has ignorado una pregunta", + "openStreetMapIntro": "¿No sería genial si hubiera un solo mapa, que todos pudieran usar y editar libremente?¿Un solo lugar para almacenar toda la información geográfica? Entonces, todos esos sitios web con mapas diferentes, pequeños e incompatibles (que siempre están desactualizados) ya no serían necesarios.
OpenStreetMap es ese mapa. Los datos del mapa se pueden utilizar de forma gratuita (con atribución y publicación de cambios en esos datos). Además de eso, todos pueden agregar libremente nuevos datos y corregir errores. Este sitio web también usa OpenStreetMap. Todos los datos provienen de allí, y tus respuestas y correcciones también se añadirán allí.
Muchas personas y aplicaciones ya usan OpenStreetMap: Maps.me, OsmAnd, pero también los mapas de Facebook, Instagram, Apple y Bing son (en parte) impulsados por OpenStreetMap. Si cambias algo aquí, también se reflejará en esas aplicaciones, en su próxima actualización
", "openTheMap": "Abrir el mapa", "opening_hours": { "closed_permanently": "Cerrado - sin día de apertura conocido", @@ -197,8 +207,8 @@ "save": "Guardar", "screenToSmall": "Abrir {theme} en una ventana nueva", "search": { - "error": "Alguna cosa no ha ido bien...", - "nothing": "Nada encontrado.", + "error": "Alguna cosa no ha ido bien…", + "nothing": "Nada encontrado…", "search": "Busca una ubicación", "searching": "Buscando…" }, @@ -225,6 +235,11 @@ }, "skip": "Saltar esta pregunta", "testing": "Probando - los cambios no se guardarán", + "uploadGpx": { + "gpxServiceOffline": "El servicio GPX está actualmente fuera de línea - la carga no es posible en este momento. Vuelva a intentarlo más tarde.", + "intro0": "Al subir tu trazado, OpenStreetMap.org conservará una copia completa del mismo.", + "uploading": "Cargando su trazo…" + }, "weekdays": { "abbreviations": { "friday": "Vie", @@ -243,7 +258,7 @@ "tuesday": "Martes", "wednesday": "Miércoles" }, - "welcomeBack": "Has entrado, bienvenido.", + "welcomeBack": "¡Bienvenido de nuevo!", "welcomeExplanation": { "addNew": "Toque el mapa para añadir un nuevo POI.", "general": "En este mapa, puedes ver, editar y agregar puntos de interés. Haz zoom para ver los POI, toca uno para ver o editar la información. Todos los datos proceden y se guardan en OpenStreetMap, que puede reutilizarse libremente." @@ -368,6 +383,9 @@ "typeText": "Teclea algún texto para añadir un comentario", "warnAnonymous": "No has iniciado sesión. No podremos contactarte para resolver tu problema." }, + "plantDetection": { + "loadingWikidata": "Cargando información sobre {species}…" + }, "privacy": { "editing": "Cuando efectúas un cambio al mapa, este cambio se grabas en OpenStreetMap y está disponible públicamente a cualquiera. Un conjunto de cambios hecho con MapComplete incluye los siguientes datos:Einige Krankenhäuser haben möglicherweise andere Öffnungszeiten. Viele Krankenhäuser erlauben Besuche auch in Notfällen.
" } }, "title": { diff --git a/langs/layers/es.json b/langs/layers/es.json index 7f6498a20..2c6273c3f 100644 --- a/langs/layers/es.json +++ b/langs/layers/es.json @@ -367,6 +367,9 @@ "render": "Obra de arte" } }, + "atm": { + "description": "Cajeros automáticos para retirar dinero" + }, "barrier": { "description": "Obstáculos durante el uso de la bicicleta, como bolardos y barreras para bicicletas", "name": "Barreras", @@ -486,6 +489,9 @@ }, "bench-backrest": { "mappings": { + "0": { + "then": "Este banco tiene dos caras y comparte el respaldo" + }, "1": { "then": "Tiene respaldo" }, @@ -4003,7 +4009,7 @@ "then": "Es un área exterior pero privada (ej: estacionamiento, gasolinera, patio, entrada, camino privado, ...)" }, "2": { - "then": "La vigilancia ocurre en un lugar interior privado, por ejemplo una tienda, un estacionamiento privado subterráneo, ..." + "then": "La vigilancia ocurre en un lugar interior privado, por ejemplo una tienda, un estacionamiento privado subterráneo, …" } }, "question": "¿Qué tipo de vigilancia aplica a esta cámara?" diff --git a/langs/shared-questions/de.json b/langs/shared-questions/de.json index 2d36b7938..40c97a528 100644 --- a/langs/shared-questions/de.json +++ b/langs/shared-questions/de.json @@ -214,6 +214,9 @@ }, "1": { "then": "Hier wird Kartenzahlung akzeptiert" + }, + "2": { + "then": "Die Bezahlung per QR-Code ist hier möglich" } }, "question": "Welche Zahlungsmethoden werden hier akzeptiert?" diff --git a/langs/shared-questions/es.json b/langs/shared-questions/es.json index 800cd11c7..02856c49b 100644 --- a/langs/shared-questions/es.json +++ b/langs/shared-questions/es.json @@ -207,6 +207,9 @@ }, "1": { "then": "Aquí se acepta el pago por tarjeta" + }, + "2": { + "then": "Aquí se puede pagar con código QR" } }, "question": "¿Qué métodos de pago se aceptan aquí?" diff --git a/langs/themes/es.json b/langs/themes/es.json index 876464df4..09e97aeea 100644 --- a/langs/themes/es.json +++ b/langs/themes/es.json @@ -544,7 +544,7 @@ "title": "Educación" }, "etymology": { - "description": "En este mapa, puedes ver el nombre de un objeto. Las calles, edificios, ... provienen de OpenStreetMap que tienen enlace con Wikidata. En la ventana emergente, verás el artículo de Wikipedia (si existe) o un recuadro de wikidata del nombre del objeto. Si el objeto en sí tiene una página wikipedia, también se mostrará.