From 4df2d34f02a1d06866e8698757a277bd746eac26 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 9 Jul 2024 13:05:53 +0200 Subject: [PATCH 01/45] UX: no cursor-hand on disabled buttons --- public/css/index-tailwind-output.css | 1 + src/index.css | 1 + 2 files changed, 2 insertions(+) diff --git a/public/css/index-tailwind-output.css b/public/css/index-tailwind-output.css index 5c0a07a0cc0..ecb93e65aca 100644 --- a/public/css/index-tailwind-output.css +++ b/public/css/index-tailwind-output.css @@ -4600,6 +4600,7 @@ button.primary:hover:not(.disabled), .button.primary:hover:not(.disabled) { button.disabled { border-color: var(--disabled); color: var(--disabled); + cursor: unset; } button.disabled svg path { diff --git a/src/index.css b/src/index.css index af8b4a8ee38..db06e155674 100644 --- a/src/index.css +++ b/src/index.css @@ -238,6 +238,7 @@ button.primary:hover:not(.disabled), .button.primary:hover:not(.disabled) { button.disabled { border-color: var(--disabled); color: var(--disabled); + cursor: unset; } button.disabled svg path { transition: all 200ms; From d8da61ec07e504c76927a369fdb697e5d3617b46 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 9 Jul 2024 13:06:56 +0200 Subject: [PATCH 02/45] Allow to delete freeform keys again, partial fix of #2008 --- .../QuestionableTagRenderingConfigJson.ts | 11 ++++++- src/Models/ThemeConfig/TagRenderingConfig.ts | 18 +++++++++++ .../TagRendering/TagRenderingQuestion.svelte | 30 ++++++++++++------- .../TagRenderingQuestionDynamic.svelte | 2 +- src/Utils.ts | 12 ++++---- 5 files changed, 56 insertions(+), 17 deletions(-) diff --git a/src/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson.ts b/src/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson.ts index e54cf52461f..e88bd810326 100644 --- a/src/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson.ts +++ b/src/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson.ts @@ -133,7 +133,16 @@ export interface MappingConfigJson { * question: What extra tags should be added to the object if this object is chosen? * type: simple_tag * - * If chosen as answer, these tags will be applied onto the object, together with the tags from the `if` + * If chosen as answer, these tags will be applied onto the object, together with the tags from the `if`. + * Note that if the contributor picks this mapping, saves and then changes their mind and uses a different mapping, + * the extraTags will reside. + * E.g. when picking `memorial:type=bench`, then `amenity=bench` will also be applied. + * If someone later on changes the type to `memorial:statue`, `amenity=bench` will stay onto the object + * (which is the desired behaviour, see e.g. for https://www.openstreetmap.org/node/5620038478) + * Use 'ifNot' to explicitly remove an tag if this is important + * + * If someone marks the question as 'unknown', the extra tags will not be erased + * * Not compatible with multiAnswer. * * This can be used e.g. to erase other keys which indicate the 'not' value: diff --git a/src/Models/ThemeConfig/TagRenderingConfig.ts b/src/Models/ThemeConfig/TagRenderingConfig.ts index 4a1cd5d777e..903fc5417a0 100644 --- a/src/Models/ThemeConfig/TagRenderingConfig.ts +++ b/src/Models/ThemeConfig/TagRenderingConfig.ts @@ -911,6 +911,24 @@ export default class TagRenderingConfig { return Utils.NoNull(tags) } + + /** + * The keys that should be erased if one has to revert to 'unknown'. + * Might give undefined + */ + public settableKeys(): string[] | undefined { + const toDelete = new Set() + if(this.freeform){ + toDelete.add(this.freeform.key) + } + for (const mapping of this.mappings) { + for (const usedKey of mapping.if.usedKeys()) { + toDelete.add(usedKey) + } + } + + return Array.from(toDelete) + } } export class TagRenderingConfigUtils { diff --git a/src/UI/Popup/TagRendering/TagRenderingQuestion.svelte b/src/UI/Popup/TagRendering/TagRenderingQuestion.svelte index 68683db1c80..de4a77f9c22 100644 --- a/src/UI/Popup/TagRendering/TagRenderingQuestion.svelte +++ b/src/UI/Popup/TagRendering/TagRenderingQuestion.svelte @@ -32,6 +32,7 @@ import { And } from "../../../Logic/Tags/And" import { get } from "svelte/store" import Markdown from "../../Base/Markdown.svelte" + import { Utils } from "../../../Utils" export let config: TagRenderingConfig export let tags: UIEventSource> @@ -42,7 +43,7 @@ export let selectedTags: UploadableTag = undefined export let extraTags: UIEventSource> = new UIEventSource({}) - export let allowDeleteOfFreeform: boolean = false + export let allowDeleteOfFreeform: boolean = true export let clss = "interactive border-interactive" @@ -141,7 +142,9 @@ feedback.setData(undefined) } - let usedKeys: string[] = config.usedTags().flatMap((t) => t.usedKeys()) + let usedKeys: string[] = Utils.Dedup(config.usedTags().flatMap((t) => t.usedKeys())) + + let keysToDeleteOnUnknown = config.settableKeys() /** * The 'minimalTags' is a subset of the tags of the feature, only containing the values relevant for this object. * The main goal is to be stable and only 'ping' when an actual change is relevant @@ -193,10 +196,12 @@ $: { if ( + config.freeform?.key && allowDeleteOfFreeform && - $freeformInput === undefined && - $freeformInputUnvalidated === "" && - (config?.mappings?.length ?? 0) === 0 + !$freeformInput && + !$freeformInputUnvalidated && + !checkedMappings?.some(m => m) && + $tags[config.freeform.key] // We need to have a current value in order to delete it ) { selectedTags = new Tag(config.freeform.key, "") } else { @@ -360,7 +365,7 @@ {/if} {/if} - {#if config.freeform?.key && !(config?.mappings?.filter((m) => m.hideInAnswer != true)?.length > 0)} + {#if config?.freeform?.key && !(config?.mappings?.filter((m) => m.hideInAnswer != true)?.length > 0)} {/if} +
- {#if allowDeleteOfFreeform && (config?.mappings?.length ?? 0) === 0 && $freeformInput === undefined && $freeformInputUnvalidated === ""} + {#if config.freeform?.key && allowDeleteOfFreeform && !checkedMappings?.some(m => m) && !$freeformInput && !$freeformInputUnvalidated && $tags[config.freeform.key]} +
{/if} {#if $featureSwitchIsTesting || $featureSwitchIsDebugging} - {config.id} + console.log("Configuration is ", config)}> + {config.id} + {/if} diff --git a/src/UI/Popup/TagRendering/TagRenderingQuestionDynamic.svelte b/src/UI/Popup/TagRendering/TagRenderingQuestionDynamic.svelte index 220bea1db2f..d977d1f9b97 100644 --- a/src/UI/Popup/TagRendering/TagRenderingQuestionDynamic.svelte +++ b/src/UI/Popup/TagRendering/TagRenderingQuestionDynamic.svelte @@ -28,7 +28,7 @@ export let selectedTags: UploadableTag = undefined export let extraTags: UIEventSource> = new UIEventSource({}) - export let allowDeleteOfFreeform: boolean = false + export let allowDeleteOfFreeform: boolean = true let dynamicConfig = TagRenderingConfigUtils.withNameSuggestionIndex(config, tags, selectedElement) diff --git a/src/Utils.ts b/src/Utils.ts index 58fb058856d..43b7aef5719 100644 --- a/src/Utils.ts +++ b/src/Utils.ts @@ -382,13 +382,15 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be /** * Creates a new array with all elements from 'arr' in such a way that every element will be kept only once - * Elements are returned in the same order as they appear in the lists - * @param arr - * @constructor + * Elements are returned in the same order as they appear in the lists. + * Null/Undefined is returned as is. If an emtpy array is given, a new empty array will be returned */ + public static Dedup(arr: NonNullable): NonNullable + public static Dedup(arr: undefined):undefined + public static Dedup(arr: string[] | undefined): string[] | undefined public static Dedup(arr: string[]): string[] { - if (arr === undefined) { - return undefined + if (arr === undefined || arr === null) { + return arr } const newArr = [] for (const string of arr) { From 6cdcb4dcc4efc81a0d3cfdbe3ae1ae0da49bb5f4 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 9 Jul 2024 13:07:04 +0200 Subject: [PATCH 03/45] Style tweaks --- src/UI/Popup/TagRendering/TagRenderingMapping.svelte | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/UI/Popup/TagRendering/TagRenderingMapping.svelte b/src/UI/Popup/TagRendering/TagRenderingMapping.svelte index ff89a9b44ad..73209c202d6 100644 --- a/src/UI/Popup/TagRendering/TagRenderingMapping.svelte +++ b/src/UI/Popup/TagRendering/TagRenderingMapping.svelte @@ -17,7 +17,7 @@ /** * Css classes to apply */ - export let clss: string = "" + export let clss: string = "ml-2" export let mapping: { readonly then: Translation readonly searchTerms?: Record @@ -41,8 +41,7 @@ `mapping-icon-${mapping.iconClass ?? "small"}-height mapping-icon-${ mapping.iconClass ?? "small" }-width`, - "mr-2", - "shrink-0 mx-2" + "shrink-0" )} clss={`mapping-icon-${mapping.iconClass ?? "small"}`} /> From 4644b6ae550fa53c042978317484f9a99eafe8c7 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 9 Jul 2024 14:41:20 +0200 Subject: [PATCH 04/45] Themes: add 'pedagogy', fix #1839 --- assets/layers/school/school.json | 71 ++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) diff --git a/assets/layers/school/school.json b/assets/layers/school/school.json index e6f249ff3ed..bf5b410dd55 100644 --- a/assets/layers/school/school.json +++ b/assets/layers/school/school.json @@ -280,6 +280,74 @@ } ] }, + { + "id": "pedagogy", + "question": { + "en": "What educational theory is applied on this school?" + }, + "mappings": [ + { + "if": "pedagogy=mainstream", + "then": { + "en": "This school does not use a specific pedagogy" + } + }, + { + "if": "pedagogy=montessori", + "then": { + "en": "This school uses the Montessori method of education" + } + }, + { + "if": "pedagogy=freinet", + "then": { + "en": "This school is associated with the Freinet Modern School Movement" + } + }, + { + "if": "pedagogy=jenaplan", + "then": { + "en": "This school uses the Jenaplan teaching concept" + } + }, + { + "if": "pedagogy=waldorf", + "then": { + "en": "This school uses the Steiner/Waldorf educational philosophy" + } + }, + { + "if": "pedagogy=dalton", + "then": { + "en": "This school uses the Dalton plan teaching concept" + } + }, + { + "if": "pedagogy=outdoor", + "then": { + "en": "This school uses outdoor learning" + } + }, + { + "if": "pedagogy=reggio_emilia", + "then": { + "en": "This school uses the Reggio Emilia approach" + } + }, + { + "if": "pedagogy=sudbury", + "then": { + "en": "This school uses the Sudbury system" + } + } + ], + "render": { + "en": "This school uses {pedagogy}" + }, + "freeform": { + "key": "pedagogy" + } + }, { "id": "target-audience", "condition": "school:for~*", @@ -462,6 +530,9 @@ } } ], + "filter": [ + "pedagogy" + ], "allowMove": { "enableImproveAccuracy": true, "enableRelocation": true From 9e84bf7ed222c27c15f849d7a16d0e58f0ab16e2 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 9 Jul 2024 14:41:39 +0200 Subject: [PATCH 05/45] Studio: fix crash when creating a new tagRendering --- src/UI/Studio/SchemaBasedArray.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UI/Studio/SchemaBasedArray.svelte b/src/UI/Studio/SchemaBasedArray.svelte index b6c28f82fb6..d23f0b48380 100644 --- a/src/UI/Studio/SchemaBasedArray.svelte +++ b/src/UI/Studio/SchemaBasedArray.svelte @@ -180,7 +180,7 @@ {:else if typeof value === "string"} Builtin: {value} {:else} - + {/if}
From 107104e537e989f74c2ba432ed9f67456626edee Mon Sep 17 00:00:00 2001 From: Niklas Vogel Date: Tue, 9 Jul 2024 16:52:44 +0200 Subject: [PATCH 06/45] fireplace.json --- assets/themes/fireplace/fireplace.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 assets/themes/fireplace/fireplace.json diff --git a/assets/themes/fireplace/fireplace.json b/assets/themes/fireplace/fireplace.json new file mode 100644 index 00000000000..85ade9d1e59 --- /dev/null +++ b/assets/themes/fireplace/fireplace.json @@ -0,0 +1,16 @@ +{ + "id": "fireplace", + "title": { + "en": "Fireplaces and BBQ", + "de": "Feuerstellen und Grillstellen" + }, + "description": { + "en": "Stelle im Freien zum Feuermachen oder ein ortsfest installierter Grill an einer offizielle Stelle.", + "de": "Outdoor place to make a fire or a fixed barbecue in an official place." + }, + "icon": "./assets/layers/assembly_point/fire.svg", + "layers": [ + "https://studio.mapcomplete.org/20107792/layers/firepit/firepit.json", + "https://studio.mapcomplete.org/20107792/layers/bbq/bbq.json" + ] +} From b98aaff8101255138c10704d2a02f9226b0fa7ec Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 9 Jul 2024 16:55:49 +0200 Subject: [PATCH 07/45] Themes: add cargo bike option to bicycle rental, fix #2016 --- assets/layers/bicycle_rental/bicycle_rental.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/assets/layers/bicycle_rental/bicycle_rental.json b/assets/layers/bicycle_rental/bicycle_rental.json index 9ad369b0fd2..885ac614d3a 100644 --- a/assets/layers/bicycle_rental/bicycle_rental.json +++ b/assets/layers/bicycle_rental/bicycle_rental.json @@ -466,6 +466,13 @@ "pt": "Capacetes de ciclismo podem ser alugados aqui", "pl": "Można tutaj wypożyczyć kaski rowerowe" } + }, + { + "if": "rental=cargo_bike", + "then": { + "en": "Cargo bikes can be rented here", + "nl": "Bakfietsen kunnen hier gehuurd worden" + } } ], "condition": { From 1f348c6d8386049de1d70b0b863c8de986de41a1 Mon Sep 17 00:00:00 2001 From: Niklas Vogel Date: Wed, 10 Jul 2024 08:54:17 +0200 Subject: [PATCH 08/45] add layers firepit and bbq --- assets/layers/bbq/bbq.json | 191 +++++++++++++++++++++++++ assets/layers/firepit/firepit.json | 154 ++++++++++++++++++++ assets/themes/fireplace/fireplace.json | 4 +- 3 files changed, 347 insertions(+), 2 deletions(-) create mode 100644 assets/layers/bbq/bbq.json create mode 100644 assets/layers/firepit/firepit.json diff --git a/assets/layers/bbq/bbq.json b/assets/layers/bbq/bbq.json new file mode 100644 index 00000000000..59cab667c8e --- /dev/null +++ b/assets/layers/bbq/bbq.json @@ -0,0 +1,191 @@ +{ + "id": "bbq", + "name": { + "en": "BBQ", + "de": "Grillstelle" + }, + "description": { + "de": "Ein ortsfest installierter Grill, typischerweise öffentlich zugänglich.", + "en": "A permanently installed barbecue, typically accessible to the public." + }, + "source": { + "osmTags": "amenity=bbq" + }, + "minzoom": 12, + "title": { + "render": { + "en": "BBQ", + "de": "Grillstelle" + } + }, + "titleIcons": [ + "icons.defaults" + ], + "pointRendering": [ + { + "iconSize": "40,40", + "location": [ + "point", + "centroid" + ], + "anchor": "bottom", + "marker": [ + { + "icon": "square_rounded", + "color": "#66332B" + }, + { + "icon": "./assets/layers/assembly_point/fire.svg" + } + ] + } + ], + "presets": [ + { + "title": { + "en": "BBQ", + "de": "Grillstelle" + }, + "description": { + "de": "Ein ortsfest installierter Grill, typischerweise öffentlich zugänglich.", + "en": "A permanently installed barbecue, typically accessible to the public." + }, + "tags": [ + "amenity=bbq" + ] + } + ], + "tagRenderings": [ + "images", + { + "id": "access", + "question": { + "en": "What is the permitted access?", + "de": "Was ist der erlaubte Zugang?" + }, + "mappings": [ + { + "if": "access=yes", + "then": { + "de": "Öffentlich", + "en": "Public" + } + }, + { + "if": "access=no", + "then": { + "de": "Kein Zugang", + "en": "No access" + } + }, + { + "if": "access=private", + "then": { + "de": "Privat", + "en": "Private" + } + }, + { + "if": "access=permissive", + "then": { + "de": "Zugang bis auf Widerruf", + "en": "Access until revoked" + } + }, + { + "if": "access=customers", + "then": { + "de": "Zugang nur für Kunden", + "en": "Access only for customers" + } + }, + { + "if": "access=permit", + "then": { + "de": "Zugang nur für Berechtigte", + "en": "Access only for authorized" + } + }, + { + "if": "access=unknown", + "then": { + "de": "unbekannt", + "en": "Unknown" + } + } + ] + }, + { + "id": "covered", + "question": { + "en": "Is the grill covered?", + "de": "Ist die Grillstelle überdacht?" + }, + "mappings": [ + { + "if": "covered=no", + "then": { + "de": "Die Grillstelle ist nicht überdacht", + "en": "The grill is not covered" + } + }, + { + "if": "covered=yes", + "then": { + "de": "Die Grillstelle ist überdacht", + "en": "The grill is covered" + } + }, + { + "if": "covered=unknown", + "then": { + "de": "unbekannt", + "en": "Unknown" + } + } + ] + }, + { + "id": "fuel", + "question": { + "en": "How ist the grill fueled?", + "de": "Mit was wird die Grillstelle angefeuert?" + }, + "mappings": [ + { + "if": "fuel=wood", + "then": { + "de": "Holz", + "en": "Wood" + } + }, + { + "if": "fuel=charcoal", + "then": { + "de": "Kohle", + "en": "Charcoal" + } + }, + { + "if": "fuel=electric", + "then": { + "de": "Elektronisch", + "en": "Electric" + } + }, + { + "if": "fuel=gas", + "then": { + "de": "Gas", + "en": "Gas" + } + } + ] + } + ], + "allowMove": { + "enableRelocation": false, + "enableImproveAccuracy": true + }, + "passAllFeatures": false +} diff --git a/assets/layers/firepit/firepit.json b/assets/layers/firepit/firepit.json new file mode 100644 index 00000000000..79f8d28fc5a --- /dev/null +++ b/assets/layers/firepit/firepit.json @@ -0,0 +1,154 @@ +{ + "id": "firepit", + "name": { + "en": "Firepitd", + "de": "Feuerstelle" + }, + "description": { + "en": "An outdoor place to make a fire, typically open to the public.", + "de": "Eine Stelle im Freien zum Feuermachen, typischerweise öffentlich zugänglich." + }, + "source": { + "osmTags": "leisure=firepit" + }, + "minzoom": 12, + "title": { + "render": { + "en": "Firepit", + "de": "Feuerstelle" + } + }, + "titleIcons": [ + "icons.defaults" + ], + "pointRendering": [ + { + "iconSize": "40,40", + "location": [ + "point", + "centroid" + ], + "anchor": "bottom", + "marker": [ + { + "icon": "square_rounded", + "color": "#f00000" + }, + { + "icon": "./assets/layers/assembly_point/fire.svg" + } + ] + } + ], + "presets": [ + { + "title": { + "en": "Firepit", + "de": "Feuerstelle" + }, + "description": { + "de": "Eine Stelle im Freien zum Feuermachen, typischerweise öffentlich zugänglich.", + "en": "An outdoor place to make a fire, typically open to the public." + }, + "tags": [ + "leisure=firepit" + ] + } + ], + "tagRenderings": [ + "images", + { + "id": "access", + "question": { + "en": "What is the permitted access?", + "de": "Was ist der erlaubte Zugang?" + }, + "mappings": [ + { + "if": "access=yes", + "then": { + "de": "Öffentlich", + "en": "Public" + } + }, + { + "if": "access=no", + "then": { + "de": "Kein Zugang", + "en": "No access" + } + }, + { + "if": "access=private", + "then": { + "de": "Privat", + "en": "Private" + } + }, + { + "if": "access=permissive", + "then": { + "de": "Zugang bis auf Widerruf", + "en": "Access until revoked" + } + }, + { + "if": "access=customers", + "then": { + "de": "Zugang nur für Kunden", + "en": "Access only for customers" + } + }, + { + "if": "access=permit", + "then": { + "de": "Zugang nur für Berechtigte", + "en": "Access only for authorized" + } + }, + { + "if": "access=unknown", + "then": { + "de": "unbekannt", + "en": "Unknown" + } + } + ] + }, + { + "id": "seasonal", + "question": { + "en": "Is the firepit seasonal?", + "de": "Ist die Feuerstelle saisonal?" + }, + "mappings": [ + { + "if": "seasonal=no", + "then": { + "de": "Die Feuerstelle ist nicht saisonal", + "en": "The firepit is not seasonal" + } + }, + { + "if": "seasonal=yes", + "then": { + "de": "Die Feuerstelle ist saisonal", + "en": "The firepit is seasonal" + } + }, + { + "if": "seasonal=unknown", + "then": { + "de": "unbekannt", + "en": "Unknown" + } + } + ] + } + ], + "allowMove": { + "enableRelocation": false, + "enableImproveAccuracy": true + }, + "passAllFeatures": false +} diff --git a/assets/themes/fireplace/fireplace.json b/assets/themes/fireplace/fireplace.json index 85ade9d1e59..a5c13081ab7 100644 --- a/assets/themes/fireplace/fireplace.json +++ b/assets/themes/fireplace/fireplace.json @@ -10,7 +10,7 @@ }, "icon": "./assets/layers/assembly_point/fire.svg", "layers": [ - "https://studio.mapcomplete.org/20107792/layers/firepit/firepit.json", - "https://studio.mapcomplete.org/20107792/layers/bbq/bbq.json" + "firepit", + "bbq" ] } From 2db0b1afcbbf7c8d8e6174080a1e62295c223e87 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Wed, 10 Jul 2024 10:44:03 +0200 Subject: [PATCH 09/45] Themes: improvements to BBQ, different icons, add some questions, remove 'unknown'-options --- assets/layers/bbq/bbq.json | 30 +---- assets/layers/bbq/bbq.svg | 4 + assets/layers/bbq/bbq.svg.license | 2 + assets/layers/bbq/license_info.json | 12 ++ .../layers/drinking_water/drinking_water.json | 41 ++----- assets/layers/firepit/firepit.json | 42 ++----- assets/layers/questions/questions.json | 34 ++++++ .../mapcomplete-changes.json | 107 ++++++------------ 8 files changed, 109 insertions(+), 163 deletions(-) create mode 100644 assets/layers/bbq/bbq.svg create mode 100644 assets/layers/bbq/bbq.svg.license create mode 100644 assets/layers/bbq/license_info.json diff --git a/assets/layers/bbq/bbq.json b/assets/layers/bbq/bbq.json index 59cab667c8e..a7ed0f5d6fe 100644 --- a/assets/layers/bbq/bbq.json +++ b/assets/layers/bbq/bbq.json @@ -11,16 +11,13 @@ "source": { "osmTags": "amenity=bbq" }, - "minzoom": 12, + "minzoom": 8, "title": { "render": { "en": "BBQ", "de": "Grillstelle" } }, - "titleIcons": [ - "icons.defaults" - ], "pointRendering": [ { "iconSize": "40,40", @@ -31,11 +28,11 @@ "anchor": "bottom", "marker": [ { - "icon": "square_rounded", - "color": "#66332B" + "icon": "circle", + "color": "white" }, { - "icon": "./assets/layers/assembly_point/fire.svg" + "icon": "./assets/layers/bbq/bbq.svg" } ] } @@ -103,14 +100,7 @@ "if": "access=permit", "then": { "de": "Zugang nur für Berechtigte", - "en": "Access only for authorized" - } - }, - { - "if": "access=unknown", - "then": { - "de": "unbekannt", - "en": "Unknown" + "en": "Access only for authorized persons" } } ] @@ -135,13 +125,6 @@ "de": "Die Grillstelle ist überdacht", "en": "The grill is covered" } - }, - { - "if": "covered=unknown", - "then": { - "de": "unbekannt", - "en": "Unknown" - } } ] }, @@ -186,6 +169,5 @@ "allowMove": { "enableRelocation": false, "enableImproveAccuracy": true - }, - "passAllFeatures": false + } } diff --git a/assets/layers/bbq/bbq.svg b/assets/layers/bbq/bbq.svg new file mode 100644 index 00000000000..c540b7d6980 --- /dev/null +++ b/assets/layers/bbq/bbq.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/bbq/bbq.svg.license b/assets/layers/bbq/bbq.svg.license new file mode 100644 index 00000000000..0cf6926f1cf --- /dev/null +++ b/assets/layers/bbq/bbq.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Maki +SPDX-License-Identifier: CC0-1.0 \ No newline at end of file diff --git a/assets/layers/bbq/license_info.json b/assets/layers/bbq/license_info.json new file mode 100644 index 00000000000..51d95c947ca --- /dev/null +++ b/assets/layers/bbq/license_info.json @@ -0,0 +1,12 @@ +[ + { + "path": "bbq.svg", + "license": "CC0-1.0", + "authors": [ + "Maki" + ], + "sources": [ + "https://labs.mapbox.com/maki-icons/" + ] + } +] \ No newline at end of file diff --git a/assets/layers/drinking_water/drinking_water.json b/assets/layers/drinking_water/drinking_water.json index 8862186ee67..296004db380 100644 --- a/assets/layers/drinking_water/drinking_water.json +++ b/assets/layers/drinking_water/drinking_water.json @@ -329,41 +329,16 @@ ] }, { - "id": "seasonal", - "question": { - "en": "Is this drinking water point available all year round?", - "nl": "Is dit drinkwaterpunt heel het jaar door beschikbaar?", - "de": "Ist die Trinkwasserstelle ganzjährig in Betrieb?" - }, - "mappings": [ - { - "if": "seasonal=no", - "then": { - "en": "This drinking water point is available all around the year", - "nl": "Dit drinkwaterpunt is heel het jaar door beschikbaar", - "de": "Die Trinkwasserstelle ist ganzjährig in Betrieb" - } - }, - { - "if": "seasonal=summer", - "then": { - "en": "This drinking water point is only available in summer", - "nl": "Dit drinkwaterpunt is enkel in de zomer beschikbaar", - "de": "Die Trinkwasserstelle ist nur im Sommer in Betrieb" - } - }, - { - "if": "seasonal=spring;summer;autumn", - "icon": "./assets/layers/drinking_water/no_winter.svg", - "then": { - "en": "This drinking water point is closed during the winter", - "nl": "Dit drinkwaterpunt is gesloten in de winter", - "de": "Die Trinkwasserstelle ist im Winter nicht in Betrieb" - } + "builtin": "seasonal", + "override": { + "question": { + "en": "Is this drinking water point available all year round?", + "nl": "Is dit drinkwaterpunt heel het jaar door beschikbaar?", + "de": "Ist die Trinkwasserstelle ganzjährig in Betrieb?" } - ] + } }, - { + { "builtin": "opening_hours_24_7", "override": { "questionHint": { diff --git a/assets/layers/firepit/firepit.json b/assets/layers/firepit/firepit.json index 79f8d28fc5a..9f046a18ed4 100644 --- a/assets/layers/firepit/firepit.json +++ b/assets/layers/firepit/firepit.json @@ -11,7 +11,7 @@ "source": { "osmTags": "leisure=firepit" }, - "minzoom": 12, + "minzoom": 8, "title": { "render": { "en": "Firepit", @@ -31,8 +31,8 @@ "anchor": "bottom", "marker": [ { - "icon": "square_rounded", - "color": "#f00000" + "icon": "circle", + "color": "white" }, { "icon": "./assets/layers/assembly_point/fire.svg" @@ -116,39 +116,17 @@ ] }, { - "id": "seasonal", - "question": { - "en": "Is the firepit seasonal?", - "de": "Ist die Feuerstelle saisonal?" - }, - "mappings": [ - { - "if": "seasonal=no", - "then": { - "de": "Die Feuerstelle ist nicht saisonal", - "en": "The firepit is not seasonal" - } - }, - { - "if": "seasonal=yes", - "then": { - "de": "Die Feuerstelle ist saisonal", - "en": "The firepit is seasonal" - } - }, - { - "if": "seasonal=unknown", - "then": { - "de": "unbekannt", - "en": "Unknown" - } + "builtin": "seasonal", + "override": { + "question": { + "en": "Is the firepit available all around the year?", + "nl": "Is deze kampvuurplaats heel het jaar door beschikbaar?" } - ] + } } ], "allowMove": { "enableRelocation": false, "enableImproveAccuracy": true - }, - "passAllFeatures": false + } } diff --git a/assets/layers/questions/questions.json b/assets/layers/questions/questions.json index 30febaed089..48e4eb2585f 100644 --- a/assets/layers/questions/questions.json +++ b/assets/layers/questions/questions.json @@ -2755,6 +2755,40 @@ "cssClasses": "subtle m-4 italic flex items-center justify-center" } } + }, + { + "id": "seasonal", + "question": { + "en": "Is {title()} available all around the year?", + "nl": "Is {title()} heel het jaar beschikbaar?" + }, + "mappings": [ + { + "if": "seasonal=no", + "then": { + "en": "Available all around the year", + "nl": "Heel het jaar door beschikbaar", + "de": "Ganzjährig in Betrieb" + } + }, + { + "if": "seasonal=summer", + "then": { + "en": "Only available in summer", + "nl": "Enkel in de zomer beschikbaar", + "de": "Nur im Sommer in Betrieb" + } + }, + { + "if": "seasonal=spring;summer;autumn", + "icon": "./assets/layers/drinking_water/no_winter.svg", + "then": { + "en": "Closed during the winter", + "nl": "Gesloten in de winter", + "de": "Im Winter nicht in Betrieb" + } + } + ] } ] } diff --git a/assets/themes/mapcomplete-changes/mapcomplete-changes.json b/assets/themes/mapcomplete-changes/mapcomplete-changes.json index 609aa246ac7..99de2cacb5c 100644 --- a/assets/themes/mapcomplete-changes/mapcomplete-changes.json +++ b/assets/themes/mapcomplete-changes/mapcomplete-changes.json @@ -1,20 +1,13 @@ { "id": "mapcomplete-changes", "title": { - "en": "Changes made with MapComplete", - "da": "Ændringer lavet med MapComplete", - "de": "Änderungen mit MapComplete" + "en": "Changes made with MapComplete" }, "shortDescription": { - "en": "Shows changes made by MapComplete", - "da": "Vis ændringer lavet med MapComplete", - "de": "Änderungen von MapComplete anzeigen" + "en": "Shows changes made by MapComplete" }, "description": { - "en": "This maps shows all the changes made with MapComplete", - "da": "Dette kort viser alle ændringer foretaget med MapComplete", - "de": "Diese Karte zeigt alle mit MapComplete vorgenommenen Änderungen", - "pl": "Ta mapa pokazuje wszystkie zmiany wprowadzone za pomocą MapComplete" + "en": "This maps shows all the changes made with MapComplete" }, "icon": "./assets/svg/logo.svg", "hideFromOverview": true, @@ -25,9 +18,7 @@ { "id": "mapcomplete-changes", "name": { - "en": "Changeset centers", - "de": "Zentrum der Änderungssätze", - "zh_Hant": "變更集中心" + "en": "Changeset centers" }, "minzoom": 0, "source": { @@ -37,51 +28,41 @@ }, "title": { "render": { - "en": "Changeset for {theme}", - "de": "Änderungssatz für {theme}" + "en": "Changeset for {theme}" } }, "description": { - "en": "Shows all MapComplete changes", - "da": "Vis alle MapComplete-ændringer", - "de": "Alle MapComplete-Änderungen anzeigen" + "en": "Shows all MapComplete changes" }, "tagRenderings": [ { "id": "show_changeset_id", "render": { - "en": "Changeset {id}", - "de": "Änderungssatz {id}" + "en": "Changeset {id}" } }, { "id": "contributor", "question": { - "en": "What contributor did make this change?", - "da": "Hvilke bidragsydere lavede denne ændring?", - "de": "Welcher Mitwirkende hat diese Änderung vorgenommen?" + "en": "What contributor did make this change?" }, "freeform": { "key": "user" }, "render": { - "en": "Change made by {user}", - "da": "Ændring lavet af {user}", - "de": "Änderung vorgenommen von {user}" + "en": "Change made by {user}" } }, { "id": "theme-id", "question": { - "en": "What theme was used to make this change?", - "de": "Welches Thema wurde für die Änderung verwendet?" + "en": "What theme was used to make this change?" }, "freeform": { "key": "theme" }, "render": { - "en": "Change with theme {theme}", - "de": "Geändert mit Thema {theme}" + "en": "Change with theme {theme}" } }, { @@ -90,23 +71,19 @@ "key": "locale" }, "question": { - "en": "What locale (language) was this change made in?", - "de": "In welcher Benutzersprache wurde die Änderung vorgenommen?" + "en": "What locale (language) was this change made in?" }, "render": { - "en": "User locale is {locale}", - "de": "Benutzersprache {locale}" + "en": "User locale is {locale}" } }, { "id": "host", "render": { - "en": "Change with with {host}", - "de": "Änderung über {host}" + "en": "Change with with {host}" }, "question": { - "en": "What host (website) was this change made with?", - "de": "Über welchen Host (Webseite) wurde diese Änderung vorgenommen?" + "en": "What host (website) was this change made with?" }, "freeform": { "key": "host" @@ -127,13 +104,10 @@ { "id": "version", "question": { - "en": "What version of MapComplete was used to make this change?", - "de": "Mit welcher MapComplete Version wurde die Änderung vorgenommen?" + "en": "What version of MapComplete was used to make this change?" }, "render": { - "en": "Made with {editor}", - "da": "Lavet med {editor}", - "de": "Erstellt mit {editor}" + "en": "Made with {editor}" }, "freeform": { "key": "editor" @@ -267,6 +241,10 @@ "if": "theme=facadegardens", "then": "./assets/themes/facadegardens/geveltuin.svg" }, + { + "if": "theme=fireplace", + "then": "./assets/layers/assembly_point/fire.svg" + }, { "if": "theme=food", "then": "./assets/layers/food/restaurant.svg" @@ -519,10 +497,7 @@ } ], "question": { - "en": "Themename contains {search}", - "da": "Temanavn indeholder {search}", - "de": "Themenname enthält {search}", - "pl": "Nazwa tematu zawiera {search}" + "en": "Themename contains {search}" } } ] @@ -538,9 +513,7 @@ } ], "question": { - "en": "Themename does not contain {search}", - "da": "Temanavn indeholder ikke {search}", - "de": "Themename enthält not {search}" + "en": "Themename does not contain {search}" } } ] @@ -556,9 +529,7 @@ } ], "question": { - "en": "Made by contributor {search}", - "da": "Lavet af bidragsyder {search}", - "de": "Erstellt vom Mitwirkenden {search}" + "en": "Made by contributor {search}" } } ] @@ -574,9 +545,7 @@ } ], "question": { - "en": "Not made by contributor {search}", - "da": "Ikke lavet af bidragsyder {search}", - "de": "Nicht erstellt von Mitwirkendem {search}" + "en": "Not made by contributor {search}" } } ] @@ -593,9 +562,7 @@ } ], "question": { - "en": "Made before {search}", - "da": "Lavet før {search}", - "de": "Erstellt vor {search}" + "en": "Made before {search}" } } ] @@ -612,9 +579,7 @@ } ], "question": { - "en": "Made after {search}", - "da": "Lavet efter {search}", - "de": "Erstellt nach {search}" + "en": "Made after {search}" } } ] @@ -630,8 +595,7 @@ } ], "question": { - "en": "User language (iso-code) {search}", - "de": "Benutzersprache (ISO-Code) {search}" + "en": "User language (iso-code) {search}" } } ] @@ -647,8 +611,7 @@ } ], "question": { - "en": "Made with host {search}", - "de": "Erstellt mit Host {search}" + "en": "Made with host {search}" } } ] @@ -659,8 +622,7 @@ { "osmTags": "add-image>0", "question": { - "en": "Changeset added at least one image", - "de": "Änderungssatz hat mindestens ein Bild hinzugefügt" + "en": "Changeset added at least one image" } } ] @@ -671,8 +633,7 @@ { "osmTags": "theme!=grb", "question": { - "en": "Exclude GRB theme", - "de": "GRB-Thema ausschließen" + "en": "Exclude GRB theme" } } ] @@ -683,8 +644,7 @@ { "osmTags": "theme!=etymology", "question": { - "en": "Exclude etymology theme", - "de": "Etymologie-Thema ausschließen" + "en": "Exclude etymology theme" } } ] @@ -699,8 +659,7 @@ { "id": "link_to_more", "render": { - "en": "More statistics can be found here", - "de": "Weitere Statistiken gibt es hier" + "en": "More statistics can be found here" } }, { From 195e9b140f4e209b4b496cb07968523e1d70b47f Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Wed, 10 Jul 2024 11:37:18 +0200 Subject: [PATCH 10/45] Translation reset, remove 'unknown' option --- assets/layers/firepit/firepit.json | 7 - langs/layers/de.json | 132 ++++++++++- langs/layers/en.json | 174 ++++++++++++++- langs/layers/fr.json | 344 ++++++++++++++--------------- langs/layers/nl.json | 41 +++- langs/layers/zh_Hant.json | 14 +- langs/themes/da.json | 63 ------ langs/themes/de.json | 131 +---------- langs/themes/en.json | 4 + langs/themes/es.json | 64 +++--- langs/themes/fr.json | 67 +++--- langs/themes/it.json | 2 +- langs/themes/pl.json | 16 -- langs/themes/zh_Hant.json | 17 +- 14 files changed, 564 insertions(+), 512 deletions(-) diff --git a/assets/layers/firepit/firepit.json b/assets/layers/firepit/firepit.json index 9f046a18ed4..bb8dcdcbf24 100644 --- a/assets/layers/firepit/firepit.json +++ b/assets/layers/firepit/firepit.json @@ -105,13 +105,6 @@ "de": "Zugang nur für Berechtigte", "en": "Access only for authorized" } - }, - { - "if": "access=unknown", - "then": { - "de": "unbekannt", - "en": "Unknown" - } } ] }, diff --git a/langs/layers/de.json b/langs/layers/de.json index 1c1f2120d2f..2806789e712 100644 --- a/langs/layers/de.json +++ b/langs/layers/de.json @@ -814,6 +814,72 @@ "render": "Hindernis" } }, + "bbq": { + "description": "Ein ortsfest installierter Grill, typischerweise öffentlich zugänglich.", + "name": "Grillstelle", + "presets": { + "0": { + "description": "Ein ortsfest installierter Grill, typischerweise öffentlich zugänglich.", + "title": "Grillstelle" + } + }, + "tagRenderings": { + "access": { + "mappings": { + "0": { + "then": "Öffentlich" + }, + "1": { + "then": "Kein Zugang" + }, + "2": { + "then": "Privat" + }, + "3": { + "then": "Zugang bis auf Widerruf" + }, + "4": { + "then": "Zugang nur für Kunden" + }, + "5": { + "then": "Zugang nur für Berechtigte" + } + }, + "question": "Was ist der erlaubte Zugang?" + }, + "covered": { + "mappings": { + "0": { + "then": "Die Grillstelle ist nicht überdacht" + }, + "1": { + "then": "Die Grillstelle ist überdacht" + } + }, + "question": "Ist die Grillstelle überdacht?" + }, + "fuel": { + "mappings": { + "0": { + "then": "Holz" + }, + "1": { + "then": "Kohle" + }, + "2": { + "then": "Elektronisch" + }, + "3": { + "then": "Gas" + } + }, + "question": "Mit was wird die Grillstelle angefeuert?" + } + }, + "title": { + "render": "Grillstelle" + } + }, "bench": { "description": "Diese Karte stellt Sitzbänke aus Holz, Metall, Stein, … dar und stellt ein paar Fragen, um weitere Informationen zu ergänzen.", "filter": { @@ -4003,18 +4069,9 @@ "render": "Eine weitere Trinkwasserstelle befindet sich in {_closest_other_drinking_water_distance} Meter" }, "seasonal": { - "mappings": { - "0": { - "then": "Die Trinkwasserstelle ist ganzjährig in Betrieb" - }, - "1": { - "then": "Die Trinkwasserstelle ist nur im Sommer in Betrieb" - }, - "2": { - "then": "Die Trinkwasserstelle ist im Winter nicht in Betrieb" - } - }, - "question": "Ist die Trinkwasserstelle ganzjährig in Betrieb?" + "override": { + "question": "Ist die Trinkwasserstelle ganzjährig in Betrieb?" + } }, "type": { "mappings": { @@ -4615,6 +4672,44 @@ "render": "Feuerwache" } }, + "firepit": { + "description": "Eine Stelle im Freien zum Feuermachen, typischerweise öffentlich zugänglich.", + "name": "Feuerstelle", + "presets": { + "0": { + "description": "Eine Stelle im Freien zum Feuermachen, typischerweise öffentlich zugänglich.", + "title": "Feuerstelle" + } + }, + "tagRenderings": { + "access": { + "mappings": { + "0": { + "then": "Öffentlich" + }, + "1": { + "then": "Kein Zugang" + }, + "2": { + "then": "Privat" + }, + "3": { + "then": "Zugang bis auf Widerruf" + }, + "4": { + "then": "Zugang nur für Kunden" + }, + "5": { + "then": "Zugang nur für Berechtigte" + } + }, + "question": "Was ist der erlaubte Zugang?" + } + }, + "title": { + "render": "Feuerstelle" + } + }, "fitness_centre": { "description": "Ebene mit Fitnessstudios", "name": "Fitnessstudios", @@ -8041,6 +8136,19 @@ "repeated": { "render": "Mehrere identische Objekte können in Geschossen {repeat_on} gefunden werden." }, + "seasonal": { + "mappings": { + "0": { + "then": "Ganzjährig in Betrieb" + }, + "1": { + "then": "Nur im Sommer in Betrieb" + }, + "2": { + "then": "Im Winter nicht in Betrieb" + } + } + }, "service:electricity": { "mappings": { "0": { diff --git a/langs/layers/en.json b/langs/layers/en.json index e4515702d07..f55a61acfd2 100644 --- a/langs/layers/en.json +++ b/langs/layers/en.json @@ -814,6 +814,72 @@ "render": "Barrier" } }, + "bbq": { + "description": "A permanently installed barbecue, typically accessible to the public.", + "name": "BBQ", + "presets": { + "0": { + "description": "A permanently installed barbecue, typically accessible to the public.", + "title": "BBQ" + } + }, + "tagRenderings": { + "access": { + "mappings": { + "0": { + "then": "Public" + }, + "1": { + "then": "No access" + }, + "2": { + "then": "Private" + }, + "3": { + "then": "Access until revoked" + }, + "4": { + "then": "Access only for customers" + }, + "5": { + "then": "Access only for authorized persons" + } + }, + "question": "What is the permitted access?" + }, + "covered": { + "mappings": { + "0": { + "then": "The grill is not covered" + }, + "1": { + "then": "The grill is covered" + } + }, + "question": "Is the grill covered?" + }, + "fuel": { + "mappings": { + "0": { + "then": "Wood" + }, + "1": { + "then": "Charcoal" + }, + "2": { + "then": "Electric" + }, + "3": { + "then": "Gas" + } + }, + "question": "How ist the grill fueled?" + } + }, + "title": { + "render": "BBQ" + } + }, "bench": { "description": "A bench is a wooden, metal, stone, … surface where a human can sit. This layers visualises them and asks a few questions about them.", "filter": { @@ -1120,6 +1186,9 @@ }, "7": { "then": "Bike helmets can be rented here" + }, + "8": { + "then": "Cargo bikes can be rented here" } }, "question": "What kind of bicycles and accessories are rented here?", @@ -4003,18 +4072,9 @@ "render": "There is another drinking water fountain at {_closest_other_drinking_water_distance} meters" }, "seasonal": { - "mappings": { - "0": { - "then": "This drinking water point is available all around the year" - }, - "1": { - "then": "This drinking water point is only available in summer" - }, - "2": { - "then": "This drinking water point is closed during the winter" - } - }, - "question": "Is this drinking water point available all year round?" + "override": { + "question": "Is this drinking water point available all year round?" + } }, "type": { "mappings": { @@ -4615,6 +4675,49 @@ "render": "Fire Station" } }, + "firepit": { + "description": "An outdoor place to make a fire, typically open to the public.", + "name": "Firepitd", + "presets": { + "0": { + "description": "An outdoor place to make a fire, typically open to the public.", + "title": "Firepit" + } + }, + "tagRenderings": { + "access": { + "mappings": { + "0": { + "then": "Public" + }, + "1": { + "then": "No access" + }, + "2": { + "then": "Private" + }, + "3": { + "then": "Access until revoked" + }, + "4": { + "then": "Access only for customers" + }, + "5": { + "then": "Access only for authorized" + } + }, + "question": "What is the permitted access?" + }, + "seasonal": { + "override": { + "question": "Is the firepit available all around the year?" + } + } + }, + "title": { + "render": "Firepit" + } + }, "fitness_centre": { "description": "Layer showing fitness centres", "name": "Fitness Centres", @@ -8041,6 +8144,20 @@ "repeated": { "render": "Multiple, identical objects can be found on floors {repeat_on}." }, + "seasonal": { + "mappings": { + "0": { + "then": "Available all around the year" + }, + "1": { + "then": "Only available in summer" + }, + "2": { + "then": "Closed during the winter" + } + }, + "question": "Is {title()} available all around the year?" + }, "service:electricity": { "mappings": { "0": { @@ -8597,6 +8714,39 @@ }, "question": "Which genders can enroll at this school?" }, + "pedagogy": { + "mappings": { + "0": { + "then": "This school does not use a specific pedagogy" + }, + "1": { + "then": "This school uses the Montessori method of education" + }, + "2": { + "then": "This school is associated with the Freinet Modern School Movement" + }, + "3": { + "then": "This school uses the Jenaplan teaching concept" + }, + "4": { + "then": "This school uses the Steiner/Waldorf educational philosophy" + }, + "5": { + "then": "This school uses the Dalton plan teaching concept" + }, + "6": { + "then": "This school uses outdoor learning" + }, + "7": { + "then": "This school uses the Reggio Emilia approach" + }, + "8": { + "then": "This school uses the Sudbury system" + } + }, + "question": "What educational theory is applied on this school?", + "render": "This school uses {pedagogy}" + }, "school-language": { "render": { "special": { diff --git a/langs/layers/fr.json b/langs/layers/fr.json index bc9c10d0918..b7f5addd52a 100644 --- a/langs/layers/fr.json +++ b/langs/layers/fr.json @@ -35,23 +35,6 @@ "1": { "title": "un panneau à affiches scellé au sol" }, - "10": { - "description": "Une pièce de textile imperméable avec un message imprimé, ancrée de façon permanente sur un mur.", - "title": "une bâche" - }, - "11": { - "title": "un totem" - }, - "12": { - "description": "Désigne une enseigne publicitaire, une enseigne néon, les logos ou des indications d'entrées", - "title": "une enseigne" - }, - "13": { - "title": "une sculpture" - }, - "14": { - "title": "une peinture murale" - }, "2": { "title": "un panneau à affiches monté sur un mur" }, @@ -77,6 +60,23 @@ }, "9": { "title": "un écran fixé sur un abri de transport" + }, + "10": { + "description": "Une pièce de textile imperméable avec un message imprimé, ancrée de façon permanente sur un mur.", + "title": "une bâche" + }, + "11": { + "title": "un totem" + }, + "12": { + "description": "Désigne une enseigne publicitaire, une enseigne néon, les logos ou des indications d'entrées", + "title": "une enseigne" + }, + "13": { + "title": "une sculpture" + }, + "14": { + "title": "une peinture murale" } }, "tagRenderings": { @@ -168,9 +168,6 @@ "1": { "then": "C'est un petit panneau" }, - "10": { - "then": "C'est une peinture murale" - }, "2": { "then": "C'est une colonne" }, @@ -194,6 +191,9 @@ }, "9": { "then": "C'est un totem" + }, + "10": { + "then": "C'est une peinture murale" } }, "question": "De quel type de dispositif publicitaire s'agit-il ?", @@ -205,9 +205,6 @@ "1": { "then": "Petit panneau" }, - "10": { - "then": "Peinture murale" - }, "3": { "then": "Colonne" }, @@ -228,6 +225,9 @@ }, "9": { "then": "Totem" + }, + "10": { + "then": "Peinture murale" } } } @@ -358,15 +358,6 @@ "1": { "then": "Peinture murale" }, - "10": { - "then": "Azulejo (faïence latine)" - }, - "11": { - "then": "Carrelage" - }, - "12": { - "then": "Sculpture sur bois" - }, "2": { "then": "Peinture" }, @@ -390,6 +381,15 @@ }, "9": { "then": "Relief" + }, + "10": { + "then": "Azulejo (faïence latine)" + }, + "11": { + "then": "Carrelage" + }, + "12": { + "then": "Sculpture sur bois" } }, "question": "Quel est le type de cette œuvre d'art ?", @@ -2506,15 +2506,6 @@ "1": { "then": "Cette piste cyclable est goudronée" }, - "10": { - "then": "Cette piste cyclable est faite en graviers fins" - }, - "11": { - "then": "Cette piste cyclable est en cailloux" - }, - "12": { - "then": "Cette piste cyclable est faite en sol brut" - }, "2": { "then": "Cette piste cyclable est asphaltée" }, @@ -2538,6 +2529,15 @@ }, "9": { "then": "Cette piste cyclable est faite en graviers" + }, + "10": { + "then": "Cette piste cyclable est faite en graviers fins" + }, + "11": { + "then": "Cette piste cyclable est en cailloux" + }, + "12": { + "then": "Cette piste cyclable est faite en sol brut" } }, "question": "De quoi est faite la surface de la piste cyclable ?", @@ -2586,15 +2586,6 @@ "1": { "then": "Cette piste cyclable est pavée" }, - "10": { - "then": "Cette piste cyclable est faite en graviers fins" - }, - "11": { - "then": "Cette piste cyclable est en cailloux" - }, - "12": { - "then": "Cette piste cyclable est faite en sol brut" - }, "2": { "then": "Cette piste cyclable est asphaltée" }, @@ -2618,6 +2609,15 @@ }, "9": { "then": "Cette piste cyclable est faite en graviers" + }, + "10": { + "then": "Cette piste cyclable est faite en graviers fins" + }, + "11": { + "then": "Cette piste cyclable est en cailloux" + }, + "12": { + "then": "Cette piste cyclable est faite en sol brut" } }, "question": "De quel materiel est faite cette rue ?", @@ -3467,21 +3467,6 @@ "1": { "then": "C'est une friterie" }, - "10": { - "then": "Des plats chinois sont servis ici" - }, - "11": { - "then": "Des plats grecs sont servis ici" - }, - "12": { - "then": "Des plats indiens sont servis ici" - }, - "13": { - "then": "Des plats turcs sont servis ici" - }, - "14": { - "then": "Des plats thaïlandais sont servis ici" - }, "2": { "then": "Restaurant Italien" }, @@ -3505,6 +3490,21 @@ }, "9": { "then": "Des plats français sont servis ici" + }, + "10": { + "then": "Des plats chinois sont servis ici" + }, + "11": { + "then": "Des plats grecs sont servis ici" + }, + "12": { + "then": "Des plats indiens sont servis ici" + }, + "13": { + "then": "Des plats turcs sont servis ici" + }, + "14": { + "then": "Des plats thaïlandais sont servis ici" } }, "question": "Quelle type de nourriture est servie ici ?", @@ -3898,11 +3898,11 @@ }, "room-type": { "mappings": { - "14": { - "then": "C'est un bureau" - }, "4": { "then": "C'est une salle de classe" + }, + "14": { + "then": "C'est un bureau" } } } @@ -4183,18 +4183,6 @@ "1": { "then": "C'est une plaque" }, - "10": { - "then": "C'est une croix" - }, - "11": { - "then": "C'est une plaque bleue (spécifique aux pays anglo-saxons)" - }, - "12": { - "then": "C'est un char historique, placé de manière permanente dans l'espace public comme mémorial" - }, - "13": { - "then": "C'est un arbre du souvenir" - }, "2": { "then": "C'est un banc commémoratif" }, @@ -4218,6 +4206,18 @@ }, "9": { "then": "C'est un obélisque" + }, + "10": { + "then": "C'est une croix" + }, + "11": { + "then": "C'est une plaque bleue (spécifique aux pays anglo-saxons)" + }, + "12": { + "then": "C'est un char historique, placé de manière permanente dans l'espace public comme mémorial" + }, + "13": { + "then": "C'est un arbre du souvenir" } }, "question": "C'est un mémorial de guerre", @@ -4355,13 +4355,6 @@ }, "note": { "filter": { - "10": { - "options": { - "0": { - "question": "Toutes les notes" - } - } - }, "2": { "options": { "0": { @@ -4424,7 +4417,6 @@ "question": "Toutes les notes" } } - } }, "name": "Notes OpenStreetMap", @@ -5400,6 +5392,30 @@ "1": { "question": "Recyclage de piles et batteries domestiques" }, + "2": { + "question": "Recyclage d'emballage de boissons" + }, + "3": { + "question": "Recyclage de boites de conserve et de canettes" + }, + "4": { + "question": "Recyclage de vêtements" + }, + "5": { + "question": "Recyclage des huiles de friture" + }, + "6": { + "question": "Recyclage des huiles de moteur" + }, + "7": { + "question": "Recyclage des lampes fluorescentes" + }, + "8": { + "question": "Recyclage des déchets verts" + }, + "9": { + "question": "Recyclage des bouteilles en verre et des bocaux" + }, "10": { "question": "Recyclage de tout type de verre" }, @@ -5430,35 +5446,11 @@ "19": { "question": "Recyclage des autres déchets" }, - "2": { - "question": "Recyclage d'emballage de boissons" - }, "20": { "question": "Recyclage des cartouches d'imprimante" }, "21": { "question": "Recyclage des vélos" - }, - "3": { - "question": "Recyclage de boites de conserve et de canettes" - }, - "4": { - "question": "Recyclage de vêtements" - }, - "5": { - "question": "Recyclage des huiles de friture" - }, - "6": { - "question": "Recyclage des huiles de moteur" - }, - "7": { - "question": "Recyclage des lampes fluorescentes" - }, - "8": { - "question": "Recyclage des déchets verts" - }, - "9": { - "question": "Recyclage des bouteilles en verre et des bocaux" } } }, @@ -5521,6 +5513,30 @@ "1": { "then": "Les briques alimentaires en carton peuvent être recyclées ici" }, + "2": { + "then": "Les boites de conserve et canettes peuvent être recyclées ici" + }, + "3": { + "then": "Les vêtements peuvent être recyclés ici" + }, + "4": { + "then": "Les huiles de friture peuvent être recyclées ici" + }, + "5": { + "then": "Les huiles de moteur peuvent être recyclées ici" + }, + "6": { + "then": "Les lampes fluorescentes peuvent être recyclées ici" + }, + "7": { + "then": "Les déchets verts peuvent être recyclés ici" + }, + "8": { + "then": "Les déchets organiques peuvent être recyclés ici" + }, + "9": { + "then": "Les bouteilles en verre et bocaux peuvent être recyclés ici" + }, "10": { "then": "Tout type de verre peut être recyclé ici" }, @@ -5548,9 +5564,6 @@ "19": { "then": "La ferraille peut être recyclée ici" }, - "2": { - "then": "Les boites de conserve et canettes peuvent être recyclées ici" - }, "20": { "then": "Les chaussures peuvent être recyclées ici" }, @@ -5568,27 +5581,6 @@ }, "25": { "then": "Les vélos peuvent être recyclés ici" - }, - "3": { - "then": "Les vêtements peuvent être recyclés ici" - }, - "4": { - "then": "Les huiles de friture peuvent être recyclées ici" - }, - "5": { - "then": "Les huiles de moteur peuvent être recyclées ici" - }, - "6": { - "then": "Les lampes fluorescentes peuvent être recyclées ici" - }, - "7": { - "then": "Les déchets verts peuvent être recyclés ici" - }, - "8": { - "then": "Les déchets organiques peuvent être recyclés ici" - }, - "9": { - "then": "Les bouteilles en verre et bocaux peuvent être recyclés ici" } }, "question": "Que peut-on recycler ici ?" @@ -7037,27 +7029,6 @@ "1": { "question": "Vente de boissons" }, - "10": { - "question": "Vente de lait" - }, - "11": { - "question": "Vente de pain" - }, - "12": { - "question": "Vente d'œufs" - }, - "13": { - "question": "Vente de fromage" - }, - "14": { - "question": "Vente de miel" - }, - "15": { - "question": "Vente de pommes de terre" - }, - "19": { - "question": "Vente de fleurs" - }, "2": { "question": "Ventre de confiseries" }, @@ -7081,6 +7052,27 @@ }, "9": { "question": "Vente de chambres à air pour vélo" + }, + "10": { + "question": "Vente de lait" + }, + "11": { + "question": "Vente de pain" + }, + "12": { + "question": "Vente d'œufs" + }, + "13": { + "question": "Vente de fromage" + }, + "14": { + "question": "Vente de miel" + }, + "15": { + "question": "Vente de pommes de terre" + }, + "19": { + "question": "Vente de fleurs" } } } @@ -7138,24 +7130,6 @@ "1": { "then": "Vent des confiseries" }, - "10": { - "then": "Vent du pain" - }, - "11": { - "then": "Vent des œufs" - }, - "12": { - "then": "Vent du fromage" - }, - "13": { - "then": "Vent du miel" - }, - "14": { - "then": "Vent des pommes de terre" - }, - "18": { - "then": "Vent des fleurs" - }, "2": { "then": "Vent de la nourriture" }, @@ -7179,6 +7153,24 @@ }, "9": { "then": "Vent du lait" + }, + "10": { + "then": "Vent du pain" + }, + "11": { + "then": "Vent des œufs" + }, + "12": { + "then": "Vent du fromage" + }, + "13": { + "then": "Vent du miel" + }, + "14": { + "then": "Vent des pommes de terre" + }, + "18": { + "then": "Vent des fleurs" } }, "question": "Que vent ce distributeur ?", @@ -7381,4 +7373,4 @@ "render": "éolienne" } } -} +} \ No newline at end of file diff --git a/langs/layers/nl.json b/langs/layers/nl.json index 3895e760bf2..4ddaf6cee23 100644 --- a/langs/layers/nl.json +++ b/langs/layers/nl.json @@ -836,6 +836,9 @@ }, "7": { "then": "Fietshelmen kunnen hier gehuurd worden" + }, + "8": { + "then": "Bakfietsen kunnen hier gehuurd worden" } }, "question": "Wat voor soort fietsen en fietstoebehoren worden hier verhuurd?", @@ -3640,18 +3643,9 @@ "render": "Er bevindt zich een ander drinkwaterpunt op {_closest_other_drinking_water_distance} meter" }, "seasonal": { - "mappings": { - "0": { - "then": "Dit drinkwaterpunt is heel het jaar door beschikbaar" - }, - "1": { - "then": "Dit drinkwaterpunt is enkel in de zomer beschikbaar" - }, - "2": { - "then": "Dit drinkwaterpunt is gesloten in de winter" - } - }, - "question": "Is dit drinkwaterpunt heel het jaar door beschikbaar?" + "override": { + "question": "Is dit drinkwaterpunt heel het jaar door beschikbaar?" + } }, "type": { "mappings": { @@ -4041,6 +4035,15 @@ "render": "Brandweerstation" } }, + "firepit": { + "tagRenderings": { + "seasonal": { + "override": { + "question": "Is deze kampvuurplaats heel het jaar door beschikbaar?" + } + } + } + }, "fitness_centre": { "description": "Laag die fitnesscentra toon", "name": "Fitnesscentra", @@ -6674,6 +6677,20 @@ "repeated": { "render": "Er zijn verschillende, identieke objecten op verdiepingen {repeat_on}." }, + "seasonal": { + "mappings": { + "0": { + "then": "Heel het jaar door beschikbaar" + }, + "1": { + "then": "Enkel in de zomer beschikbaar" + }, + "2": { + "then": "Gesloten in de winter" + } + }, + "question": "Is {title()} heel het jaar beschikbaar?" + }, "service:electricity": { "mappings": { "0": { diff --git a/langs/layers/zh_Hant.json b/langs/layers/zh_Hant.json index fbd88d294fd..615b0e8fd24 100644 --- a/langs/layers/zh_Hant.json +++ b/langs/layers/zh_Hant.json @@ -56,12 +56,6 @@ "1": { "then": "壁畫" }, - "10": { - "then": "Azulejo (西班牙雕塑作品名稱)" - }, - "11": { - "then": "瓷磚" - }, "2": { "then": "繪畫" }, @@ -85,6 +79,12 @@ }, "9": { "then": "寬慰" + }, + "10": { + "then": "Azulejo (西班牙雕塑作品名稱)" + }, + "11": { + "then": "瓷磚" } }, "question": "這是什麼類型的藝術品?", @@ -936,4 +936,4 @@ "render": "風機" } } -} +} \ No newline at end of file diff --git a/langs/themes/da.json b/langs/themes/da.json index a72e86055db..b3e5c929d76 100644 --- a/langs/themes/da.json +++ b/langs/themes/da.json @@ -724,69 +724,6 @@ "lighthouses": { "title": "Fyrtårne" }, - "mapcomplete-changes": { - "description": "Dette kort viser alle ændringer foretaget med MapComplete", - "layers": { - "0": { - "description": "Vis alle MapComplete-ændringer", - "filter": { - "0": { - "options": { - "0": { - "question": "Temanavn indeholder {search}" - } - } - }, - "1": { - "options": { - "0": { - "question": "Temanavn indeholder ikke {search}" - } - } - }, - "2": { - "options": { - "0": { - "question": "Lavet af bidragsyder {search}" - } - } - }, - "3": { - "options": { - "0": { - "question": "Ikke lavet af bidragsyder {search}" - } - } - }, - "4": { - "options": { - "0": { - "question": "Lavet før {search}" - } - } - }, - "5": { - "options": { - "0": { - "question": "Lavet efter {search}" - } - } - } - }, - "tagRenderings": { - "contributor": { - "question": "Hvilke bidragsydere lavede denne ændring?", - "render": "Ændring lavet af {user}" - }, - "version": { - "render": "Lavet med {editor}" - } - } - } - }, - "shortDescription": "Vis ændringer lavet med MapComplete", - "title": "Ændringer lavet med MapComplete" - }, "maproulette": { "description": "Tema, der viser MapRoulette-opgaver, så du kan søge, filtrere og rette dem.", "title": "KortRoulette-opgaver" diff --git a/langs/themes/de.json b/langs/themes/de.json index 199bc820a9c..34d807037f5 100644 --- a/langs/themes/de.json +++ b/langs/themes/de.json @@ -780,6 +780,10 @@ "shortDescription": "Diese Karte zeigt Fassadengärten mit Bildern und Details zu Ausrichtung, Sonneneinstrahlung und Pflanzen.", "title": "Fassadengärten" }, + "fireplace": { + "description": "Outdoor place to make a fire or a fixed barbecue in an official place.", + "title": "Feuerstellen und Grillstellen" + }, "food": { "description": "Restaurants und Schnellimbisse", "title": "Restaurants und Schnellimbisse" @@ -979,133 +983,6 @@ "description": "Leuchttürme sind hohe Gebäude mit einem Licht an der Spitze, das den Schiffsverkehr leitet.", "title": "Leuchttürme" }, - "mapcomplete-changes": { - "description": "Diese Karte zeigt alle mit MapComplete vorgenommenen Änderungen", - "layers": { - "0": { - "description": "Alle MapComplete-Änderungen anzeigen", - "filter": { - "0": { - "options": { - "0": { - "question": "Themenname enthält {search}" - } - } - }, - "1": { - "options": { - "0": { - "question": "Themename enthält not {search}" - } - } - }, - "2": { - "options": { - "0": { - "question": "Erstellt vom Mitwirkenden {search}" - } - } - }, - "3": { - "options": { - "0": { - "question": "Nicht erstellt von Mitwirkendem {search}" - } - } - }, - "4": { - "options": { - "0": { - "question": "Erstellt vor {search}" - } - } - }, - "5": { - "options": { - "0": { - "question": "Erstellt nach {search}" - } - } - }, - "6": { - "options": { - "0": { - "question": "Benutzersprache (ISO-Code) {search}" - } - } - }, - "7": { - "options": { - "0": { - "question": "Erstellt mit Host {search}" - } - } - }, - "8": { - "options": { - "0": { - "question": "Änderungssatz hat mindestens ein Bild hinzugefügt" - } - } - }, - "9": { - "options": { - "0": { - "question": "GRB-Thema ausschließen" - } - } - }, - "10": { - "options": { - "0": { - "question": "Etymologie-Thema ausschließen" - } - } - } - }, - "name": "Zentrum der Änderungssätze", - "tagRenderings": { - "contributor": { - "question": "Welcher Mitwirkende hat diese Änderung vorgenommen?", - "render": "Änderung vorgenommen von {user}" - }, - "host": { - "question": "Über welchen Host (Webseite) wurde diese Änderung vorgenommen?", - "render": "Änderung über {host}" - }, - "locale": { - "question": "In welcher Benutzersprache wurde die Änderung vorgenommen?", - "render": "Benutzersprache {locale}" - }, - "show_changeset_id": { - "render": "Änderungssatz {id}" - }, - "theme-id": { - "question": "Welches Thema wurde für die Änderung verwendet?", - "render": "Geändert mit Thema {theme}" - }, - "version": { - "question": "Mit welcher MapComplete Version wurde die Änderung vorgenommen?", - "render": "Erstellt mit {editor}" - } - }, - "title": { - "render": "Änderungssatz für {theme}" - } - }, - "1": { - "override": { - "tagRenderings+": { - "0": { - "render": "Weitere Statistiken gibt es hier" - } - } - } - } - }, - "shortDescription": "Änderungen von MapComplete anzeigen", - "title": "Änderungen mit MapComplete" - }, "maproulette": { "description": "Thema mit MapRoulette-Aufgaben, die Sie suchen, filtern und beheben können.", "title": "MapRoulette-Aufgaben" diff --git a/langs/themes/en.json b/langs/themes/en.json index b35501f1738..9a20401c7ab 100644 --- a/langs/themes/en.json +++ b/langs/themes/en.json @@ -780,6 +780,10 @@ "shortDescription": "This map shows facade gardens with pictures and useful info about orientation, sunshine and plant types.", "title": "Facade gardens" }, + "fireplace": { + "description": "Stelle im Freien zum Feuermachen oder ein ortsfest installierter Grill an einer offizielle Stelle.", + "title": "Fireplaces and BBQ" + }, "food": { "description": "Restaurants and fast food", "title": "Restaurants and fast food" diff --git a/langs/themes/es.json b/langs/themes/es.json index 7e7471c9770..77077116cab 100644 --- a/langs/themes/es.json +++ b/langs/themes/es.json @@ -956,33 +956,6 @@ "onwheels": { "description": "En este mapa se muestran los lugares accesibles al público en silla de ruedas, que pueden añadirse fácilmente", "layers": { - "19": { - "override": { - "=title": { - "render": "Estadísticas" - } - } - }, - "20": { - "override": { - "+tagRenderings": { - "0": { - "render": { - "special": { - "text": "Importar" - } - } - }, - "1": { - "render": { - "special": { - "message": "Añadir todas las etiquetas sugeridas" - } - } - } - } - } - }, "4": { "override": { "filter": { @@ -1025,6 +998,33 @@ "override": { "name": "Plazas de aparcamiento para discapacitados" } + }, + "19": { + "override": { + "=title": { + "render": "Estadísticas" + } + } + }, + "20": { + "override": { + "+tagRenderings": { + "0": { + "render": { + "special": { + "text": "Importar" + } + } + }, + "1": { + "render": { + "special": { + "message": "Añadir todas las etiquetas sugeridas" + } + } + } + } + } } }, "title": "Sobre ruedas" @@ -1240,6 +1240,10 @@ "stations": { "description": "Ver, editar y añadir detalles a una estación de tren", "layers": { + "3": { + "description": "Capa que muestra las estaciones de tren", + "name": "Estación de Tren" + }, "16": { "description": "Pantallas que muestran los trenes que saldrán de esta estación", "name": "Tableros de salidas", @@ -1271,10 +1275,6 @@ "title": { "render": "Tablero de salidas" } - }, - "3": { - "description": "Capa que muestra las estaciones de tren", - "name": "Estación de Tren" } }, "title": "Estaciones de tren" @@ -1453,4 +1453,4 @@ "shortDescription": "Un mapa con papeleras", "title": "Papeleras" } -} +} \ No newline at end of file diff --git a/langs/themes/fr.json b/langs/themes/fr.json index 6e00ca16025..33012509327 100644 --- a/langs/themes/fr.json +++ b/langs/themes/fr.json @@ -833,9 +833,6 @@ }, "title": "Ressauts et traversées" }, - "mapcomplete-changes": { - "title": "Modifications faites avec MapComplete" - }, "maproulette": { "description": "Thème MapRoulette permettant d’afficher, rechercher, filtrer et résoudre les tâches.", "title": "Tâches MapRoulette" @@ -871,33 +868,6 @@ "onwheels": { "description": "Sur cette carte nous pouvons voir et ajouter les différents endroits publiques accessibles aux chaises roulantes", "layers": { - "19": { - "override": { - "=title": { - "render": "Statistiques" - } - } - }, - "20": { - "override": { - "+tagRenderings": { - "0": { - "render": { - "special": { - "text": "Importation" - } - } - }, - "1": { - "render": { - "special": { - "message": "Ajouter tous les attributs suggérés" - } - } - } - } - } - }, "4": { "override": { "filter": { @@ -940,6 +910,33 @@ "override": { "name": "Places de stationnement pour personnes handicapées" } + }, + "19": { + "override": { + "=title": { + "render": "Statistiques" + } + } + }, + "20": { + "override": { + "+tagRenderings": { + "0": { + "render": { + "special": { + "text": "Importation" + } + } + }, + "1": { + "render": { + "special": { + "message": "Ajouter tous les attributs suggérés" + } + } + } + } + } } }, "title": "OnWheels" @@ -1103,6 +1100,10 @@ "stations": { "description": "Voir, modifier et ajouter des détails à une gare ferroviaire", "layers": { + "3": { + "description": "Couche montrant les gares", + "name": "Gares ferroviaires" + }, "16": { "description": "Panneau affichant les trains au départ depuis cette gare", "name": "Panneaux des départs", @@ -1134,10 +1135,6 @@ "title": { "render": "Tableau des départs" } - }, - "3": { - "description": "Couche montrant les gares", - "name": "Gares ferroviaires" } }, "title": "Gares ferroviaires" @@ -1259,4 +1256,4 @@ "shortDescription": "Une carte des poubelles", "title": "Poubelles" } -} +} \ No newline at end of file diff --git a/langs/themes/it.json b/langs/themes/it.json index ed7032dba55..8df4205ae5a 100644 --- a/langs/themes/it.json +++ b/langs/themes/it.json @@ -714,4 +714,4 @@ "shortDescription": "Una cartina dei cestini dei rifiuti", "title": "Cestino dei rifiuti" } -} +} \ No newline at end of file diff --git a/langs/themes/pl.json b/langs/themes/pl.json index e05fd614197..be020293a4e 100644 --- a/langs/themes/pl.json +++ b/langs/themes/pl.json @@ -855,22 +855,6 @@ }, "title": "Krawężniki i przejścia" }, - "mapcomplete-changes": { - "description": "Ta mapa pokazuje wszystkie zmiany wprowadzone za pomocą MapComplete", - "layers": { - "0": { - "filter": { - "0": { - "options": { - "0": { - "question": "Nazwa tematu zawiera {search}" - } - } - } - } - } - } - }, "maproulette": { "description": "Temat pokazujący zadania MapRoulette, umożliwiający ich wyszukiwanie, filtrowanie i naprawianie.", "title": "Zadania MapRoulette" diff --git a/langs/themes/zh_Hant.json b/langs/themes/zh_Hant.json index d1ef5380c9d..b291c75af78 100644 --- a/langs/themes/zh_Hant.json +++ b/langs/themes/zh_Hant.json @@ -421,13 +421,6 @@ "indoors": { "title": "室內" }, - "mapcomplete-changes": { - "layers": { - "0": { - "name": "變更集中心" - } - } - }, "maproulette": { "title": "MapRoulette 任務" }, @@ -597,6 +590,10 @@ }, "stations": { "layers": { + "3": { + "description": "顯示火車站的圖層", + "name": "火車站" + }, "16": { "name": "出發板", "presets": { @@ -617,10 +614,6 @@ "title": { "render": "時刻表" } - }, - "3": { - "description": "顯示火車站的圖層", - "name": "火車站" } }, "title": "火車站" @@ -722,4 +715,4 @@ "shortDescription": "垃圾筒的地圖", "title": "垃圾筒" } -} +} \ No newline at end of file From 3bb73425e36fb4a089097b44f0428892c6a0c23f Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Wed, 10 Jul 2024 11:40:00 +0200 Subject: [PATCH 11/45] Refactoring: remove last of old SVG-bundling --- scripts/generateIncludedImages.ts | 151 +++---------------- src/UI/Base/Loading.ts | 6 +- src/UI/Image/DeleteImage.ts | 5 +- src/UI/OpeningHours/OpeningHoursRange.ts | 5 +- src/UI/Popup/ImportButtons/ImportFlow.svelte | 7 +- src/UI/Popup/LoginButton.ts | 10 +- src/UI/Popup/Notes/CreateNewNote.svelte | 5 +- src/UI/Popup/SendEmail.svelte | 2 - 8 files changed, 38 insertions(+), 153 deletions(-) diff --git a/scripts/generateIncludedImages.ts b/scripts/generateIncludedImages.ts index 6b256bc70a1..d31dd6b17d4 100644 --- a/scripts/generateIncludedImages.ts +++ b/scripts/generateIncludedImages.ts @@ -1,118 +1,9 @@ import * as fs from "fs" +import Script from "./Script" function genImages(dryrun = false) { console.log("Generating images") - // These images are not referenced via 'Svg.ts' anymore and can be ignored - const blacklist: string[] = [ - "add", - "addSmall", - "back", - "circle", - "blocked", - "brick_wall", - "brick_wall_raw", - "brick_wall_round", - "brick_wall_square", - "bug", - "center", - "checkmark", - "clock", - "close", - "community", - "compass", - "compass_arrow", - "confirm", - "copyright", - "cross", - "cross_bottom_right", - "crosshair", - "crosshair_locked", - "crosshair-locked", - "delete_not_allowed", - "direction_gradient", - "direction_stroke", - "duplicate", - "elevator", - "elevator_wheelchair", - "envelope", - "eye", - "filter", - "filter_disable", - "floppy", - "gear", - "gender_bi", - "gender_inter", - "gender_female", - "gender_male", - "gender_trans", - "gender_queer", - "generic_map", - "gps_arrow", - "hand", - "help", - "home", - "length_crosshair", - "length-crosshair", - "liberapay", - "location", - "location_empty", - "location_locked", - "location_refused", - "location-refused", - "location_unlocked", - "logo", - "logout", - "mapcomplete_logo", - "mapillary", - "mapillary_black", - "mastodon", - "min", - "move", - "move-arrows", - "move_confirm", - "move_not_allowed", - "not_found", - "osm_logo_us", - "osm-logo-us", - "party", - "pencil", - "person", - "pin", - "plantnet_logo", - "plus", - "reload", - "resolved", - "ring", - "robot", - "scissors", - "search", - "search_disable", - "share", - "SocialImageForeground", - "speech_bubble", - "speech_bubble_black_outline", - "square", - "square_rounded", - "star", - "star_half", - "star_outline", - "teardrop", - "teardrop_with_hole_green", - "statistics", - "translate", - "triangle", - "up", - "Upload", - "wikidata", - "wikimedia-commons-white", - "wikimedia_commons_white", - "wikipedia", - "github", - ].map((s) => s.toLowerCase()) const dir = fs.readdirSync("./assets/svg") - - let module = - 'import Img from "./UI/Base/Img";\n\n/* @deprecated */\nexport default class Svg {\n\n\n' for (const path of dir) { if (path.endsWith("license_info.json")) { continue @@ -133,7 +24,7 @@ function genImages(dryrun = false) { .replace(/\n/g, " ") .replace(/\r/g, "") .replace(/\\/g, "\\") - .replace(/"/g, '\\"') + .replace(/"/g, "\\\"") .replaceAll(" ", " ") let hasNonAsciiChars = Array.from(svg) @@ -147,35 +38,29 @@ function genImages(dryrun = false) { const nameUC = name.toUpperCase().at(0) + name.substring(1) const svelteCode = - '\n' + + "\n" + svg .replace( " path.toLowerCase().endsWith(item + ".svg"))) { - continue - } - if (dryrun) { - svg = "" - } - - let rawName = name - - module += ` public static ${name} = "${svg}"\n` - if (!dryrun) { - module += ` public static ${name}_svg() { return new Img(Svg.${rawName}, true);}\n` - } else { - module += ` public static ${name}_svg() { return new Img("", true);}\n` - } } - module += "}\n" - fs.writeFileSync("src/Svg.ts", module) - console.log("Done") } -genImages() + +class GenerateIncludedImages extends Script { + constructor() { + super("Converts all images from assets/svg into svelte-classes.") + } + + async main(args: string[]): Promise { + genImages() + + } +} + +new GenerateIncludedImages().run() diff --git a/src/UI/Base/Loading.ts b/src/UI/Base/Loading.ts index b6e0b577ab1..f63a3813de6 100644 --- a/src/UI/Base/Loading.ts +++ b/src/UI/Base/Loading.ts @@ -1,14 +1,14 @@ import Combine from "./Combine" -import Svg from "../../Svg" import Translations from "../i18n/Translations" import BaseUIElement from "../BaseUIElement" - +import SvelteUIElement from "./SvelteUIElement" +import {default as LoadingSvg} from "../../assets/svg/Loading.svelte" export default class Loading extends Combine { constructor(msg?: BaseUIElement | string) { const t = Translations.W(msg) ?? Translations.t.general.loading t.SetClass("pl-2") super([ - Svg.loading_svg() + new SvelteUIElement(LoadingSvg) .SetClass("animate-spin self-center") .SetStyle("width: 1.5rem; height: 1.5rem; min-width: 1.5rem;"), t, diff --git a/src/UI/Image/DeleteImage.ts b/src/UI/Image/DeleteImage.ts index 93f182e2296..76021356387 100644 --- a/src/UI/Image/DeleteImage.ts +++ b/src/UI/Image/DeleteImage.ts @@ -2,12 +2,13 @@ import { Store } from "../../Logic/UIEventSource" import Translations from "../i18n/Translations" import Toggle, { ClickableToggle } from "../Input/Toggle" import Combine from "../Base/Combine" -import Svg from "../../Svg" import { Tag } from "../../Logic/Tags/Tag" import ChangeTagAction from "../../Logic/Osm/Actions/ChangeTagAction" import { Changes } from "../../Logic/Osm/Changes" import { OsmConnection } from "../../Logic/Osm/OsmConnection" import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig" +import SvelteUIElement from "../Base/SvelteUIElement" +import Delete_icon from "../../assets/svg/Delete_icon.svelte" export default class DeleteImage extends Toggle { constructor( @@ -48,7 +49,7 @@ export default class DeleteImage extends Toggle { .Clone() .SetClass("bg-white pl-4 pr-4") .SetStyle("border-bottom-left-radius:30rem; border-bottom-right-radius: 30rem;") - const openDelete = Svg.delete_icon_svg().SetStyle("width: 2em; height: 2em; display:block;") + const openDelete = new SvelteUIElement(Delete_icon).SetStyle("width: 2em; height: 2em; display:block;") const deleteDialog = new ClickableToggle( new Combine([deleteButton, cancelButton]).SetClass("flex flex-col background-black"), openDelete diff --git a/src/UI/OpeningHours/OpeningHoursRange.ts b/src/UI/OpeningHours/OpeningHoursRange.ts index edf8347f6bb..45e210cd2a1 100644 --- a/src/UI/OpeningHours/OpeningHoursRange.ts +++ b/src/UI/OpeningHours/OpeningHoursRange.ts @@ -1,12 +1,13 @@ /** * A single opening hours range, shown on top of the OH-picker table */ -import Svg from "../../Svg" import { Utils } from "../../Utils" import Combine from "../Base/Combine" import { OH, OpeningHour } from "./OpeningHours" import BaseUIElement from "../BaseUIElement" import { FixedUiElement } from "../Base/FixedUiElement" +import SvelteUIElement from "../Base/SvelteUIElement" +import Delete_icon from "../../assets/svg/Delete_icon.svelte" export default class OpeningHoursRange extends BaseUIElement { private _oh: OpeningHour @@ -30,7 +31,7 @@ export default class OpeningHoursRange extends BaseUIElement { Utils.TwoDigits(oh.endHour) + ":" + Utils.TwoDigits(oh.endMinutes) ) - const deleteRange = Svg.delete_icon_svg() + const deleteRange = new SvelteUIElement(Delete_icon) .SetClass("rounded-full w-6 h-6 block bg-black pointer-events-auto ") .onClick(() => { this._onDelete() diff --git a/src/UI/Popup/ImportButtons/ImportFlow.svelte b/src/UI/Popup/ImportButtons/ImportFlow.svelte index 9b5062dfe2b..4614ab601c6 100644 --- a/src/UI/Popup/ImportButtons/ImportFlow.svelte +++ b/src/UI/Popup/ImportButtons/ImportFlow.svelte @@ -16,11 +16,10 @@ import TagHint from "../TagHint.svelte" import { TagsFilter } from "../../../Logic/Tags/TagsFilter" import { Store } from "../../../Logic/UIEventSource" - import Svg from "../../../Svg" - import ToSvelte from "../../Base/ToSvelte.svelte" import { EyeIcon, EyeOffIcon } from "@rgossiaux/svelte-heroicons/solid" import FilteredLayer from "../../../Models/FilteredLayer" import Confirm from "../../../assets/svg/Confirm.svelte" + import Layers from "../../../assets/svg/Layers.svelte" export let importFlow: ImportFlow let state = importFlow.state @@ -77,7 +76,7 @@ state.guistate.openFilterView(filteredLayer.layerDef) }} > - +
@@ -120,7 +119,7 @@ state.guistate.openFilterView(filteredLayer.layerDef) }} > - +
diff --git a/src/UI/Popup/LoginButton.ts b/src/UI/Popup/LoginButton.ts index d47f22b1327..846a5f4f118 100644 --- a/src/UI/Popup/LoginButton.ts +++ b/src/UI/Popup/LoginButton.ts @@ -1,6 +1,5 @@ import { SubtleButton } from "../Base/SubtleButton" import BaseUIElement from "../BaseUIElement" -import Svg from "../../Svg" import { OsmConnection, OsmServiceState } from "../../Logic/Osm/OsmConnection" import { VariableUiElement } from "../Base/VariableUIElement" import Loading from "../Base/Loading" @@ -8,6 +7,9 @@ import Translations from "../i18n/Translations" import { ImmutableStore, Store } from "../../Logic/UIEventSource" import Combine from "../Base/Combine" import { Translation } from "../i18n/Translation" +import SvelteUIElement from "../Base/SvelteUIElement" +import Login from "../../assets/svg/Login.svelte" +import Invalid from "../../assets/svg/Invalid.svelte" class LoginButton extends SubtleButton { constructor( @@ -17,7 +19,7 @@ class LoginButton extends SubtleButton { }, icon?: BaseUIElement | string ) { - super(icon ?? Svg.login_svg(), text) + super(icon ?? new SvelteUIElement(Login), text) this.onClick(() => { state.osmConnection?.AttemptLogin() }) @@ -65,7 +67,7 @@ export class LoginToggle extends VariableUiElement { const apiTranslation = offlineModes[apiState] if (apiTranslation !== undefined) { return new Combine([ - Svg.invalid_svg().SetClass("w-8 h-8 m-2 shrink-0"), + new SvelteUIElement(Invalid).SetClass("w-8 h-8 m-2 shrink-0"), apiTranslation, ]).SetClass("flex items-center alert max-w-64") } @@ -84,7 +86,7 @@ export class LoginToggle extends VariableUiElement { return new LoginButton( Translations.t.general.loginFailed, state, - Svg.invalid_svg() + new SvelteUIElement(Invalid) ) }, [state.featureSwitchUserbadge, state.osmConnection?.apiIsOnline] diff --git a/src/UI/Popup/Notes/CreateNewNote.svelte b/src/UI/Popup/Notes/CreateNewNote.svelte index 648e2e6dd89..01c660173c0 100644 --- a/src/UI/Popup/Notes/CreateNewNote.svelte +++ b/src/UI/Popup/Notes/CreateNewNote.svelte @@ -13,13 +13,12 @@ import LoginToggle from "../../Base/LoginToggle.svelte" import FilteredLayer from "../../../Models/FilteredLayer" import NewPointLocationInput from "../../BigComponents/NewPointLocationInput.svelte" - import ToSvelte from "../../Base/ToSvelte.svelte" - import Svg from "../../../Svg" import Layers from "../../../assets/svg/Layers.svelte" import AddSmall from "../../../assets/svg/AddSmall.svelte" import type { OsmTags } from "../../../Models/OsmFeature" import Loading from "../../Base/Loading.svelte" import NextButton from "../../Base/NextButton.svelte" + import Note from "../../../assets/svg/Note.svelte" export let coordinate: UIEventSource<{ lon: number; lat: number }> export let state: SpecialVisualizationState @@ -124,7 +123,7 @@
- +
diff --git a/src/UI/Popup/SendEmail.svelte b/src/UI/Popup/SendEmail.svelte index 02584949fe9..c7d197dc055 100644 --- a/src/UI/Popup/SendEmail.svelte +++ b/src/UI/Popup/SendEmail.svelte @@ -1,7 +1,5 @@ + +
+
{}}> + {#if isRunning} + {Translations.t.general.search.searching} + {:else} +
+ + { + feedback.set(undefined) + return keypr.key === "Enter" ? _performSearch() : undefined + }} + bind:value={$searchValue} + use:placeholder={placeholderText} + use:ariaLabel={Translations.t.general.search.search} + /> +
+ {#if $feedback !== undefined} + + + {/if} + {/if} +
+
diff --git a/src/UI/InputElement/Helpers/WikidataInput.svelte b/src/UI/InputElement/Helpers/WikidataInput.svelte new file mode 100644 index 00000000000..09532257d15 --- /dev/null +++ b/src/UI/InputElement/Helpers/WikidataInput.svelte @@ -0,0 +1,145 @@ + + +

+ +

+ +
+ + + {#if $searchValue.trim().length === 0} + + {:else if $searchValue.trim().length < 3} + + {:else if $searchResult === undefined} +
+ + + +
+ {:else if $searchResult.error !== undefined} +
+ +
+ {:else if $searchResult.success} + {#if $searchResult.success.length === 0} + + {:else} + {#each $searchResult.success as wikidata} + + + {/each} + {/if} + {/if} + + {#each $selectedWithoutSearch as wikidata} + + + {/each} + +
+ diff --git a/src/UI/InputElement/InputHelper.svelte b/src/UI/InputElement/InputHelper.svelte index 72ce8615274..ef4f479d8f3 100644 --- a/src/UI/InputElement/InputHelper.svelte +++ b/src/UI/InputElement/InputHelper.svelte @@ -19,6 +19,8 @@ import OpeningHoursInput from "./Helpers/OpeningHoursInput.svelte" import SlopeInput from "./Helpers/SlopeInput.svelte" import type { SpecialVisualizationState } from "../SpecialVisualization" + import WikidataInput from "./Helpers/WikidataInput.svelte" + import WikidataInputHelper from "./WikidataInputHelper.svelte" export let type: ValidatorType export let value: UIEventSource @@ -26,17 +28,13 @@ export let feature: Feature export let args: (string | number | boolean)[] = undefined export let state: SpecialVisualizationState - export let helperArgs: (string | number | boolean)[] - export let key: string - export let extraTags: UIEventSource> - let properties = { feature, args: args ?? [] } {#if type === "translation"} {:else if type === "direction"} - + {:else if type === "date"} {:else if type === "color"} @@ -52,5 +50,5 @@ {:else if type === "slope"} {:else if type === "wikidata"} - InputHelpers.constructWikidataHelper(value, properties)} /> + {/if} diff --git a/src/UI/InputElement/InputHelpers.ts b/src/UI/InputElement/InputHelpers.ts index a6f641a357e..d79cc387b84 100644 --- a/src/UI/InputElement/InputHelpers.ts +++ b/src/UI/InputElement/InputHelpers.ts @@ -1,10 +1,6 @@ import { UIEventSource } from "../../Logic/UIEventSource" import { MapProperties } from "../../Models/MapProperties" -import WikidataSearchBox from "../Wikipedia/WikidataSearchBox" -import Wikidata from "../../Logic/Web/Wikidata" -import { Utils } from "../../Utils" -import Locale from "../i18n/Locale" import { Feature } from "geojson" import { GeoOperations } from "../../Logic/GeoOperations" @@ -68,67 +64,5 @@ export default class InputHelpers { return mapProperties } - public static constructWikidataHelper( - value: UIEventSource, - props: InputHelperProperties - ) { - const inputHelperOptions = props - const args = inputHelperOptions.args ?? [] - const searchKey: string = args[0] ?? "name" - const searchFor: string = - searchKey - .split(";") - .map((k) => inputHelperOptions.feature?.properties[k]?.toLowerCase()) - .find((foundValue) => !!foundValue) ?? "" - - let searchForValue: UIEventSource = new UIEventSource(searchFor) - const options: any = args[1] - if (searchFor !== undefined && options !== undefined) { - const prefixes = >options["removePrefixes"] ?? [] - const postfixes = >options["removePostfixes"] ?? [] - const defaultValueCandidate = Locale.language.map((lg) => { - const prefixesUnrwapped: RegExp[] = ( - Array.isArray(prefixes) ? prefixes : prefixes[lg] ?? [] - ).map((s) => new RegExp("^" + s, "i")) - const postfixesUnwrapped: RegExp[] = ( - Array.isArray(postfixes) ? postfixes : postfixes[lg] ?? [] - ).map((s) => new RegExp(s + "$", "i")) - let clipped = searchFor - - for (const postfix of postfixesUnwrapped) { - const match = searchFor.match(postfix) - if (match !== null) { - clipped = searchFor.substring(0, searchFor.length - match[0].length) - break - } - } - - for (const prefix of prefixesUnrwapped) { - const match = searchFor.match(prefix) - if (match !== null) { - clipped = searchFor.substring(match[0].length) - break - } - } - return clipped - }) - - defaultValueCandidate.addCallbackAndRun((clipped) => searchForValue.setData(clipped)) - } - - let instanceOf: number[] = Utils.NoNull( - (options?.instanceOf ?? []).map((i) => Wikidata.QIdToNumber(i)) - ) - let notInstanceOf: number[] = Utils.NoNull( - (options?.notInstanceOf ?? []).map((i) => Wikidata.QIdToNumber(i)) - ) - - return new WikidataSearchBox({ - value, - searchText: searchForValue, - instanceOf, - notInstanceOf, - }) - } } diff --git a/src/UI/InputElement/Validators/WikidataValidator.ts b/src/UI/InputElement/Validators/WikidataValidator.ts index b2fc48c480a..d94fe646a9a 100644 --- a/src/UI/InputElement/Validators/WikidataValidator.ts +++ b/src/UI/InputElement/Validators/WikidataValidator.ts @@ -1,13 +1,101 @@ import Combine from "../../Base/Combine" -import Wikidata from "../../../Logic/Web/Wikidata" +import Wikidata, { WikidataResponse } from "../../../Logic/Web/Wikidata" import WikidataSearchBox from "../../Wikipedia/WikidataSearchBox" import { Validator } from "../Validator" import { Translation } from "../../i18n/Translation" import Translations from "../../i18n/Translations" +import Title from "../../Base/Title" +import Table from "../../Base/Table" export default class WikidataValidator extends Validator { + public static readonly _searchCache = new Map>() + + public static docs = new Combine([ + new Title("Helper arguments"), + new Table( + ["name", "doc"], + [ + [ + "key", + "the value of this tag will initialize search (default: name). This can be a ';'-separated list in which case every key will be inspected. The non-null value will be used as search", + ], + [ + "options", + new Combine([ + "A JSON-object of type `{ removePrefixes: string[], removePostfixes: string[] }`.", + new Table( + ["subarg", "doc"], + [ + [ + "removePrefixes", + "remove these snippets of text from the start of the passed string to search. This is either a list OR a hash of languages to a list. The individual strings are interpreted as case ignoring regexes", + ], + [ + "removePostfixes", + "remove these snippets of text from the end of the passed string to search. This is either a list OR a hash of languages to a list. The individual strings are interpreted as case ignoring regexes.", + ], + [ + "instanceOf", + "A list of Q-identifier which indicates that the search results _must_ be an entity of this type, e.g. [`Q5`](https://www.wikidata.org/wiki/Q5) for humans", + ], + [ + "notInstanceof", + "A list of Q-identifiers which indicates that the search results _must not_ be an entity of this type, e.g. [`Q79007`](https://www.wikidata.org/wiki/Q79007) to filter away all streets from the search results", + ], + ["multiple", + "If 'yes' or 'true', will allow to select multiple values at once"] + ] + ), + ]), + ], + ] + ), + new Title("Example usage"), + `The following is the 'freeform'-part of a layer config which will trigger a search for the wikidata item corresponding with the name of the selected feature. It will also remove '-street', '-square', ... if found at the end of the name + +\`\`\`json +"freeform": { + "key": "name:etymology:wikidata", + "type": "wikidata", + "helperArgs": [ + "name", + { + "removePostfixes": {"en": [ + "street", + "boulevard", + "path", + "square", + "plaza", + ], + "nl": ["straat","plein","pad","weg",laan"], + "fr":["route (de|de la|de l'| de le)"] + }, + + "#": "Remove streets and parks from the search results:" + "notInstanceOf": ["Q79007","Q22698"] + } + + ] +} +\`\`\` + +Another example is to search for species and trees: + +\`\`\`json + "freeform": { + "key": "species:wikidata", + "type": "wikidata", + "helperArgs": [ + "species", + { + "instanceOf": [10884, 16521] + }] + } +\`\`\` +`, + ]) constructor() { - super("wikidata", new Combine(["A wikidata identifier, e.g. Q42.", WikidataSearchBox.docs])) + super("wikidata", new Combine(["A wikidata identifier, e.g. Q42.", WikidataValidator.docs])) } public isValid(str): boolean { @@ -44,4 +132,48 @@ export default class WikidataValidator extends Validator { } return out } + + /** + * + * @param searchTerm + * @param postfixesToRemove + * @param prefixesToRemove + * @param language + * + * + * WikidataValidator.removePostAndPrefixes("Elf-Julistraat", [], ["straat", "laan"], "nl") // => "Elf-Juli" + * WikidataValidator.removePostAndPrefixes("Elf-Julistraat", [], {"nl":["straat", "laan"], "en": ["street"]}, "nl") // => "Elf-Juli" + * WikidataValidator.removePostAndPrefixes("Elf-Julistraat", [], {"nl":["straat", "laan"], "en": ["street"]}, "en") // => "Elf-Julistraat" + */ + public static removePostAndPrefixes(searchTerm: string, prefixesToRemove: string[] | Record, postfixesToRemove: string[] | Record, language: string): string { + const prefixes = prefixesToRemove + const postfixes = postfixesToRemove + const prefixesUnwrapped: RegExp[] = ( + Array.isArray(prefixes) ? prefixes : prefixes[language] ?? [] + ).map((s) => new RegExp("^" + s, "i")) + + const postfixesUnwrapped: RegExp[] = ( + Array.isArray(postfixes) ? postfixes : postfixes[language] ?? [] + ).map((s) => new RegExp(s + "$", "i")) + + + let clipped = searchTerm.trim() + + for (const postfix of postfixesUnwrapped) { + const match = searchTerm.trim().match(postfix) + if (match !== null) { + clipped = searchTerm.trim().substring(0, searchTerm.trim().length - match[0].length) + break + } + } + + for (const prefix of prefixesUnwrapped) { + const match = searchTerm.trim().match(prefix) + if (match !== null) { + clipped = searchTerm.trim().substring(match[0].length) + break + } + } + return clipped + } } diff --git a/src/UI/InputElement/WikidataInputHelper.svelte b/src/UI/InputElement/WikidataInputHelper.svelte new file mode 100644 index 00000000000..d36fdd06e80 --- /dev/null +++ b/src/UI/InputElement/WikidataInputHelper.svelte @@ -0,0 +1,58 @@ + + + diff --git a/src/UI/PlantNet/SpeciesButton.svelte b/src/UI/PlantNet/SpeciesButton.svelte index 4b714860f46..80e5f430b0a 100644 --- a/src/UI/PlantNet/SpeciesButton.svelte +++ b/src/UI/PlantNet/SpeciesButton.svelte @@ -4,14 +4,13 @@ */ import { createEventDispatcher } from "svelte" import type { PlantNetSpeciesMatch } from "../../Logic/Web/PlantNet" - import { UIEventSource } from "../../Logic/UIEventSource" + import { Store, UIEventSource } from "../../Logic/UIEventSource" import Wikidata from "../../Logic/Web/Wikidata" import NextButton from "../Base/NextButton.svelte" import Loading from "../Base/Loading.svelte" - import WikidataPreviewBox from "../Wikipedia/WikidataPreviewBox" import Tr from "../Base/Tr.svelte" import Translations from "../i18n/Translations" - import ToSvelte from "../Base/ToSvelte.svelte" + import WikidatapreviewWithLoading from "../Wikipedia/WikidatapreviewWithLoading.svelte" export let species: PlantNetSpeciesMatch let wikidata = UIEventSource.FromPromise( @@ -46,16 +45,12 @@ /> {:else} - - new WikidataPreviewBox(wikidataId, { - imageStyle: "max-width: 8rem; width: unset; height: 8rem", - extraItems: [ - t.matchPercentage - .Subs({ match: Math.round(species.score * 100) }) - .SetClass("thanks w-fit self-center"), - ], - }).SetClass("w-full")} - /> + + +
+ +
+
{/if} diff --git a/src/UI/Popup/TagRendering/FreeformInput.svelte b/src/UI/Popup/TagRendering/FreeformInput.svelte index 829c4b5e2f5..e806ceb85e0 100644 --- a/src/UI/Popup/TagRendering/FreeformInput.svelte +++ b/src/UI/Popup/TagRendering/FreeformInput.svelte @@ -15,7 +15,6 @@ export let unvalidatedText: UIEventSource = new UIEventSource(value.data) export let config: TagRenderingConfig export let tags: UIEventSource> - export let extraTags: UIEventSource> export let feature: Feature = undefined export let state: SpecialVisualizationState @@ -28,8 +27,6 @@ inline = false inline = config.freeform?.inline } - let helperArgs = config.freeform?.helperArgs - let key = config.freeform?.key const dispatch = createEventDispatcher<{ selected }>() export let feedback: UIEventSource @@ -73,14 +70,11 @@ {/if} diff --git a/src/UI/Wikipedia/WikidataPreviewBox.ts b/src/UI/Wikipedia/WikidataPreviewBox.ts index aa33b69dea1..b4b83d690da 100644 --- a/src/UI/Wikipedia/WikidataPreviewBox.ts +++ b/src/UI/Wikipedia/WikidataPreviewBox.ts @@ -1,34 +1,21 @@ -import { VariableUiElement } from "../Base/VariableUIElement" -import { Store } from "../../Logic/UIEventSource" -import Wikidata, { WikidataResponse } from "../../Logic/Web/Wikidata" -import { Translation, TypedTranslation } from "../i18n/Translation" -import { FixedUiElement } from "../Base/FixedUiElement" -import Loading from "../Base/Loading" +import { TypedTranslation } from "../i18n/Translation" import Translations from "../i18n/Translations" -import Combine from "../Base/Combine" -import Img from "../Base/Img" -import { WikimediaImageProvider } from "../../Logic/ImageProviders/WikimediaImageProvider" -import Link from "../Base/Link" -import BaseUIElement from "../BaseUIElement" -import { Utils } from "../../Utils" -import SvelteUIElement from "../Base/SvelteUIElement" -import { default as Wikidata_icon } from "../../assets/svg/Wikidata.svelte" import Gender_male from "../../assets/svg/Gender_male.svelte" import Gender_female from "../../assets/svg/Gender_female.svelte" import Gender_inter from "../../assets/svg/Gender_inter.svelte" import Gender_trans from "../../assets/svg/Gender_trans.svelte" import Gender_queer from "../../assets/svg/Gender_queer.svelte" -export default class WikidataPreviewBox extends VariableUiElement { + +export default class WikidataPreviewBox { private static isHuman = [{ p: 31 /*is a*/, q: 5 /* human */ }] - // @ts-ignore - private static extraProperties: { + public static extraProperties: { requires?: { p: number; q?: number }[] property: string + textMode?: Map display: | TypedTranslation<{ value }> - | Map BaseUIElement) /*If translation: Subs({value: * }) */> - textMode?: Map + | Map, }[] = [ { requires: WikidataPreviewBox.isHuman, @@ -36,34 +23,28 @@ export default class WikidataPreviewBox extends VariableUiElement { display: new Map([ [ "Q6581097", - () => new SvelteUIElement(Gender_male).SetStyle("width: 1rem; height: auto"), + Gender_male ], [ "Q6581072", - () => new SvelteUIElement(Gender_female).SetStyle("width: 1rem; height: auto"), + Gender_female ], [ "Q1097630", - () => new SvelteUIElement(Gender_inter).SetStyle("width: 1rem; height: auto"), + Gender_inter ], [ "Q1052281", - () => - new SvelteUIElement(Gender_trans).SetStyle( - "width: 1rem; height: auto" - ) /*'transwomen'*/, + Gender_trans /*'transwomen'*/ ], [ "Q2449503", - () => - new SvelteUIElement(Gender_trans).SetStyle( - "width: 1rem; height: auto" - ) /*'transmen'*/, + Gender_trans /*'transmen'*/ ], [ "Q48270", - () => new SvelteUIElement(Gender_queer).SetStyle("width: 1rem; height: auto"), - ], + Gender_queer + ] ]), textMode: new Map([ ["Q6581097", "♂️"], @@ -71,158 +52,19 @@ export default class WikidataPreviewBox extends VariableUiElement { ["Q1097630", "⚥️"], ["Q1052281", "🏳️‍⚧️" /*'transwomen'*/], ["Q2449503", "🏳️‍⚧️" /*'transmen'*/], - ["Q48270", "🏳️‍🌈 ⚧"], - ]), + ["Q48270", "🏳️‍🌈 ⚧"] + ]) }, { property: "P569", requires: WikidataPreviewBox.isHuman, - display: Translations.t.general.wikipedia.previewbox.born, + display: Translations.t.general.wikipedia.previewbox.born }, { property: "P570", requires: WikidataPreviewBox.isHuman, - display: Translations.t.general.wikipedia.previewbox.died, - }, + display: Translations.t.general.wikipedia.previewbox.died + } ] - constructor( - wikidataId: Store, - options?: { - noImages?: boolean - imageStyle?: string - whileLoading?: BaseUIElement | string - extraItems?: (BaseUIElement | string)[] - } - ) { - let inited = false - const wikidata = wikidataId.stabilized(250).bind((id) => { - if (id === undefined || id === "" || id === "Q") { - return null - } - inited = true - return Wikidata.LoadWikidataEntry(id) - }) - - super( - wikidata.map((maybeWikidata) => { - if (maybeWikidata === null || !inited) { - return options?.whileLoading - } - - if (maybeWikidata === undefined) { - return new Loading(Translations.t.general.loading) - } - - if (maybeWikidata["error"] !== undefined) { - return new FixedUiElement(maybeWikidata["error"]).SetClass("alert") - } - const wikidata = maybeWikidata["success"] - console.log(">>>> got wikidata", wikidata) - return WikidataPreviewBox.WikidataResponsePreview(wikidata, options) - }) - ) - } - - public static WikidataResponsePreview( - wikidata: WikidataResponse, - options?: { - noImages?: boolean - imageStyle?: string - extraItems?: (BaseUIElement | string)[] - } - ): BaseUIElement { - console.log(">>> constructing wikidata preview box", wikidata.labels) - - const link = new Link( - new Combine([ - wikidata.id, - options?.noImages - ? wikidata.id - : new SvelteUIElement(Wikidata_icon) - .SetStyle("width: 2.5rem") - .SetClass("block"), - ]).SetClass("flex"), - Wikidata.IdToArticle(wikidata.id), - true - )?.SetClass("must-link") - let info = new Combine([ - new Combine([ - Translation.fromMap(wikidata.labels)?.SetClass("font-bold"), - link, - ]).SetClass("flex justify-between flex-wrap-reverse"), - Translation.fromMap(wikidata.descriptions, true), - WikidataPreviewBox.QuickFacts(wikidata, options), - ...(options?.extraItems ?? []), - ]).SetClass("flex flex-col link-underline") - - let imageUrl = undefined - if (wikidata.claims.get("P18")?.size > 0) { - imageUrl = Array.from(wikidata.claims.get("P18"))[0] - } - if (imageUrl && !options?.noImages) { - imageUrl = WikimediaImageProvider.singleton.PrepUrl(imageUrl).url - info = new Combine([ - new Img(imageUrl) - .SetStyle(options?.imageStyle ?? "max-width: 5rem; width: unset; height: 4rem") - .SetClass("rounded-xl mr-2"), - info.SetClass("w-full"), - ]).SetClass("flex") - } - - info.SetClass("p-2 w-full") - - return info - } - - public static QuickFacts( - wikidata: WikidataResponse, - options?: { noImages?: boolean } - ): BaseUIElement { - const els: BaseUIElement[] = [] - for (const extraProperty of WikidataPreviewBox.extraProperties) { - let hasAllRequirements = true - for (const requirement of extraProperty.requires) { - if (!wikidata.claims?.has("P" + requirement.p)) { - hasAllRequirements = false - break - } - if (!wikidata.claims?.get("P" + requirement.p).has("Q" + requirement.q)) { - hasAllRequirements = false - break - } - } - if (!hasAllRequirements) { - continue - } - - const key = extraProperty.property - const display = - (options?.noImages ? extraProperty.textMode : extraProperty.display) ?? - extraProperty.display - if (wikidata.claims?.get(key) === undefined) { - continue - } - const value: string[] = Array.from(wikidata.claims.get(key)) - - if (display instanceof Translation) { - els.push(display.Subs({ value: value.join(", ") }).SetClass("m-2")) - continue - } - const constructors = Utils.NoNull(value.map((property) => display.get(property))) - const elems = constructors.map((v) => { - if (typeof v === "string") { - return new FixedUiElement(v) - } else { - return v() - } - }) - els.push(new Combine(elems).SetClass("flex m-2")) - } - if (els.length === 0) { - return undefined - } - - return new Combine(els).SetClass("flex") - } } diff --git a/src/UI/Wikipedia/WikidataQuickfacts.svelte b/src/UI/Wikipedia/WikidataQuickfacts.svelte new file mode 100644 index 00000000000..7d4a29dbfd6 --- /dev/null +++ b/src/UI/Wikipedia/WikidataQuickfacts.svelte @@ -0,0 +1,49 @@ + + +{#if propertiesToRender.length > 0} +
+ {#each propertiesToRender as property} + {#if typeof property.display === "string" } + {property.display} + {:else if property.display instanceof Translation} + + {:else} + + {/if} + {/each} +
+{/if} + diff --git a/src/UI/Wikipedia/WikidataSearchBox.ts b/src/UI/Wikipedia/WikidataSearchBox.ts deleted file mode 100644 index ebbe4c9582c..00000000000 --- a/src/UI/Wikipedia/WikidataSearchBox.ts +++ /dev/null @@ -1,223 +0,0 @@ -import Combine from "../Base/Combine" -import { InputElement } from "../Input/InputElement" -import { TextField } from "../Input/TextField" -import Translations from "../i18n/Translations" -import { ImmutableStore, Store, Stores, UIEventSource } from "../../Logic/UIEventSource" -import Wikidata, { WikidataResponse } from "../../Logic/Web/Wikidata" -import Locale from "../i18n/Locale" -import { VariableUiElement } from "../Base/VariableUIElement" -import WikidataPreviewBox from "./WikidataPreviewBox" -import Title from "../Base/Title" -import Svg from "../../Svg" -import Loading from "../Base/Loading" -import Table from "../Base/Table" -import SvelteUIElement from "../Base/SvelteUIElement" -import Search from "../../assets/svg/Search.svelte" - -export default class WikidataSearchBox extends InputElement { - public static docs = new Combine([ - new Title("Helper arguments"), - new Table( - ["name", "doc"], - [ - [ - "key", - "the value of this tag will initialize search (default: name). This can be a ';'-separated list in which case every key will be inspected. The non-null value will be used as search", - ], - [ - "options", - new Combine([ - "A JSON-object of type `{ removePrefixes: string[], removePostfixes: string[] }`.", - new Table( - ["subarg", "doc"], - [ - [ - "removePrefixes", - "remove these snippets of text from the start of the passed string to search. This is either a list OR a hash of languages to a list. The individual strings are interpreted as case ignoring regexes", - ], - [ - "removePostfixes", - "remove these snippets of text from the end of the passed string to search. This is either a list OR a hash of languages to a list. The individual strings are interpreted as case ignoring regexes.", - ], - [ - "instanceOf", - "A list of Q-identifier which indicates that the search results _must_ be an entity of this type, e.g. [`Q5`](https://www.wikidata.org/wiki/Q5) for humans", - ], - [ - "notInstanceof", - "A list of Q-identifiers which indicates that the search results _must not_ be an entity of this type, e.g. [`Q79007`](https://www.wikidata.org/wiki/Q79007) to filter away all streets from the search results", - ], - ] - ), - ]), - ], - ] - ), - new Title("Example usage"), - `The following is the 'freeform'-part of a layer config which will trigger a search for the wikidata item corresponding with the name of the selected feature. It will also remove '-street', '-square', ... if found at the end of the name - -\`\`\`json -"freeform": { - "key": "name:etymology:wikidata", - "type": "wikidata", - "helperArgs": [ - "name", - { - "removePostfixes": {"en": [ - "street", - "boulevard", - "path", - "square", - "plaza", - ], - "nl": ["straat","plein","pad","weg",laan"], - "fr":["route (de|de la|de l'| de le)"] - }, - - "#": "Remove streets and parks from the search results:" - "notInstanceOf": ["Q79007","Q22698"] - } - - ] -} -\`\`\` - -Another example is to search for species and trees: - -\`\`\`json - "freeform": { - "key": "species:wikidata", - "type": "wikidata", - "helperArgs": [ - "species", - { - "instanceOf": [10884, 16521] - }] - } -\`\`\` -`, - ]) - private static readonly _searchCache = new Map>() - private readonly wikidataId: UIEventSource - private readonly searchText: UIEventSource - private readonly instanceOf?: number[] - private readonly notInstanceOf?: number[] - - constructor(options?: { - searchText?: UIEventSource - value?: UIEventSource - notInstanceOf?: number[] - instanceOf?: number[] - }) { - super() - this.searchText = options?.searchText - this.wikidataId = options?.value ?? new UIEventSource(undefined) - this.instanceOf = options?.instanceOf - this.notInstanceOf = options?.notInstanceOf - } - - GetValue(): UIEventSource { - return this.wikidataId - } - - IsValid(t: string): boolean { - return t.startsWith("Q") && !isNaN(Number(t.substring(1))) - } - - protected InnerConstructElement(): HTMLElement { - const searchField = new TextField({ - placeholder: Translations.t.general.wikipedia.searchWikidata, - value: this.searchText, - inputStyle: "width: calc(100% - 0.5rem); border: 1px solid black", - }) - const selectedWikidataId = this.wikidataId - - const tooShort = new ImmutableStore<{ success: WikidataResponse[] }>({ success: undefined }) - const searchResult: Store<{ success?: WikidataResponse[]; error?: any }> = searchField - .GetValue() - .bind((searchText) => { - if (searchText.length < 3 && !searchText.match(/[qQ][0-9]+/)) { - return tooShort - } - const lang = Locale.language.data - const key = lang + ":" + searchText - let promise = WikidataSearchBox._searchCache.get(key) - if (promise === undefined) { - promise = Wikidata.searchAndFetch(searchText, { - lang, - maxCount: 5, - notInstanceOf: this.notInstanceOf, - instanceOf: this.instanceOf, - }) - WikidataSearchBox._searchCache.set(key, promise) - } - return Stores.FromPromiseWithErr(promise) - }) - - const previews = new VariableUiElement( - searchResult.map( - (searchResultsOrFail) => { - if (searchField.GetValue().data.length === 0) { - return Translations.t.general.wikipedia.doSearch - } - - if (searchField.GetValue().data.length < 3) { - return Translations.t.general.wikipedia.searchToShort - } - - if (searchResultsOrFail === undefined) { - return new Loading(Translations.t.general.loading) - } - - if (searchResultsOrFail.error !== undefined) { - return new Combine([ - Translations.t.general.wikipedia.failed.Clone().SetClass("alert"), - searchResultsOrFail.error, - ]) - } - - const searchResults = searchResultsOrFail.success - if (searchResults.length === 0) { - return Translations.t.general.wikipedia.noResults.Subs({ - search: searchField.GetValue().data ?? "", - }) - } - - return new Combine( - searchResults.map((wikidataresponse) => { - const el = WikidataPreviewBox.WikidataResponsePreview( - wikidataresponse - ).SetClass( - "rounded-xl p-1 sm:p-2 md:p-3 m-px border-2 sm:border-4 transition-colors" - ) - el.onClick(() => { - selectedWikidataId.setData(wikidataresponse.id) - }) - selectedWikidataId.addCallbackAndRunD((selected) => { - if (selected === wikidataresponse.id) { - el.SetClass("subtle-background border-attention") - } else { - el.RemoveClass("subtle-background") - el.RemoveClass("border-attention") - } - }) - return el - }) - ).SetClass("flex flex-col") - }, - [searchField.GetValue()] - ) - ) - - return new Combine([ - new Title(Translations.t.general.wikipedia.searchWikidata, 3).SetClass("m-2"), - new Combine([ - new SvelteUIElement(Search).SetClass("w-6"), - searchField.SetClass("m-2 w-full"), - ]).SetClass("flex"), - previews, - ]) - .SetClass("flex flex-col border-2 border-black rounded-xl m-2 p-2") - .ConstructElement() - } -} diff --git a/src/UI/Wikipedia/Wikidatapreview.svelte b/src/UI/Wikipedia/Wikidatapreview.svelte new file mode 100644 index 00000000000..634f76ebe03 --- /dev/null +++ b/src/UI/Wikipedia/Wikidatapreview.svelte @@ -0,0 +1,42 @@ + + +
+ + {#if imageUrl} + + {/if} + +
+ + + + + + +
+ +
+ + +
+
diff --git a/src/UI/Wikipedia/WikidatapreviewWithLoading.svelte b/src/UI/Wikipedia/WikidatapreviewWithLoading.svelte new file mode 100644 index 00000000000..98129c66a7b --- /dev/null +++ b/src/UI/Wikipedia/WikidatapreviewWithLoading.svelte @@ -0,0 +1,35 @@ + + +{#if $wikidata === undefined} + + + +{:else if $wikidata["error"]} +
+ {$wikidata["error"]} +
+{:else} + + + + +{/if} diff --git a/src/UI/Wikipedia/WikipediaArticle.svelte b/src/UI/Wikipedia/WikipediaArticle.svelte index 4f7371ae2f3..48027f8e116 100644 --- a/src/UI/Wikipedia/WikipediaArticle.svelte +++ b/src/UI/Wikipedia/WikipediaArticle.svelte @@ -10,6 +10,7 @@ import Tr from "../Base/Tr.svelte" import Translations from "../i18n/Translations" import Wikipedia from "../../assets/svg/Wikipedia.svelte" + import Wikidatapreview from "./Wikidatapreview.svelte" /** * Shows a wikipedia-article + wikidata preview for the given item @@ -31,9 +32,7 @@ {/if} {#if $wikipediaDetails.wikidata} - WikidataPreviewBox.WikidataResponsePreview($wikipediaDetails.wikidata)} - /> + {/if} {#if $wikipediaDetails.articleUrl} diff --git a/src/UI/i18n/Translation.ts b/src/UI/i18n/Translation.ts index 61949b13ab2..38425e87dc9 100644 --- a/src/UI/i18n/Translation.ts +++ b/src/UI/i18n/Translation.ts @@ -26,9 +26,7 @@ export class Translation extends BaseUIElement { ) { super() this._strictLanguages = strictLanguages - if (strictLanguages) { - console.log(">>> strict:", translations) - } + if (translations === undefined) { console.error("Translation without content at " + context) throw `Translation without content (${context})` @@ -138,7 +136,6 @@ export class Translation extends BaseUIElement { static fromMap(transl: Map, strictLanguages: boolean = false) { const translations = {} - console.log("Strict:", strictLanguages) let hasTranslation = false transl?.forEach((value, key) => { translations[key] = value From ed9e59109e20b4605b5cadb249f4eac5160b67d2 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Thu, 11 Jul 2024 19:01:32 +0200 Subject: [PATCH 22/45] Various style tweaks --- src/UI/Base/FloatOver.svelte | 11 +-- src/UI/Base/TitledPanel.svelte | 14 ++++ src/UI/BigComponents/FilterPanel.svelte | 15 ++-- .../BigComponents/SelectedElementTitle.svelte | 6 +- .../BigComponents/SelectedElementView.svelte | 7 +- src/UI/Map/RasterLayerOverview.svelte | 11 +-- src/UI/Map/RasterLayerPicker.svelte | 2 +- src/UI/Popup/AddNewPoint/AddNewPoint.svelte | 76 +++++++++++-------- src/UI/Popup/AddNewPoint/PresetList.svelte | 13 ++-- src/UI/ThemeViewGUI.svelte | 9 --- src/UI/Wikipedia/Wikidatapreview.svelte | 6 +- src/UI/Wikipedia/WikipediaArticle.svelte | 70 ++++++++--------- 12 files changed, 128 insertions(+), 112 deletions(-) create mode 100644 src/UI/Base/TitledPanel.svelte diff --git a/src/UI/Base/FloatOver.svelte b/src/UI/Base/FloatOver.svelte index 0b09db3b463..b64f4b624e0 100644 --- a/src/UI/Base/FloatOver.svelte +++ b/src/UI/Base/FloatOver.svelte @@ -1,8 +1,8 @@ + +
+

+ +

+ +
+ +
+
diff --git a/src/UI/BigComponents/FilterPanel.svelte b/src/UI/BigComponents/FilterPanel.svelte index 3e8c7e90cfe..0104f6b5dc0 100644 --- a/src/UI/BigComponents/FilterPanel.svelte +++ b/src/UI/BigComponents/FilterPanel.svelte @@ -9,6 +9,7 @@ import Translations from "../i18n/Translations" import Tr from "../Base/Tr.svelte" import Filter from "../../assets/svg/Filter.svelte" + import TitledPanel from "../Base/TitledPanel.svelte" export let state: ThemeViewState let layout = state.layout @@ -46,12 +47,12 @@ } -
-

+ +
-

-
+
+ {#each layout.layers as layer} {/each} -
- + + + + diff --git a/src/UI/BigComponents/SelectedElementTitle.svelte b/src/UI/BigComponents/SelectedElementTitle.svelte index 65051624e8d..559a9fab8f6 100644 --- a/src/UI/BigComponents/SelectedElementTitle.svelte +++ b/src/UI/BigComponents/SelectedElementTitle.svelte @@ -72,14 +72,14 @@ {/if} - + diff --git a/src/UI/BigComponents/SelectedElementView.svelte b/src/UI/BigComponents/SelectedElementView.svelte index aa3d0304968..128c37a144e 100644 --- a/src/UI/BigComponents/SelectedElementView.svelte +++ b/src/UI/BigComponents/SelectedElementView.svelte @@ -22,6 +22,8 @@ selectedElement.properties.id ) + let isAddNew = tags.mapD(t => t.id.startsWith(LastClickFeatureSource.newPointElementId)) + function getLayer(properties: Record) { if (properties.id === "settings") { return UserRelatedState.usersettingsConfig @@ -76,7 +78,10 @@ {:else}
{#each $knownTagRenderings as config (config.id)} diff --git a/src/UI/Map/RasterLayerOverview.svelte b/src/UI/Map/RasterLayerOverview.svelte index 7cef37b0ec6..b15c30c0333 100644 --- a/src/UI/Map/RasterLayerOverview.svelte +++ b/src/UI/Map/RasterLayerOverview.svelte @@ -11,6 +11,7 @@ import UserRelatedState from "../../Logic/State/UserRelatedState" import Translations from "../i18n/Translations" import Tr from "../Base/Tr.svelte" + import TitledPanel from "../Base/TitledPanel.svelte" export let availableLayers: Store export let mapproperties: MapProperties @@ -50,12 +51,8 @@ } -
- -

- -

-
+ +
-
+ diff --git a/src/UI/Map/RasterLayerPicker.svelte b/src/UI/Map/RasterLayerPicker.svelte index 05587607143..5564b4933ae 100644 --- a/src/UI/Map/RasterLayerPicker.svelte +++ b/src/UI/Map/RasterLayerPicker.svelte @@ -77,7 +77,7 @@ {#if hasLayers}
{}}> - + > + + + - -
+ > + + + + + + {:else if $layerHasFilters} - + + + + +
@@ -246,13 +257,14 @@
+
{:else if !confirmedCategory} -

- + + -

{#if selectedPreset.preset.description} @@ -293,6 +305,8 @@ + + {:else if _globalFilter?.length > 0 && _globalFilter?.length > checkedOfGlobalFilters} {:else} - + + + {/if} diff --git a/src/UI/Popup/AddNewPoint/PresetList.svelte b/src/UI/Popup/AddNewPoint/PresetList.svelte index 586b29d98f3..a5680a169d3 100644 --- a/src/UI/Popup/AddNewPoint/PresetList.svelte +++ b/src/UI/Popup/AddNewPoint/PresetList.svelte @@ -13,6 +13,7 @@ import ToSvelte from "../../Base/ToSvelte.svelte" import BaseUIElement from "../../BaseUIElement" import Combine from "../../Base/Combine" + import TitledPanel from "../../Base/TitledPanel.svelte" /** * This component lists all the presets and allows the user to select one @@ -79,7 +80,7 @@ text: Translations.t.general.add.addNew.Subs( { category: preset.title }, preset.title["context"] - ), + ) } presets.push(simplified) } @@ -96,11 +97,9 @@ }>() -
-

- - -

+ + + {#each presets as preset} dispatch("select", preset)}> @@ -115,4 +114,4 @@
{/each} - + diff --git a/src/UI/ThemeViewGUI.svelte b/src/UI/ThemeViewGUI.svelte index 33d245d9658..c93f40e5cb9 100644 --- a/src/UI/ThemeViewGUI.svelte +++ b/src/UI/ThemeViewGUI.svelte @@ -472,13 +472,6 @@ i !== undefined)}> state.previewedImage.setData(undefined)}> - @@ -550,7 +543,6 @@ state.guistate.backgroundLayerSelectionIsOpened.setData(false) }} > -
-
diff --git a/src/UI/Wikipedia/Wikidatapreview.svelte b/src/UI/Wikipedia/Wikidatapreview.svelte index 634f76ebe03..d47a3c3d196 100644 --- a/src/UI/Wikipedia/Wikidatapreview.svelte +++ b/src/UI/Wikipedia/Wikidatapreview.svelte @@ -15,15 +15,15 @@ -
+
{#if imageUrl} {/if} -
+
-
+
{wikidata.id} diff --git a/src/UI/Wikipedia/WikipediaArticle.svelte b/src/UI/Wikipedia/WikipediaArticle.svelte index 48027f8e116..86198f9febe 100644 --- a/src/UI/Wikipedia/WikipediaArticle.svelte +++ b/src/UI/Wikipedia/WikipediaArticle.svelte @@ -3,14 +3,11 @@ import { Store } from "../../Logic/UIEventSource" import FromHtml from "../Base/FromHtml.svelte" import Loading from "../Base/Loading.svelte" - import { Disclosure, DisclosureButton, DisclosurePanel } from "@rgossiaux/svelte-headlessui" - import { ChevronRightIcon } from "@rgossiaux/svelte-heroicons/solid" - import ToSvelte from "../Base/ToSvelte.svelte" - import WikidataPreviewBox from "./WikidataPreviewBox" import Tr from "../Base/Tr.svelte" import Translations from "../i18n/Translations" import Wikipedia from "../../assets/svg/Wikipedia.svelte" import Wikidatapreview from "./Wikidatapreview.svelte" + import AccordionSingle from "../Flowbite/AccordionSingle.svelte" /** * Shows a wikipedia-article + wikidata preview for the given item @@ -21,40 +18,33 @@ ) -{#if $titleOnly} - {$wikipediaDetails.title} -{/if} -{#if $wikipediaDetails.articleUrl} - - - - -{/if} - -{#if $wikipediaDetails.wikidata} - -{/if} - -{#if $wikipediaDetails.articleUrl} - {#if $wikipediaDetails.firstParagraph === "" || $wikipediaDetails.firstParagraph === undefined} - - - - {:else} - - - - - - - - - - - - +
+ {#if $titleOnly} + {$wikipediaDetails.title} {/if} -{/if} + + + {#if $wikipediaDetails.wikidata} + + {/if} + + {#if $wikipediaDetails.articleUrl} + {#if $wikipediaDetails.firstParagraph === "" || $wikipediaDetails.firstParagraph === undefined} + + + + {:else} + + {#if $wikipediaDetails.articleUrl} + + + + + {/if} + + + + + {/if} + {/if} +
From e51bc347494303e32c59be8dc515678bf45726f5 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Thu, 11 Jul 2024 19:03:52 +0200 Subject: [PATCH 23/45] Use correct tag value, see #2020 --- assets/layers/waste_basket/waste_basket.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/layers/waste_basket/waste_basket.json b/assets/layers/waste_basket/waste_basket.json index a3892b54889..8d4a112771e 100644 --- a/assets/layers/waste_basket/waste_basket.json +++ b/assets/layers/waste_basket/waste_basket.json @@ -254,7 +254,7 @@ { "if": { "and": [ - "vending=dog_excrement_bag", + "vending=excrement_bags", "not:vending=" ] }, @@ -273,7 +273,7 @@ { "if": { "and": [ - "not:vending=dog_excrement_bag", + "not:vending=excrement_bags", "vending=" ] }, From 7a7439b1616f4d8e09c6a22a269958a2785720e9 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Fri, 12 Jul 2024 03:16:41 +0200 Subject: [PATCH 24/45] Chore: regen docs --- Docs/BuiltinIndex.md | 10 + Docs/BuiltinQuestions.md | 101 ++--- Docs/CalculatedTags.md | 231 +++------- Docs/ChangesetMeta.md | 57 ++- Docs/Hotkeys.md | 51 ++- Docs/Layers/address.md | 71 +-- Docs/Layers/advertising.md | 87 ++-- Docs/Layers/advertising_wall_paintings.md | 73 +--- Docs/Layers/aerialway.md | 73 +--- Docs/Layers/all_streets.md | 63 +-- Docs/Layers/all_vending_machine.md | 161 +++---- Docs/Layers/ambulancestation.md | 73 +--- Docs/Layers/animal_shelter.md | 77 ++-- Docs/Layers/artwork.md | 143 +++--- Docs/Layers/assembly_point.md | 67 +-- Docs/Layers/atm.md | 95 ++-- Docs/Layers/bank.md | 81 ++-- Docs/Layers/banks_with_atm.md | 79 ++-- Docs/Layers/barrier.md | 83 ++-- Docs/Layers/bench.md | 131 +++--- Docs/Layers/bench_at_pt.md | 67 +-- Docs/Layers/bicycle_library.md | 81 ++-- Docs/Layers/bicycle_rental.md | 95 ++-- Docs/Layers/bicycle_rental_non_docking.md | 87 ++-- Docs/Layers/bike_cafe.md | 79 ++-- Docs/Layers/bike_cleaning.md | 67 +-- Docs/Layers/bike_parking.md | 101 ++--- Docs/Layers/bike_repair_station.md | 93 ++-- Docs/Layers/bike_shop.md | 135 +++--- Docs/Layers/bike_themed_object.md | 73 +--- Docs/Layers/binocular.md | 69 +-- Docs/Layers/birdhide.md | 85 ++-- Docs/Layers/brothel.md | 71 +-- Docs/Layers/cafe_pub.md | 135 +++--- Docs/Layers/car_rental.md | 81 ++-- Docs/Layers/caravansites.md | 87 ++-- Docs/Layers/charging_station.md | 339 +++++++------- Docs/Layers/charging_station_ebikes.md | 263 +++++------ Docs/Layers/cinema.md | 71 +-- Docs/Layers/climbing_area.md | 77 ++-- Docs/Layers/climbing_club.md | 73 +--- Docs/Layers/climbing_gym.md | 103 ++--- Docs/Layers/climbing_opportunity.md | 65 +-- Docs/Layers/climbing_route.md | 79 ++-- Docs/Layers/clock.md | 83 ++-- Docs/Layers/crab_address.md | 63 +-- Docs/Layers/crossings.md | 109 ++--- Docs/Layers/crossings_no_traffic_lights.md | 103 ++--- .../cultural_places_without_etymology.md | 65 +-- Docs/Layers/cycleways_and_roads.md | 115 ++--- Docs/Layers/defibrillator.md | 115 ++--- Docs/Layers/dentist.md | 83 ++-- Docs/Layers/direction.md | 49 +-- Docs/Layers/disaster_response.md | 67 +-- Docs/Layers/doctors.md | 87 ++-- Docs/Layers/dogfoodb.md | 257 ++++++----- Docs/Layers/dogpark.md | 73 +--- Docs/Layers/dogshop.md | 199 ++++----- Docs/Layers/drinking_water.md | 97 ++--- Docs/Layers/dumpstations.md | 79 ++-- ...ducation_institutions_without_etymology.md | 65 +-- Docs/Layers/elevator.md | 89 ++-- Docs/Layers/elongated_coin.md | 109 ++--- Docs/Layers/entrance.md | 89 ++-- Docs/Layers/etymology.md | 67 +-- Docs/Layers/extinguisher.md | 65 +-- Docs/Layers/facadegardens.md | 77 ++-- Docs/Layers/fietsstraat.md | 65 +-- Docs/Layers/fire_station.md | 73 +--- Docs/Layers/fitness_centre.md | 87 ++-- Docs/Layers/fitness_station.md | 81 ++-- Docs/Layers/fixme.md | 66 +-- Docs/Layers/food.md | 269 ++++++------ Docs/Layers/food_courts.md | 77 ++-- Docs/Layers/friture.md | 269 ++++++------ Docs/Layers/ghost_bike.md | 73 +--- Docs/Layers/ghostsigns.md | 69 +-- Docs/Layers/governments.md | 71 +-- Docs/Layers/grave.md | 81 ++-- Docs/Layers/guidepost.md | 69 +-- Docs/Layers/hackerspace.md | 109 ++--- ...lth_and_social_places_without_etymology.md | 65 +-- Docs/Layers/hospital.md | 79 ++-- Docs/Layers/hotel.md | 83 ++-- Docs/Layers/hydrant.md | 77 ++-- Docs/Layers/ice_cream.md | 87 ++-- Docs/Layers/indoors.md | 105 ++--- Docs/Layers/information_board.md | 65 +-- Docs/Layers/item_with_image.md | 61 +-- Docs/Layers/kerbs.md | 111 ++--- Docs/Layers/kindergarten_childcare.md | 77 ++-- Docs/Layers/lighthouse.md | 65 +-- Docs/Layers/lit_streets.md | 63 +-- Docs/Layers/love_hotel.md | 73 +--- Docs/Layers/map.md | 75 +--- Docs/Layers/maproulette.md | 105 ++--- Docs/Layers/maproulette_challenge.md | 99 ++--- Docs/Layers/maxspeed.md | 65 +-- Docs/Layers/medical_shops.md | 119 ++--- Docs/Layers/memorial.md | 89 ++-- Docs/Layers/mountain_rescue.md | 63 +-- Docs/Layers/named_streets.md | 57 +-- Docs/Layers/nature_reserve.md | 105 ++--- Docs/Layers/not_cyclestreets.md | 65 +-- Docs/Layers/note.md | 157 ++++--- Docs/Layers/observation_tower.md | 85 ++-- Docs/Layers/osm_community_index.md | 121 +++-- Docs/Layers/outdoor_seating.md | 87 ++-- Docs/Layers/parcel_lockers.md | 85 ++-- Docs/Layers/parking.md | 75 +--- Docs/Layers/parking_spaces.md | 67 +-- Docs/Layers/parking_spaces_disabled.md | 65 +-- Docs/Layers/parking_ticket_machine.md | 71 +-- .../parks_and_forests_without_etymology.md | 65 +-- Docs/Layers/pedestrian_path.md | 55 +-- Docs/Layers/pharmacy.md | 103 ++--- Docs/Layers/physiotherapist.md | 83 ++-- Docs/Layers/picnic_table.md | 73 +--- Docs/Layers/play_forest.md | 71 +-- Docs/Layers/playground.md | 89 ++-- Docs/Layers/playground_equipment.md | 67 +-- Docs/Layers/post_offices_with_atm.md | 129 +++--- Docs/Layers/postboxes.md | 63 +-- Docs/Layers/postoffices.md | 133 +++--- Docs/Layers/pt_shelter.md | 61 +-- Docs/Layers/public_bookcase.md | 123 +++--- Docs/Layers/railway_platforms.md | 65 +-- Docs/Layers/rainbow_crossing_high_zoom.md | 63 +-- Docs/Layers/rainbow_crossings.md | 65 +-- Docs/Layers/reception_desk.md | 69 +-- Docs/Layers/recycling.md | 151 +++---- Docs/Layers/route_marker.md | 63 +-- Docs/Layers/school.md | 83 ++-- Docs/Layers/shelter.md | 69 +-- Docs/Layers/shops.md | 215 +++++---- .../Layers/shops_with_climbing_shoe_repair.md | 201 ++++----- Docs/Layers/shower.md | 99 ++--- Docs/Layers/ski_piste.md | 65 +-- Docs/Layers/slow_roads.md | 67 +-- Docs/Layers/souvenir_coin.md | 103 ++--- Docs/Layers/souvenir_note.md | 103 ++--- Docs/Layers/speed_camera.md | 69 +-- Docs/Layers/speed_display.md | 67 +-- Docs/Layers/sport_pitch.md | 117 ++--- Docs/Layers/sport_places_without_etymology.md | 65 +-- Docs/Layers/sport_shops.md | 199 ++++----- Docs/Layers/sports_centre.md | 83 ++-- Docs/Layers/stairs.md | 75 +--- Docs/Layers/street_lamps.md | 81 ++-- Docs/Layers/streets_without_etymology.md | 65 +-- Docs/Layers/stripclub.md | 71 +-- Docs/Layers/surveillance_camera.md | 85 ++-- Docs/Layers/tertiary_education.md | 77 ++-- Docs/Layers/ticket_machine.md | 73 +--- Docs/Layers/ticket_validator.md | 67 +-- Docs/Layers/toekomstige_fietsstraat.md | 65 +-- Docs/Layers/toilet.md | 141 +++--- Docs/Layers/toilet_at_amenity.md | 125 +++--- .../toursistic_places_without_etymology.md | 65 +-- Docs/Layers/trail.md | 57 +-- Docs/Layers/transit_routes.md | 79 ++-- Docs/Layers/transit_stops.md | 117 ++--- Docs/Layers/tree_node.md | 83 ++-- Docs/Layers/trolley_bay.md | 69 +-- Docs/Layers/vending_machine.md | 165 +++---- Docs/Layers/vending_machine_bicycle.md | 159 +++---- Docs/Layers/veterinary.md | 71 +-- Docs/Layers/viewpoint.md | 67 +-- Docs/Layers/village_green.md | 61 +-- Docs/Layers/visitor_information_centre.md | 47 +- Docs/Layers/walls_and_buildings.md | 113 ++--- Docs/Layers/waste_basket.md | 107 ++--- Docs/Layers/waste_disposal.md | 81 ++-- Docs/Layers/windturbine.md | 75 +--- Docs/SpecialInputElements.md | 250 ++--------- Docs/SpecialRenderings.md | 5 +- Docs/Tags_format.md | 2 +- Docs/Themes/advertising.md | 65 ++- Docs/Themes/aed.md | 85 ++-- Docs/Themes/artwork.md | 83 ++-- Docs/Themes/atm.md | 77 ++-- Docs/Themes/bag.md | 63 +-- Docs/Themes/benches.md | 83 ++-- Docs/Themes/bicycle_parkings.md | 49 +-- Docs/Themes/bicycle_rental.md | 65 ++- Docs/Themes/bicyclelib.md | 77 ++-- Docs/Themes/binoculars.md | 67 ++- Docs/Themes/blind_osm.md | 73 ++-- Docs/Themes/bookcases.md | 73 ++-- Docs/Themes/buurtnatuur.md | 45 +- Docs/Themes/cafes_and_pubs.md | 75 ++-- Docs/Themes/campersite.md | 73 ++-- Docs/Themes/charging_stations.md | 71 ++- Docs/Themes/climbing.md | 85 ++-- Docs/Themes/clock.md | 59 +-- Docs/Themes/cycle_highways.md | 63 +-- Docs/Themes/cycle_infra.md | 71 ++- Docs/Themes/cyclenodes.md | 63 +-- Docs/Themes/cyclestreets.md | 73 ++-- Docs/Themes/cyclofix.md | 95 ++-- Docs/Themes/disaster_response.md | 53 +-- Docs/Themes/drinking_water.md | 69 ++- Docs/Themes/education.md | 67 ++- Docs/Themes/elongated_coin.md | 53 +-- Docs/Themes/etymology.md | 79 ++-- Docs/Themes/facadegardens.md | 65 ++- Docs/Themes/food.md | 71 ++- Docs/Themes/fritures.md | 59 +-- Docs/Themes/ghostbikes.md | 79 ++-- Docs/Themes/ghostsigns.md | 45 +- Docs/Themes/grb.md | 53 +-- Docs/Themes/guideposts.md | 49 +-- Docs/Themes/hackerspaces.md | 67 ++- Docs/Themes/hailhydrant.md | 73 ++-- Docs/Themes/healthcare.md | 77 ++-- Docs/Themes/hotels.md | 65 ++- Docs/Themes/icecream.md | 49 +-- Docs/Themes/indoors.md | 71 ++- Docs/Themes/items_with_image.md | 41 +- Docs/Themes/kerbs_and_crossings.md | 63 +-- Docs/Themes/lighthouses.md | 43 +- Docs/Themes/mapcomplete-changes.md | 47 +- Docs/Themes/maproulette.md | 59 +-- Docs/Themes/maps.md | 65 ++- Docs/Themes/maxspeed.md | 67 ++- Docs/Themes/memorials.md | 57 +-- Docs/Themes/nature.md | 77 ++-- Docs/Themes/notes.md | 63 +-- Docs/Themes/observation_towers.md | 65 ++- Docs/Themes/onwheels.md | 99 ++--- Docs/Themes/openlovemap.md | 61 +-- Docs/Themes/openwindpowermap.md | 69 ++- Docs/Themes/osm_community_index.md | 53 +-- Docs/Themes/parkings.md | 77 ++-- Docs/Themes/personal.md | 305 ++++++------- Docs/Themes/pets.md | 71 ++- Docs/Themes/play_forests.md | 39 +- Docs/Themes/playgrounds.md | 77 ++-- Docs/Themes/postal_codes.md | 71 ++- Docs/Themes/postboxes.md | 69 ++- Docs/Themes/rainbow_crossings.md | 63 +-- Docs/Themes/shops.md | 75 ++-- Docs/Themes/sidewalks.md | 67 ++- Docs/Themes/ski.md | 67 ++- Docs/Themes/speelplekken.md | 51 +-- Docs/Themes/sport_pitches.md | 65 ++- Docs/Themes/sports.md | 67 ++- Docs/Themes/stations.md | 103 ++--- Docs/Themes/street_lighting.md | 71 ++- Docs/Themes/street_lighting_assen.md | 43 +- Docs/Themes/surveillance.md | 71 ++- Docs/Themes/toerisme_vlaanderen.md | 57 +-- Docs/Themes/toilets.md | 71 ++- Docs/Themes/transit.md | 69 ++- Docs/Themes/trees.md | 77 ++-- Docs/Themes/uk_addresses.md | 47 +- Docs/Themes/velopark.md | 53 +-- Docs/Themes/vending_machine.md | 65 ++- Docs/Themes/walkingnodes.md | 53 +-- Docs/Themes/walls_and_buildings.md | 65 ++- Docs/Themes/waste.md | 69 ++- Docs/Themes/waste_assen.md | 47 +- Docs/Themes/waste_basket.md | 67 ++- Docs/Themes/width.md | 39 +- Docs/URL_Parameters.md | 412 ++++++++---------- Docs/builtin_units.md | 217 ++++----- 266 files changed, 8503 insertions(+), 14470 deletions(-) diff --git a/Docs/BuiltinIndex.md b/Docs/BuiltinIndex.md index ebfe34f5e21..ddaa9602b89 100644 --- a/Docs/BuiltinIndex.md +++ b/Docs/BuiltinIndex.md @@ -15,6 +15,7 @@ - atm - bank - barrier + - bbq - bench - bench_at_pt - bicycle_library @@ -50,6 +51,7 @@ - extinguisher - favourite - fire_station + - firepit - fitness_centre - fitness_station - food @@ -497,6 +499,11 @@ - climbing_gym + ### seasonal + + - drinking_water + - firepit + ### multilevels - elevator @@ -645,3 +652,6 @@ - toilet_at_amenity + + +This document is autogenerated from [assets/layers/*.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/*.json) diff --git a/Docs/BuiltinQuestions.md b/Docs/BuiltinQuestions.md index ddc837e6de1..f5165885b9c 100644 --- a/Docs/BuiltinQuestions.md +++ b/Docs/BuiltinQuestions.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# questions - questions -=========== - - - - +[object Object] Special library layer which does not need a '.questions'-prefix before being imported - - - - This layer is shown at zoomlevel **0** and higher - - Elements don't have a title set and cannot be toggled nor will they show up in the dashboard. If you import this layer in your theme, override `title` to make this toggleable. - - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` - - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` - + - This layer is shown at zoomlevel **0** and higher + - Elements don't have a title set and cannot be toggled nor will they show up in the dashboard. If you import this layer in your theme, override `title` to make this toggleable. + - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` This is a special layer - data is not sourced from OpenStreetMap - - ## Table of contents 1. [questions](#questions) @@ -79,50 +70,45 @@ This is a special layer - data is not sourced from OpenStreetMap 50. [last_edit](#last_edit) 51. [nothing_known](#nothing_known) - Supported attributes ----------------------- +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | [wikidata](../SpecialInputElements.md#wikidata) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [fediverse](../SpecialInputElements.md#fediverse) | | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | [object Object] | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | [object Object] | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | +| ] [object Object] | [date](../SpecialInputElements.md#date) | [object Object] | +| ] [object Object] | [date](../SpecialInputElements.md#date) | [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | | -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/wikidata#values) [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/contact:mastodon#values) [contact:mastodon](https://wiki.openstreetmap.org/wiki/Key:contact:mastodon) | [fediverse](../SpecialInputElements.md#fediverse) | -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) -[](https://taginfo.openstreetmap.org/keys/dog#values) [dog](https://wiki.openstreetmap.org/wiki/Key:dog) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno) [leashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed) [unleashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed) [outside](https://wiki.openstreetmap.org/wiki/Tag:dog%3Doutside) -[](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/service:electricity#values) [service:electricity](https://wiki.openstreetmap.org/wiki/Key:service:electricity) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dlimited) [ask](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask) [no](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno) -[](https://taginfo.openstreetmap.org/keys/payment:coins:denominations#values) [payment:coins:denominations](https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations) | Multiple choice | [0.01 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.01 EUR) [0.02 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.02 EUR) [0.05 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 EUR) [0.10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 EUR) [0.20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 EUR) [0.50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 EUR) [1 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 EUR) [2 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 EUR) [0.05 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 CHF) [0.10 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 CHF) [0.20 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 CHF) [0.50 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 CHF) [1 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 CHF) [2 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 CHF) [5 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D5 CHF) -[](https://taginfo.openstreetmap.org/keys/payment:notes:denominations#values) [payment:notes:denominations](https://wiki.openstreetmap.org/wiki/Key:payment:notes:denominations) | Multiple choice | [5 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D5 EUR) [10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D10 EUR) [20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D20 EUR) [50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D50 EUR) [100 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D100 EUR) [200 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D200 EUR) [500 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D500 EUR) [10 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D10 CHF) [20 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D20 CHF) [50 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D50 CHF) [100 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D100 CHF) [200 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D200 CHF) [1000 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D1000 CHF) -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [string](../SpecialInputElements.md#string) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/smoking#values) [smoking](https://wiki.openstreetmap.org/wiki/Key:smoking) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Dno) [outside](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Doutside) -[](https://taginfo.openstreetmap.org/keys/hearing_loop#values) [hearing_loop](https://wiki.openstreetmap.org/wiki/Key:hearing_loop) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dno) -[](https://taginfo.openstreetmap.org/keys/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired) -[](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers) -[](https://taginfo.openstreetmap.org/keys/internet_access:ssid#values) [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom) -[](https://taginfo.openstreetmap.org/keys/survey:date#values) [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D) -[](https://taginfo.openstreetmap.org/keys/check_date#values) [check_date](https://wiki.openstreetmap.org/wiki/Key:check_date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:check_date%3D) -[](https://taginfo.openstreetmap.org/keys/diet:sugar_free#values) [diet:sugar_free](https://wiki.openstreetmap.org/wiki/Key:diet:sugar_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:lactose_free#values) [diet:lactose_free](https://wiki.openstreetmap.org/wiki/Key:diet:lactose_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:gluten_free#values) [diet:gluten_free](https://wiki.openstreetmap.org/wiki/Key:diet:gluten_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:vegan#values) [diet:vegan](https://wiki.openstreetmap.org/wiki/Key:diet:vegan) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno) -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | - ### questions Show the questions block at this location @@ -698,6 +684,7 @@ _This tagrendering has no question and is thus read-only_ This tagrendering is only visible in the popup if the following condition is met: _last_edit:passed_time>=300 & _backend~.+ This tagrendering has labels -`added_by_default_top` +`added_by_default_top` + This document is autogenerated from [assets/layers/questions/questions.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/questions/questions.json) diff --git a/Docs/CalculatedTags.md b/Docs/CalculatedTags.md index 171bdb28cc2..a7bd6f86f24 100644 --- a/Docs/CalculatedTags.md +++ b/Docs/CalculatedTags.md @@ -1,22 +1,12 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Metatags -========== - - - +# Metatags Metatags are extra tags available, in order to display more data or to give better questions. - They are calculated automatically on every feature when the data arrives in the webbrowser. This document gives an overview of the available metatags. - **Hint:** when using metatags, add the [query parameter](URL_Parameters.md) `debug=true` to the URL. This will include a box in the popup for features which shows all the properties of the object - - ## Table of contents -1. [ Metatags calculated by MapComplete ](#-metatags-calculated-by-mapcomplete-) +1. [Metatags calculated by MapComplete](#metatags-calculated-by-mapcomplete) - [_lat, _lon](#_lat,-_lon) - [_layer](#_layer) - [_surface](#_surface) @@ -44,195 +34,119 @@ They are calculated automatically on every feature when the data arrives in the - [closestn](#closestn) - [get](#get) - Metatags calculated by MapComplete ------------------------------------- - - +## Metatags calculated by MapComplete The following values are always calculated, by default, by MapComplete and are available automatically on all elements in every theme - - -### _lat, _lon - - +### _lat, _lon The latitude and longitude of the point (or centerpoint in the case of a way/area) - - -### _layer - - +### _layer The layer-id to which this feature belongs. Note that this might be return any applicable if `passAllFeatures` is defined. - - -### _surface - - +### _surface 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 - - +### _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 - - -### _length, _length:km - - +### _length, _length:km The total length of a feature in meters (and in kilometers, rounded to one decimal for '_length:km'). For a surface, the length of the perimeter - - -### Theme-defined keys - - +### Theme-defined keys If 'units' is defined in the layoutConfig, then this metatagger will rewrite the specified keys to have the canonical form (e.g. `1meter` will be rewritten to `1m`; `1` will be rewritten to `1m` as well) - - -### _country - - +### _country The country codes of the of the country/countries that the feature is located in (with latlon2country). Might contain _multiple_ countries, separated by a `;` - - -### _isOpen - - +### _isOpen If 'opening_hours' is present, it will add the current state of the feature (being 'yes' or 'no') This is a lazy metatag and is only calculated when needed - - -### _direction:numerical, _direction:leftright - - +### _direction:numerical, _direction:leftright _direction:numerical is a normalized, numerical direction based on 'camera:direction' or on 'direction'; it is only present if a valid direction is found (e.g. 38.5 or NE). _direction:leftright is either 'left' or 'right', which is left-looking on the map or 'right-looking' on the map - - -### _direction:centerpoint - - +### _direction:centerpoint _direction:centerpoint is the direction of the linestring (in degrees) if one were standing at the projected centerpoint. This is a lazy metatag and is only calculated when needed - - -### _now:date, _now:datetime - - +### _now:date, _now:datetime Adds the time that the data got loaded - pretty much the time of downloading from overpass. The format is YYYY-MM-DD hh:mm, aka 'sortable' aka ISO-8601-but-not-entirely - - -### _last_edit:contributor, _last_edit:contributor:uid, _last_edit:changeset, _last_edit:timestamp, _version_number, _backend - - +### _last_edit:contributor, _last_edit:contributor:uid, _last_edit:changeset, _last_edit:timestamp, _version_number, _backend Information about the last edit of this object. This object will actually _rewrite_ some tags for features coming from overpass - - -### sidewalk:left, sidewalk:right, generic_key:left:property, generic_key:right:property - - +### sidewalk:left, sidewalk:right, generic_key:left:property, generic_key:right:property Rewrites tags from 'generic_key:both:property' as 'generic_key:left:property' and 'generic_key:right:property' (and similar for sidewalk tagging). Note that this rewritten tags _will be reuploaded on a change_. To prevent to much unrelated retagging, this is only enabled if the layer has at least some lineRenderings with offset defined - - -### _geometry:type - - +### _geometry:type Adds the geometry type as property. This is identical to the GoeJson geometry type and is one of `Point`,`LineString`, `Polygon` and exceptionally `MultiPolygon` or `MultiLineString` - - -### _level - - +### _level Extract the 'level'-tag into a normalized, ';'-separated value called '_level' (which also includes 'repeat_on'). The `level` tag (without underscore) will be normalized with only the value of `level`. - - -### _referencing_ways - - +### _referencing_ways _referencing_ways contains - for a node - which ways use this node as point in their geometry. This is a lazy metatag and is only calculated when needed - - -### _last_edit:passed_time - - +### _last_edit:passed_time Gives the number of seconds since the last edit. Note that this will _not_ update, but rather be the number of seconds elapsed at the moment this tag is read first This is a lazy metatag and is only calculated when needed - - -### _currency - - +### _currency Adds the currency valid for the object, based on country or explicit tagging. Can be a single currency or a semicolon-separated list of currencies. Empty if no currency is found. This is a lazy metatag and is only calculated when needed - Calculating tags with Javascript ---------------------------------- @@ -287,28 +201,20 @@ 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 as well. Due to technical reasons, they should be used as `funcname(feat)(arguments)`. - - - [distanceTo](#distanceTo) - - [overlapWith](#overlapWith) - - [enclosingFeatures](#enclosingFeatures) - - [intersectionsWith](#intersectionsWith) - - [closest](#closest) - - [closestn](#closestn) - - [get](#get) - - -### distanceTo - - Calculates the distance between the feature and a specified point in meter. The input should either be a pair of coordinates, a geojson feature or the ID of an object - - 0. feature OR featureID OR longitude - 1. undefined OR latitude - - -### overlapWith - - Gives a list of features from the specified layer which this feature (partly) overlaps with. A point which is embedded in the feature is detected 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) + - [enclosingFeatures](#enclosingFeatures) + - [intersectionsWith](#intersectionsWith) + - [closest](#closest) + - [closestn](#closestn) + - [get](#get) +### distanceTo +Calculates the distance between the feature and a specified point in meter. The input should either be a pair of coordinates, a geojson feature or the ID of an object + - feature OR featureID OR longitude + - undefined OR latitude +### overlapWith +Gives a list of features from the specified layer which this feature (partly) overlaps with. A point which is embedded in the feature is detected as well. If the current feature is a point, all features that this point is embeded in are given. 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. @@ -316,57 +222,36 @@ The resulting list is sorted in descending order by overlap. The feature with th 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 - - 0. ...layerIds - one or more layer ids of the layer from which every feature is checked for overlap) - - -### enclosingFeatures - - Gives a list of all features in the specified layers which fully contain this object. Returned features will always be (multi)polygons. (LineStrings and Points from the other layers are ignored) +Also see [enclosingFeatures](#enclosingFeatures) which can be used to get all objects which fully contain this feature + - ...layerIds - one or more layer ids of the layer from which every feature is checked for overlap) +### enclosingFeatures +Gives a list of all features in the specified layers which fully contain this object. Returned features will always be (multi)polygons. (LineStrings and Points from the other layers are ignored) The result is a list of features: `{feat: Polygon}[]` -This function will never return the feature itself. - - 0. ...layerIds - one or more layer ids of the layer from which every feature is checked for overlap) - - -### intersectionsWith - - Gives the intersection points with selected features. Only works with (Multi)Polygons and LineStrings. +This function will never return the feature itself. + - ...layerIds - one or more layer ids of the layer from which every feature is checked for overlap) +### intersectionsWith +Gives the intersection points with selected features. Only works with (Multi)Polygons and LineStrings. Returns a `{feat: GeoJson, intersections: [number,number][]}` where `feat` is the full, original feature. This list is in random order. If the current feature is a point, this function will return an empty list. -Points from other layers are ignored - even if the points are parts of the current linestring. +Points from other layers are ignored - even if the points are parts of the current linestring. + - ...layerIds - one or more layer ids of the layer from which every feature is checked for intersection) +### closest +Given either a list of geojson features or a single layer name, gives the single object which is nearest to the feature. In the case of ways/polygons, only the centerpoint is considered. Returns a single geojson feature or undefined if nothing is found (or not yet loaded) + - list of features or a layer name or '*' to get all features +### closestn +Given either a list of geojson features or a single layer name, gives the n closest objects which are nearest to the feature (excluding the feature itself). In the case of ways/polygons, only the centerpoint is considered. Returns a list of `{feat: geojson, distance:number}` the empty list if nothing is found (or not yet loaded) - 0. ...layerIds - one or more layer ids of the layer from which every feature is checked for intersection) - +If a 'unique tag key' is given, the tag with this key will only appear once (e.g. if 'name' is given, all features will have a different name) + - list of features or layer name or '*' to get all features + - amount of features + - unique tag key (optional) + - maxDistanceInMeters (optional) +### get +Gets the property of the feature, parses it (as JSON) and returns it. Might return 'undefined' if not defined, null, ... + - key -### closest - - Given either a list of geojson features or a single layer name, gives the single object which is nearest to the feature. In the case of ways/polygons, only the centerpoint is considered. Returns a single geojson feature or undefined if nothing is found (or not yet loaded) - - 0. list of features or a layer name or '*' to get all features - - -### closestn - - Given either a list of geojson features or a single layer name, gives the n closest objects which are nearest to the feature (excluding the feature itself). In the case of ways/polygons, only the centerpoint is considered. Returns a list of `{feat: geojson, distance:number}` the empty list if nothing is found (or not yet loaded) - -If a 'unique tag key' is given, the tag with this key will only appear once (e.g. if 'name' is given, all features will have a different name) - - 0. list of features or layer name or '*' to get all features - 1. amount of features - 2. unique tag key (optional) - 3. maxDistanceInMeters (optional) - - -### get - - Gets the property of the feature, parses it (as JSON) and returns it. Might return 'undefined' if not defined, null, ... - - 0. key - This document is autogenerated from [src/Logic/SimpleMetaTagger.ts](https://github.com/pietervdvn/MapComplete/blob/develop/src/Logic/SimpleMetaTagger.ts), [src/Logic/ExtraFunctions.ts](https://github.com/pietervdvn/MapComplete/blob/develop/src/Logic/ExtraFunctions.ts) diff --git a/Docs/ChangesetMeta.md b/Docs/ChangesetMeta.md index d8f3daa237b..595ae1aa3d2 100644 --- a/Docs/ChangesetMeta.md +++ b/Docs/ChangesetMeta.md @@ -1,28 +1,45 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# Metatags on a changeset + +You might encounter the following metatags on a changeset: - Metatags on a changeset -========================= - You might encounter the following metatags on a changeset: +| key | value | explanation | source | +-----|-----|-----|----- | +| comment | | The changeset comment. Will be a fixed string, mentioning the theme + | default | +| theme | | The name of the theme that was used to create this change. + | default | +| source | survey | The contributor had their geolocation enabled while making changes + | default | +| change_within_{distance} | | If the contributor enabled their geolocation, this will hint how far away they were from the objects they edited. This gives an indication of proximity and if they truly surveyed or were armchair-mapping + | default | +| change_over_{distance} | | If the contributor enabled their geolocation, this will hint how far away they were from the objects they edited. If they were over 5000m away, the might have been armchair-mapping + | default | +| created_by | MapComplete | The piece of software used to create this changeset; will always start with MapComplete, followed by the version number + | default | +| locale | en|nl|de|... | The code of the language that the contributor used MapComplete in. Hints what language the user speaks. + | default | +| host | https://mapcomplete.org/ | The URL that the contributor used to make changes. One can see the used instance with this + | default | +| imagery | | The identifier of the used background layer, this will probably be an identifier from the [editor layer index](https://github.com/osmlab/editor-layer-index) + | default | +| answer | | Indicates the number of questions that have been answered + | ChangeTag | +| soft-delete | | Indicates the number of soft-deleted items + | ChangeTag | +| add-image | | Indicates the number of images that have been added in this changeset + | ChangeTag | +| link-image | | Indicates the number of images that have been linked in this changeset + | ChangeTag | +| move | relocated|improve_accuraccy|... | Will appear if the point has been moved +This might give a reason per modified node or way | ChangeLocation | +| deletion | | Will appear if the object was deleted +This might give a reason per modified node or way | DeleteAction | + + -key | value | explanation | source ------ | ------- | ------------- | -------- -comment | | The changeset comment. Will be a fixed string, mentioning the theme | default -theme | | The name of the theme that was used to create this change. | default -source | survey | The contributor had their geolocation enabled while making changes | default -change_within_{distance} | | If the contributor enabled their geolocation, this will hint how far away they were from the objects they edited. This gives an indication of proximity and if they truly surveyed or were armchair-mapping | default -change_over_{distance} | | If the contributor enabled their geolocation, this will hint how far away they were from the objects they edited. If they were over 5000m away, the might have been armchair-mapping | default -created_by | MapComplete | The piece of software used to create this changeset; will always start with MapComplete, followed by the version number | default -locale | en\|nl\|de\|... | The code of the language that the contributor used MapComplete in. Hints what language the user speaks. | default -host | https://mapcomplete.org/ | The URL that the contributor used to make changes. One can see the used instance with this | default -imagery | | The identifier of the used background layer, this will probably be an identifier from the [editor layer index](https://github.com/osmlab/editor-layer-index) | default -answer | | Indicates the number of questions that have been answered | ChangeTag -soft-delete | | Indicates the number of soft-deleted items | ChangeTag -add-image | | Indicates the number of images that have been added in this changeset | ChangeTag -link-image | | Indicates the number of images that have been linked in this changeset | ChangeTag -move | relocated\|improve_accuraccy\|... | Will appear if the This might give a reason per modified node or way | ChangeLocation - This document is autogenerated from [src/Logic/Osm/Changes.ts](https://github.com/pietervdvn/MapComplete/blob/develop/src/Logic/Osm/Changes.ts), [src/Logic/Osm/ChangesetHandler.ts](https://github.com/pietervdvn/MapComplete/blob/develop/src/Logic/Osm/ChangesetHandler.ts) diff --git a/Docs/Hotkeys.md b/Docs/Hotkeys.md index 411991bd8c7..4d8f7797ae8 100644 --- a/Docs/Hotkeys.md +++ b/Docs/Hotkeys.md @@ -1,33 +1,32 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# Hotkeys +MapComplete supports the following keys: - Hotkeys -========= +| Key combination | Action | +-----|----- | +| `1` | Select the POI which is closest to the map center (crosshair). Only when in keyboard navigation is used | +| `2` | Select the POI which is second closest element to the map center (crosshair). Only when in keyboard navigation is used | +| `3` | Select the POI which is third closest element to the map center (crosshair). Only when in keyboard navigation is used | +| `4` | Select the POI which is the 4th closest element to the map center (crosshair). Only when in keyboard navigation is used | +| `5` | Select the POI which is the 5th closest element to the map center (crosshair). Only when in keyboard navigation is used | +| `6` | Select the POI which is the 6th closest element to the map center (crosshair). Only when in keyboard navigation is used | +| `7` | Select the POI which is the 7th closest element to the map center (crosshair). Only when in keyboard navigation is used | +| `8` | Select the POI which is the 8th closest element to the map center (crosshair). Only when in keyboard navigation is used | +| `B` | Opens the background layers panel | +| `Escape` | Close the sidebar | +| `F` | Open the favourites page | +| `L` | Pan the map to the current location or zoom the map to the current location. Requests geopermission | +| `M` | Set the background to a map from external sources. Toggles between the two best, available layers | +| `O` | Set the background layer to on OpenStreetMap-based map (or disable the background raster layer) | +| `P` | Set the background to aerial or satellite imagery. Toggles between the two best, available layers | +| `S` | Opens the POI-layers and filter panel | +| `Spacebar` | Select the POI which is closest to the map center (crosshair). Only when in keyboard navigation is used | +| `shift+O` | Set the background layer to OpenStreetMap-carto | +| `shift+T` | Toggle translation mode on or off | - MapComplete supports the following keys: -Key combination | Action ------------------ | -------- -1 | Select the POI which is closest to the map center (crosshair). Only when in keyboard navigation is used -2 | Select the POI which is second closest element to the map center (crosshair). Only when in keyboard navigation is used -3 | Select the POI which is third closest element to the map center (crosshair). Only when in keyboard navigation is used -4 | Select the POI which is the 4th closest element to the map center (crosshair). Only when in keyboard navigation is used -5 | Select the POI which is the 5th closest element to the map center (crosshair). Only when in keyboard navigation is used -6 | Select the POI which is the 6th closest element to the map center (crosshair). Only when in keyboard navigation is used -7 | Select the POI which is the 7th closest element to the map center (crosshair). Only when in keyboard navigation is used -8 | Select the POI which is the 8th closest element to the map center (crosshair). Only when in keyboard navigation is used -B | Opens the background layers panel -Escape | Close the sidebar -F | Open the favourites page -L | Pan the map to the current location or zoom the map to the current location. Requests geopermission -M | Set the background to a map from external sources. Toggles between the two best, available layers -O | Set the background layer to on OpenStreetMap-based map (or disable the background raster layer) -P | Set the background to aerial or satellite imagery. Toggles between the two best, available layers -S | Opens the POI-layers and filter panel -Spacebar | Select the POI which is closest to the map center (crosshair). Only when in keyboard navigation is used -shift+O | Set the background layer to OpenStreetMap-carto -shift+T | Toggle translation mode on or off - -This document is autogenerated from + +This document is autogenerated from [src/UI/Base/Hotkeys.ts](https://github.com/pietervdvn/MapComplete/blob/develop/src/UI/Base/Hotkeys.ts) diff --git a/Docs/Layers/address.md b/Docs/Layers/address.md index 4ef7505ce5f..694a971f9c5 100644 --- a/Docs/Layers/address.md +++ b/Docs/Layers/address.md @@ -1,31 +1,22 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# address - address -========= - - - - +[object Object] Addresses - - - - This layer is shown at zoomlevel **18** and higher - - This layer will automatically load [named_streets](./named_streets.md) into the layout as it depends on it: a calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _closest_3_street_names) - - - + - This layer is shown at zoomlevel **18** and higher + - This layer will automatically load [named_streets](./named_streets.md) into the layout as it depends on it: a calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _closest_3_street_names) ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [housenumber](#housenumber) @@ -40,23 +31,12 @@ Addresses - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [grb](https://mapcomplete.org/grb) - - [uk_addresses](https://mapcomplete.org/uk_addresses) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [grb](https://mapcomplete.org/grb) + - [uk_addresses](https://mapcomplete.org/uk_addresses) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -65,25 +45,18 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22addr%3Ahousenumber%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22addr%3Astreet%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/addr:housenumber#values) [addr:housenumber](https://wiki.openstreetmap.org/wiki/Key:addr:housenumber) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/addr:street#values) [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:addr:street%3D) [](https://wiki.openstreetmap.org/wiki/Tag:addr:street%3D) [](https://wiki.openstreetmap.org/wiki/Tag:addr:street%3D) -[](https://taginfo.openstreetmap.org/keys/fixme#values) [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:fixme%3D) ### just_created @@ -203,6 +176,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/address/address.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/address/address.json) diff --git a/Docs/Layers/advertising.md b/Docs/Layers/advertising.md index 0ba2c2a0a41..5f327a81d9e 100644 --- a/Docs/Layers/advertising.md +++ b/Docs/Layers/advertising.md @@ -1,37 +1,28 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# advertising - advertising -============= - - - - +[object Object] We will complete data from advertising features with reference, operator and lit - - - - This layer is shown at zoomlevel **15** and higher - - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[2]) - - This layer will automatically load [shelter](./shelter.md) into the layout as it depends on it: a preset snaps to this layer (presets[3]) - - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[8]) - - This layer will automatically load [shelter](./shelter.md) into the layout as it depends on it: a preset snaps to this layer (presets[9]) - - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[10]) - - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[12]) - - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[14]) - - - + - This layer is shown at zoomlevel **15** and higher + - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[2]) + - This layer will automatically load [shelter](./shelter.md) into the layout as it depends on it: a preset snaps to this layer (presets[3]) + - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[8]) + - This layer will automatically load [shelter](./shelter.md) into the layout as it depends on it: a preset snaps to this layer (presets[9]) + - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[10]) + - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[12]) + - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[14]) ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -54,23 +45,12 @@ We will complete data from advertising features with reference, operator and lit - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [advertising](https://mapcomplete.org/advertising) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [advertising](https://mapcomplete.org/advertising) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -79,27 +59,20 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22advertising%22%5D%5B%22advertising%22!%3D%22no%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/advertising#values) [advertising](https://wiki.openstreetmap.org/wiki/Key:advertising) | [string](../SpecialInputElements.md#string) | [billboard](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dbillboard) [board](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dboard) [column](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dcolumn) [flag](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dflag) [poster_box](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dposter_box) [screen](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dscreen) [sculpture](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dsculpture) [sign](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dsign) [tarp](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dtarp) [totem](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dtotem) [wall_painting](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dwall_painting) -[](https://taginfo.openstreetmap.org/keys/animated#values) [animated](https://wiki.openstreetmap.org/wiki/Key:animated) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:animated%3Dno) [digital_display](https://wiki.openstreetmap.org/wiki/Tag:animated%3Ddigital_display) [trivision_blades](https://wiki.openstreetmap.org/wiki/Tag:animated%3Dtrivision_blades) [winding_posters](https://wiki.openstreetmap.org/wiki/Tag:animated%3Dwinding_posters) [revolving](https://wiki.openstreetmap.org/wiki/Tag:animated%3Drevolving) -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/sides#values) [sides](https://wiki.openstreetmap.org/wiki/Key:sides) | Multiple choice | [1](https://wiki.openstreetmap.org/wiki/Tag:sides%3D1) [2](https://wiki.openstreetmap.org/wiki/Tag:sides%3D2) -[](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | ### just_created @@ -320,6 +293,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/advertising/advertising.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/advertising/advertising.json) diff --git a/Docs/Layers/advertising_wall_paintings.md b/Docs/Layers/advertising_wall_paintings.md index ff98d72873f..063b8b686bd 100644 --- a/Docs/Layers/advertising_wall_paintings.md +++ b/Docs/Layers/advertising_wall_paintings.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# advertising_wall_paintings - advertising_wall_paintings -============================ - - - - +[object Object] We will complete data from advertising features with reference, operator and lit - - - - This layer is shown at zoomlevel **18** and higher - - - + - This layer is shown at zoomlevel **18** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [historic](#historic) - [just_created](#just_created) - [nothing_known](#nothing_known) @@ -48,49 +39,31 @@ We will complete data from advertising features with reference, operator and lit - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [ghostsigns](https://mapcomplete.org/ghostsigns) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [ghostsigns](https://mapcomplete.org/ghostsigns) +## Basic tags for this layer Elements must match the expression **advertising=wall_painting** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22advertising%22%3D%22wall_painting%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/historic#values) [historic](https://wiki.openstreetmap.org/wiki/Key:historic) | Multiple choice | [advertising](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dadvertising) [](https://wiki.openstreetmap.org/wiki/Tag:historic%3D) -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/advertising#values) [advertising](https://wiki.openstreetmap.org/wiki/Key:advertising) | [string](../SpecialInputElements.md#string) | [billboard](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dbillboard) [board](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dboard) [column](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dcolumn) [flag](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dflag) [poster_box](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dposter_box) [screen](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dscreen) [sculpture](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dsculpture) [sign](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dsign) [tarp](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dtarp) [totem](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dtotem) [wall_painting](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dwall_painting) -[](https://taginfo.openstreetmap.org/keys/animated#values) [animated](https://wiki.openstreetmap.org/wiki/Key:animated) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:animated%3Dno) [digital_display](https://wiki.openstreetmap.org/wiki/Tag:animated%3Ddigital_display) [trivision_blades](https://wiki.openstreetmap.org/wiki/Tag:animated%3Dtrivision_blades) [winding_posters](https://wiki.openstreetmap.org/wiki/Tag:animated%3Dwinding_posters) [revolving](https://wiki.openstreetmap.org/wiki/Tag:animated%3Drevolving) -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/sides#values) [sides](https://wiki.openstreetmap.org/wiki/Key:sides) | Multiple choice | [1](https://wiki.openstreetmap.org/wiki/Tag:sides%3D1) [2](https://wiki.openstreetmap.org/wiki/Tag:sides%3D2) -[](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | ### historic @@ -320,6 +293,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/themes/ghostsigns/ghostsigns.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/ghostsigns/ghostsigns.json) diff --git a/Docs/Layers/aerialway.md b/Docs/Layers/aerialway.md index 73848725527..8f072d26c34 100644 --- a/Docs/Layers/aerialway.md +++ b/Docs/Layers/aerialway.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# aerialway - aerialway -=========== - - - - +[object Object] Various forms of transport for passengers and goods that use wires, including cable cars, gondolas, chair lifts, drag lifts, and zip lines. - - - - This layer is shown at zoomlevel **11** and higher - - - + - This layer is shown at zoomlevel **11** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -44,23 +35,12 @@ Various forms of transport for passengers and goods that use wires, including ca - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [personal](https://mapcomplete.org/personal) - - [ski](https://mapcomplete.org/ski) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [personal](https://mapcomplete.org/personal) + - [ski](https://mapcomplete.org/ski) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -70,27 +50,20 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22aerialway%22%5D%5B%22aerialway%22!%3D%22pylon%22%5D%5B%22aerialway%22!%3D%22station%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/aerialway#values) [aerialway](https://wiki.openstreetmap.org/wiki/Key:aerialway) | Multiple choice | [cable_car](https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dcable_car) [gondola](https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dgondola) [chair_lift](https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dchair_lift) [mixed](https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dmixed) [t-bar](https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dt-bar) [j-bar](https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dj-bar) [platter](https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dplatter) [rope_tow](https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Drope_tow) [magic_carpet](https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dmagic_carpet) [zip_line](https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dzip_line) -[](https://taginfo.openstreetmap.org/keys/duration#values) [duration](https://wiki.openstreetmap.org/wiki/Key:duration) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/aerialway:occupancy#values) [aerialway:occupancy](https://wiki.openstreetmap.org/wiki/Key:aerialway:occupancy) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/oneway#values) [oneway](https://wiki.openstreetmap.org/wiki/Key:oneway) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:oneway%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:oneway%3Dno) ### just_created @@ -262,6 +235,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/aerialway/aerialway.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/aerialway/aerialway.json) diff --git a/Docs/Layers/all_streets.md b/Docs/Layers/all_streets.md index dd01247c0b0..8bca2c133a0 100644 --- a/Docs/Layers/all_streets.md +++ b/Docs/Layers/all_streets.md @@ -1,29 +1,22 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# all_streets - all_streets -============= +[object Object] - - - - - - This layer is shown at zoomlevel **18** and higher - - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` - - - + - This layer is shown at zoomlevel **18** and higher + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -39,22 +32,11 @@ - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [street_lighting](https://mapcomplete.org/street_lighting) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [street_lighting](https://mapcomplete.org/street_lighting) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -64,23 +46,16 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22highway%22%5D%5B%22highway%22!%3D%22platform%22%5D%5B%22service%22!%3D%22driveway%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/lit#values) [lit](https://wiki.openstreetmap.org/wiki/Key:lit) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno) [24/7](https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7) ### just_created @@ -205,6 +180,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/themes/street_lighting/street_lighting.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/street_lighting/street_lighting.json) diff --git a/Docs/Layers/all_vending_machine.md b/Docs/Layers/all_vending_machine.md index 1e774812836..75b8214536e 100644 --- a/Docs/Layers/all_vending_machine.md +++ b/Docs/Layers/all_vending_machine.md @@ -1,31 +1,22 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# all_vending_machine - all_vending_machine -===================== - - - - +[object Object] Layer showing vending machines - - - - This layer is shown at zoomlevel **18** and higher - - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` - - - + - This layer is shown at zoomlevel **18** and higher + - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -58,22 +49,11 @@ Layer showing vending machines - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [vending_machine](https://mapcomplete.org/vending_machine) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [vending_machine](https://mapcomplete.org/vending_machine) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -82,36 +62,29 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22vending_machine%22%5D%5B%22vending%22!~%22%5E%28%28parking_tickets%7Celongated_coin%7Cpublic_transport_tickets%29%29%24%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [currency](../SpecialInputElements.md#currency) | | +| ] [object Object] | [currency](../SpecialInputElements.md#currency) | | +| ] [object Object] | [currency](../SpecialInputElements.md#currency) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/vending#values) [vending](https://wiki.openstreetmap.org/wiki/Key:vending) | [string](../SpecialInputElements.md#string) | [drinks](https://wiki.openstreetmap.org/wiki/Tag:vending%3Ddrinks) [sweets](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dsweets) [food](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dfood) [cigarettes](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcigarettes) [condoms](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcondoms) [coffee](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcoffee) [water](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dwater) [newspapers](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dnewspapers) [bicycle_tube](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_tube) [milk](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dmilk) [bread](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbread) [eggs](https://wiki.openstreetmap.org/wiki/Tag:vending%3Deggs) [cheese](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcheese) [honey](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dhoney) [potatoes](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dpotatoes) [meat](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dmeat) [fruit](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dfruit) [strawberries](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dstrawberries) [flowers](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dflowers) [parking_tickets](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dparking_tickets) [elongated_coin](https://wiki.openstreetmap.org/wiki/Tag:vending%3Delongated_coin) [public_transport_tickets](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dpublic_transport_tickets) [bicycle_light](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_light) [gloves](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dgloves) [bicycle_repair_kit](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_repair_kit) [bicycle_pump](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_pump) [bicycle_lock](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_lock) -[](https://taginfo.openstreetmap.org/keys/brand#values) [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [string](../SpecialInputElements.md#string) | [Continental](https://wiki.openstreetmap.org/wiki/Tag:brand%3DContinental) [Schwalbe](https://wiki.openstreetmap.org/wiki/Tag:brand%3DSchwalbe) -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) -[](https://taginfo.openstreetmap.org/keys/payment:coins:denominations#values) [payment:coins:denominations](https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations) | Multiple choice | [0.01 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.01 EUR) [0.02 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.02 EUR) [0.05 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 EUR) [0.10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 EUR) [0.20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 EUR) [0.50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 EUR) [1 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 EUR) [2 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 EUR) [0.05 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 CHF) [0.10 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 CHF) [0.20 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 CHF) [0.50 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 CHF) [1 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 CHF) [2 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 CHF) [5 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D5 CHF) -[](https://taginfo.openstreetmap.org/keys/payment:notes:denominations#values) [payment:notes:denominations](https://wiki.openstreetmap.org/wiki/Key:payment:notes:denominations) | Multiple choice | [5 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D5 EUR) [10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D10 EUR) [20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D20 EUR) [50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D50 EUR) [100 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D100 EUR) [200 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D200 EUR) [500 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D500 EUR) [10 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D10 CHF) [20 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D20 CHF) [50 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D50 CHF) [100 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D100 CHF) [200 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D200 CHF) [1000 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D1000 CHF) -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/indoor#values) [indoor](https://wiki.openstreetmap.org/wiki/Key:indoor) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno) -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [currency](../SpecialInputElements.md#currency) | -[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [currency](../SpecialInputElements.md#currency) | -[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [currency](../SpecialInputElements.md#currency) | -[](https://taginfo.openstreetmap.org/keys/operational_status#values) [operational_status](https://wiki.openstreetmap.org/wiki/Key:operational_status) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3D) [broken](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dbroken) [closed](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dclosed) ### just_created @@ -471,51 +444,51 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes + +| id | question | osmTags | +-----|-----|----- | +| vending.0 | *All vending machines* (default) | | +| vending.1 | Sale of drinks | vending~^(.*drinks.*)$ | +| vending.2 | Sale of sweets | vending~^(.*sweets.*)$ | +| vending.3 | Sale of food | vending~^(.*food.*)$ | +| vending.4 | Sale of cigarettes | vending~^(.*cigarettes.*)$ | +| vending.5 | Sale of condoms | vending~^(.*condoms.*)$ | +| vending.6 | Sale of coffee | vending~^(.*coffee.*)$ | +| vending.7 | Sale of water | vending~^(.*water.*)$ | +| vending.8 | Sale of newspapers | vending~^(.*newspapers.*)$ | +| vending.9 | Sale of bicycle inner tubes | vending~^(.*bicycle_tube.*)$ | +| vending.10 | Sale of milk | vending~^(.*milk.*)$ | +| vending.11 | Sale of bread | vending~^(.*bread.*)$ | +| vending.12 | Sale of eggs | vending~^(.*eggs.*)$ | +| vending.13 | Sale of cheese | vending~^(.*cheese.*)$ | +| vending.14 | Sale of honey | vending~^(.*honey.*)$ | +| vending.15 | Sale of potatoes | vending~^(.*potatoes.*)$ | +| vending.16 | Sale of meat | vending~^(.*meat.*)$ | +| vending.17 | Sale of fruit | vending~^(.*fruit.*)$ | +| vending.18 | Sale of strawberries | vending~^(.*strawberries.*)$ | +| vending.19 | Sale of flowers | vending~^(.*flowers.*)$ | +| vending.20 | Sale of parking tickets | vending~^(.*parking_tickets.*)$ | +| vending.21 | Sale of pressed pennies | vending=elongated_coin | +| vending.22 | Sale of public transport tickets | vending~^(.*public_transport_tickets.*)$ | +| vending.23 | Sale of bicycle lights | vending=bicycle_light | +| vending.24 | Sale of gloves | vending=gloves | +| vending.25 | Sale of bicycle repair kits | vending=bicycle_repair_kit | +| vending.26 | Sale of bicycle pumps | vending=bicycle_pump | +| vending.27 | Sale of bicycle locks | vending=bicycle_lock | -id | question | osmTags ----- | ---------- | --------- -vending.0 | All vending machines (default) | -vending.1 | Sale of drinks | vending~^(.*drinks.*)$ -vending.2 | Sale of sweets | vending~^(.*sweets.*)$ -vending.3 | Sale of food | vending~^(.*food.*)$ -vending.4 | Sale of cigarettes | vending~^(.*cigarettes.*)$ -vending.5 | Sale of condoms | vending~^(.*condoms.*)$ -vending.6 | Sale of coffee | vending~^(.*coffee.*)$ -vending.7 | Sale of water | vending~^(.*water.*)$ -vending.8 | Sale of newspapers | vending~^(.*newspapers.*)$ -vending.9 | Sale of bicycle inner tubes | vending~^(.*bicycle_tube.*)$ -vending.10 | Sale of milk | vending~^(.*milk.*)$ -vending.11 | Sale of bread | vending~^(.*bread.*)$ -vending.12 | Sale of eggs | vending~^(.*eggs.*)$ -vending.13 | Sale of cheese | vending~^(.*cheese.*)$ -vending.14 | Sale of honey | vending~^(.*honey.*)$ -vending.15 | Sale of potatoes | vending~^(.*potatoes.*)$ -vending.16 | Sale of meat | vending~^(.*meat.*)$ -vending.17 | Sale of fruit | vending~^(.*fruit.*)$ -vending.18 | Sale of strawberries | vending~^(.*strawberries.*)$ -vending.19 | Sale of flowers | vending~^(.*flowers.*)$ -vending.20 | Sale of parking tickets | vending~^(.*parking_tickets.*)$ -vending.21 | Sale of pressed pennies | vending=elongated_coin -vending.22 | Sale of public transport tickets | vending~^(.*public_transport_tickets.*)$ -vending.23 | Sale of bicycle lights | vending=bicycle_light -vending.24 | Sale of gloves | vending=gloves -vending.25 | Sale of bicycle repair kits | vending=bicycle_repair_kit -vending.26 | Sale of bicycle pumps | vending=bicycle_pump -vending.27 | Sale of bicycle locks | vending=bicycle_lock - - This document is autogenerated from [assets/themes/vending_machine/vending_machine.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/vending_machine/vending_machine.json) diff --git a/Docs/Layers/ambulancestation.md b/Docs/Layers/ambulancestation.md index 5a813a63351..6926c2e0b00 100644 --- a/Docs/Layers/ambulancestation.md +++ b/Docs/Layers/ambulancestation.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# ambulancestation - ambulancestation -================== - - - - +[object Object] An ambulance station is an area for storage of ambulance vehicles, medical equipment, personal protective equipment, and other medical supplies. - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [ambulance-name](#ambulance-name) @@ -43,49 +34,31 @@ An ambulance station is an area for storage of ambulance vehicles, medical equip - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [hailhydrant](https://mapcomplete.org/hailhydrant) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [hailhydrant](https://mapcomplete.org/hailhydrant) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **emergency=ambulance_station** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22emergency%22%3D%22ambulance_station%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/addr:street#values) [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/addr:place#values) [addr:place](https://wiki.openstreetmap.org/wiki/Key:addr:place) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/operator:type#values) [operator:type](https://wiki.openstreetmap.org/wiki/Key:operator:type) | [string](../SpecialInputElements.md#string) | [government](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment) [community](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity) [ngo](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dngo) [private](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dprivate) ### just_created @@ -243,6 +216,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/ambulancestation/ambulancestation.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/ambulancestation/ambulancestation.json) diff --git a/Docs/Layers/animal_shelter.md b/Docs/Layers/animal_shelter.md index 2a4700b8846..00fefd3d39a 100644 --- a/Docs/Layers/animal_shelter.md +++ b/Docs/Layers/animal_shelter.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# animal_shelter - animal_shelter -================ - - - - +[object Object] An animal shelter is a facility where animals in trouble are brought and facility's staff (volunteers or not) feeds them and cares of them, rehabilitating and healing them if necessary. This definition includes kennels for abandoned dogs, catteries for abandoned cats, shelters for other abandoned pets and wildlife recovery centres. - - - - This layer is shown at zoomlevel **0** and higher - - - + - This layer is shown at zoomlevel **0** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -48,51 +39,33 @@ An animal shelter is a facility where animals in trouble are brought and facilit - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [personal](https://mapcomplete.org/personal) - - [pets](https://mapcomplete.org/pets) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [personal](https://mapcomplete.org/personal) + - [pets](https://mapcomplete.org/pets) +## Basic tags for this layer Elements must match the expression **amenity=animal_shelter** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22animal_shelter%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/purpose#values) [purpose](https://wiki.openstreetmap.org/wiki/Key:purpose) | Multiple choice | [adoption](https://wiki.openstreetmap.org/wiki/Tag:purpose%3Dadoption) [sanctuary](https://wiki.openstreetmap.org/wiki/Tag:purpose%3Dsanctuary) [release](https://wiki.openstreetmap.org/wiki/Tag:purpose%3Drelease) -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/animal_shelter#values) [animal_shelter](https://wiki.openstreetmap.org/wiki/Key:animal_shelter) | [string](../SpecialInputElements.md#string) | [dog](https://wiki.openstreetmap.org/wiki/Tag:animal_shelter%3Ddog) [cat](https://wiki.openstreetmap.org/wiki/Tag:animal_shelter%3Dcat) [horse](https://wiki.openstreetmap.org/wiki/Tag:animal_shelter%3Dhorse) [bird](https://wiki.openstreetmap.org/wiki/Tag:animal_shelter%3Dbird) [wildlife](https://wiki.openstreetmap.org/wiki/Tag:animal_shelter%3Dwildlife) ### just_created @@ -306,6 +279,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/animal_shelter/animal_shelter.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/animal_shelter/animal_shelter.json) diff --git a/Docs/Layers/artwork.md b/Docs/Layers/artwork.md index 7927d512f4f..515d6e57265 100644 --- a/Docs/Layers/artwork.md +++ b/Docs/Layers/artwork.md @@ -1,31 +1,22 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# artwork - artwork -========= - - - - +[object Object] An open map of statues, busts, graffitis and other artwork all over the world - - - - This layer is shown at zoomlevel **12** and higher - - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[1]) - - - + - This layer is shown at zoomlevel **12** and higher + - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[1]) ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -57,60 +48,42 @@ An open map of statues, busts, graffitis and other artwork all over the world - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [artwork](https://mapcomplete.org/artwork) - - [memorials](https://mapcomplete.org/memorials) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [artwork](https://mapcomplete.org/artwork) + - [memorials](https://mapcomplete.org/memorials) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **tourism=artwork** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22tourism%22%3D%22artwork%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [wikidata](../SpecialInputElements.md#wikidata) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [wikidata](../SpecialInputElements.md#wikidata) | | +| ] [object Object] | [wikidata](../SpecialInputElements.md#wikidata) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [nat](../SpecialInputElements.md#nat) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [direction](../SpecialInputElements.md#direction) | | +| ] [object Object] | [color](../SpecialInputElements.md#color) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [date](../SpecialInputElements.md#date) | [object Object] | +| ] [object Object] | [text](../SpecialInputElements.md#text) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/artwork_type#values) [artwork_type](https://wiki.openstreetmap.org/wiki/Key:artwork_type) | [string](../SpecialInputElements.md#string) | [architecture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture) [mural](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural) [painting](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpainting) [sculpture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dsculpture) [statue](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstatue) [bust](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dbust) [stone](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstone) [installation](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dinstallation) [graffiti](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dgraffiti) [relief](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Drelief) [azulejo](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo) [tilework](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework) [woodcarving](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dwoodcarving) -[](https://taginfo.openstreetmap.org/keys/artist:wikidata#values) [artist:wikidata](https://wiki.openstreetmap.org/wiki/Key:artist:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | -[](https://taginfo.openstreetmap.org/keys/artist_name#values) [artist_name](https://wiki.openstreetmap.org/wiki/Key:artist_name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/wikidata#values) [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | -[](https://taginfo.openstreetmap.org/keys/subject:wikidata#values) [subject:wikidata](https://wiki.openstreetmap.org/wiki/Key:subject:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | -[](https://taginfo.openstreetmap.org/keys/amenity#values) [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [bench](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbench) [](https://wiki.openstreetmap.org/wiki/Tag:amenity%3D) -[](https://taginfo.openstreetmap.org/keys/backrest#values) [backrest](https://wiki.openstreetmap.org/wiki/Key:backrest) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dno) -[](https://taginfo.openstreetmap.org/keys/seats#values) [seats](https://wiki.openstreetmap.org/wiki/Key:seats) | [nat](../SpecialInputElements.md#nat) | -[](https://taginfo.openstreetmap.org/keys/material#values) [material](https://wiki.openstreetmap.org/wiki/Key:material) | [string](../SpecialInputElements.md#string) | [wood](https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood) [metal](https://wiki.openstreetmap.org/wiki/Tag:material%3Dmetal) [stone](https://wiki.openstreetmap.org/wiki/Tag:material%3Dstone) [concrete](https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete) [plastic](https://wiki.openstreetmap.org/wiki/Tag:material%3Dplastic) [steel](https://wiki.openstreetmap.org/wiki/Tag:material%3Dsteel) -[](https://taginfo.openstreetmap.org/keys/direction#values) [direction](https://wiki.openstreetmap.org/wiki/Key:direction) | [direction](../SpecialInputElements.md#direction) | -[](https://taginfo.openstreetmap.org/keys/colour#values) [colour](https://wiki.openstreetmap.org/wiki/Key:colour) | [color](../SpecialInputElements.md#color) | [brown](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dbrown) [green](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgreen) [gray](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgray) [white](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dwhite) [red](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred) [black](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblack) [blue](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblue) [yellow](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow) -[](https://taginfo.openstreetmap.org/keys/survey:date#values) [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D) -[](https://taginfo.openstreetmap.org/keys/inscription#values) [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [text](../SpecialInputElements.md#text) | -[](https://taginfo.openstreetmap.org/keys/historic#values) [historic](https://wiki.openstreetmap.org/wiki/Key:historic) | Multiple choice | [memorial](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial) [](https://wiki.openstreetmap.org/wiki/Tag:historic%3D) ### just_created @@ -425,39 +398,39 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| has_image.0 | *With and without images* (default) | | +| has_image.1 | Has at least one image | image~.+ | image:0~.+ | image:1~.+ | image:2~.+ | image:3~.+ | mapillary~.+ | +| has_image.2 | Probably does not have an image | image= & image:0= & image:1= & image:2= & image:3= & mapillary= | -id | question | osmTags ----- | ---------- | --------- -has_image.0 | With and without images (default) | -has_image.1 | Has at least one image | image~.+ \| image:0~.+ \| image:1~.+ \| image:2~.+ \| image:3~.+ \| mapillary~.+ -has_image.2 | Probably does not have an image | image= & image:0= & image:1= & image:2= & image:3= & mapillary= + +| id | question | osmTags | +-----|-----|----- | +| artwork-artwork_type.0 | *All types* (default) | | +| artwork-artwork_type.1 | Architecture | artwork_type=architecture | +| artwork-artwork_type.2 | Mural | artwork_type=mural | +| artwork-artwork_type.3 | Painting | artwork_type=painting | +| artwork-artwork_type.4 | Sculpture | artwork_type=sculpture | +| artwork-artwork_type.5 | Statue | artwork_type=statue | +| artwork-artwork_type.6 | Bust | artwork_type=bust | +| artwork-artwork_type.7 | Stone | artwork_type=stone | +| artwork-artwork_type.8 | Installation | artwork_type=installation | +| artwork-artwork_type.9 | Graffiti | artwork_type=graffiti | +| artwork-artwork_type.10 | Relief | artwork_type=relief | +| artwork-artwork_type.11 | Azulejo (Spanish decorative tilework) | artwork_type=azulejo | +| artwork-artwork_type.12 | Tilework | artwork_type=tilework | +| artwork-artwork_type.13 | Woodcarving | artwork_type=woodcarving | -id | question | osmTags ----- | ---------- | --------- -artwork-artwork_type.0 | All types (default) | -artwork-artwork_type.1 | Architecture | artwork_type=architecture -artwork-artwork_type.2 | Mural | artwork_type=mural -artwork-artwork_type.3 | Painting | artwork_type=painting -artwork-artwork_type.4 | Sculpture | artwork_type=sculpture -artwork-artwork_type.5 | Statue | artwork_type=statue -artwork-artwork_type.6 | Bust | artwork_type=bust -artwork-artwork_type.7 | Stone | artwork_type=stone -artwork-artwork_type.8 | Installation | artwork_type=installation -artwork-artwork_type.9 | Graffiti | artwork_type=graffiti -artwork-artwork_type.10 | Relief | artwork_type=relief -artwork-artwork_type.11 | Azulejo (Spanish decorative tilework) | artwork_type=azulejo -artwork-artwork_type.12 | Tilework | artwork_type=tilework -artwork-artwork_type.13 | Woodcarving | artwork_type=woodcarving - - This document is autogenerated from [assets/layers/artwork/artwork.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/artwork/artwork.json) diff --git a/Docs/Layers/assembly_point.md b/Docs/Layers/assembly_point.md index ff0ae6cfe1a..0f4bf1cf2d2 100644 --- a/Docs/Layers/assembly_point.md +++ b/Docs/Layers/assembly_point.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# assembly_point - assembly_point -================ - - - - +[object Object] This layer contains assembly points and waiting areas where all employees, passengers or a large crowd assemble in case of an emergency. - - - - This layer is shown at zoomlevel **10** and higher - - - + - This layer is shown at zoomlevel **10** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -42,46 +33,28 @@ This layer contains assembly points and waiting areas where all employees, passe - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [disaster_response](https://mapcomplete.org/disaster_response) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [disaster_response](https://mapcomplete.org/disaster_response) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **emergency=assembly_point** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22emergency%22%3D%22assembly_point%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | ### just_created @@ -229,6 +202,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/assembly_point/assembly_point.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/assembly_point/assembly_point.json) diff --git a/Docs/Layers/atm.md b/Docs/Layers/atm.md index 3b3bf53153d..a2fbf9420b7 100644 --- a/Docs/Layers/atm.md +++ b/Docs/Layers/atm.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# atm - atm -===== - - - - +[object Object] ATMs to withdraw money - - - - This layer is shown at zoomlevel **13** and higher - - - + - This layer is shown at zoomlevel **13** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -50,52 +41,34 @@ ATMs to withdraw money - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [atm](https://mapcomplete.org/atm) - - [personal](https://mapcomplete.org/personal) - - [stations](https://mapcomplete.org/stations) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [atm](https://mapcomplete.org/atm) + - [personal](https://mapcomplete.org/personal) + - [stations](https://mapcomplete.org/stations) +## Basic tags for this layer Elements must match the expression **amenity=atm** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22atm%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [nsi](../SpecialInputElements.md#nsi) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/brand#values) [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [nsi](../SpecialInputElements.md#nsi) | -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) -[](https://taginfo.openstreetmap.org/keys/cash_out#values) [cash_out](https://wiki.openstreetmap.org/wiki/Key:cash_out) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:cash_out%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:cash_out%3Dno) -[](https://taginfo.openstreetmap.org/keys/cash_in#values) [cash_in](https://wiki.openstreetmap.org/wiki/Key:cash_in) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:cash_in%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:cash_in%3Dno) -[](https://taginfo.openstreetmap.org/keys/cash_out:notes:denominations#values) [cash_out:notes:denominations](https://wiki.openstreetmap.org/wiki/Key:cash_out:notes:denominations) | Multiple choice | [5 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D5 EUR) [10 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D10 EUR) [20 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D20 EUR) [50 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D50 EUR) [100 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D100 EUR) [200 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D200 EUR) [500 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D500 EUR) -[](https://taginfo.openstreetmap.org/keys/speech_output#values) [speech_output](https://wiki.openstreetmap.org/wiki/Key:speech_output) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:speech_output%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:speech_output%3Dno) ### just_created @@ -311,24 +284,24 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes + +| id | question | osmTags | +-----|-----|----- | +| speech_output.0 | With speech output | speech_output=yes | -id | question | osmTags ----- | ---------- | --------- -speech_output.0 | With speech output | speech_output=yes - - This document is autogenerated from [assets/layers/atm/atm.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/atm/atm.json) diff --git a/Docs/Layers/bank.md b/Docs/Layers/bank.md index 2db03c5c61f..33478e5653b 100644 --- a/Docs/Layers/bank.md +++ b/Docs/Layers/bank.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# bank - bank -====== - - - - +[object Object] A financial institution to deposit money - - - - This layer is shown at zoomlevel **0** and higher - - - + - This layer is shown at zoomlevel **0** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -41,45 +32,27 @@ A financial institution to deposit money - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [atm](https://mapcomplete.org/atm) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [atm](https://mapcomplete.org/atm) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **amenity=bank** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22bank%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/atm#values) [atm](https://wiki.openstreetmap.org/wiki/Key:atm) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dno) [separate](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dseparate) ### just_created @@ -204,24 +177,24 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes + +| id | question | osmTags | +-----|-----|----- | +| has_atm.0 | With an ATM | atm=yes | -id | question | osmTags ----- | ---------- | --------- -has_atm.0 | With an ATM | atm=yes - - This document is autogenerated from [assets/layers/bank/bank.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bank/bank.json) diff --git a/Docs/Layers/banks_with_atm.md b/Docs/Layers/banks_with_atm.md index e6e0b081777..81822f247b2 100644 --- a/Docs/Layers/banks_with_atm.md +++ b/Docs/Layers/banks_with_atm.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# banks_with_atm - banks_with_atm -================ - - - - +[object Object] A financial institution to deposit money - - - - This layer is shown at zoomlevel **14** and higher - - - + - This layer is shown at zoomlevel **14** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -41,22 +32,11 @@ A financial institution to deposit money - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [atm](https://mapcomplete.org/atm) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [atm](https://mapcomplete.org/atm) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -65,23 +45,16 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22bank%22%5D%5B%22atm%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/atm#values) [atm](https://wiki.openstreetmap.org/wiki/Key:atm) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dno) [separate](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dseparate) ### just_created @@ -206,24 +179,24 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes + +| id | question | osmTags | +-----|-----|----- | +| has_atm.0 | With an ATM | atm=yes | -id | question | osmTags ----- | ---------- | --------- -has_atm.0 | With an ATM | atm=yes - - This document is autogenerated from [assets/themes/atm/atm.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/atm/atm.json) diff --git a/Docs/Layers/barrier.md b/Docs/Layers/barrier.md index f02583167b1..71ff8a2f502 100644 --- a/Docs/Layers/barrier.md +++ b/Docs/Layers/barrier.md @@ -1,32 +1,23 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# barrier - barrier -========= - - - - +[object Object] Obstacles while cycling, such as bollards and cycle barriers - - - - This layer is shown at zoomlevel **17** and higher - - This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) - - This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[1]) - - - + - This layer is shown at zoomlevel **17** and higher + - This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) + - This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[1]) ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -49,23 +40,12 @@ Obstacles while cycling, such as bollards and cycle barriers - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [cycle_infra](https://mapcomplete.org/cycle_infra) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [cycle_infra](https://mapcomplete.org/cycle_infra) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -74,30 +54,23 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22barrier%22%3D%22bollard%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22barrier%22%3D%22cycle_barrier%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [distance](../SpecialInputElements.md#distance) | | +| ] [object Object] | [distance](../SpecialInputElements.md#distance) | | +| ] [object Object] | [distance](../SpecialInputElements.md#distance) | | +| ] [object Object] | [distance](../SpecialInputElements.md#distance) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/bicycle#values) [bicycle](https://wiki.openstreetmap.org/wiki/Key:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno) -[](https://taginfo.openstreetmap.org/keys/barrier#values) [barrier](https://wiki.openstreetmap.org/wiki/Key:barrier) | Multiple choice | [bollard](https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dbollard) [cycle_barrier](https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcycle_barrier) -[](https://taginfo.openstreetmap.org/keys/bollard#values) [bollard](https://wiki.openstreetmap.org/wiki/Key:bollard) | Multiple choice | [removable](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dremovable) [fixed](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dfixed) [foldable](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dfoldable) [flexible](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dflexible) [rising](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Drising) -[](https://taginfo.openstreetmap.org/keys/cycle_barrier#values) [cycle_barrier](https://wiki.openstreetmap.org/wiki/Key:cycle_barrier) | Multiple choice | [single](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dsingle) [double](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Ddouble) [triple](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dtriple) [squeeze](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dsqueeze) -[](https://taginfo.openstreetmap.org/keys/maxwidth:physical#values) [maxwidth:physical](https://wiki.openstreetmap.org/wiki/Key:maxwidth:physical) | [distance](../SpecialInputElements.md#distance) | -[](https://taginfo.openstreetmap.org/keys/width:separation#values) [width:separation](https://wiki.openstreetmap.org/wiki/Key:width:separation) | [distance](../SpecialInputElements.md#distance) | -[](https://taginfo.openstreetmap.org/keys/width:opening#values) [width:opening](https://wiki.openstreetmap.org/wiki/Key:width:opening) | [distance](../SpecialInputElements.md#distance) | -[](https://taginfo.openstreetmap.org/keys/overlap#values) [overlap](https://wiki.openstreetmap.org/wiki/Key:overlap) | [distance](../SpecialInputElements.md#distance) | ### just_created @@ -291,6 +264,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/barrier/barrier.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/barrier/barrier.json) diff --git a/Docs/Layers/bench.md b/Docs/Layers/bench.md index 922987f6c30..db678f4d054 100644 --- a/Docs/Layers/bench.md +++ b/Docs/Layers/bench.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# bench - bench -======= - - - - +[object Object] A bench is a wooden, metal, stone, … surface where a human can sit. This layers visualises them and asks a few questions about them. - - - - This layer is shown at zoomlevel **14** and higher - - - + - This layer is shown at zoomlevel **14** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -55,62 +46,44 @@ A bench is a wooden, metal, stone, … surface where a human can sit. This layer - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [benches](https://mapcomplete.org/benches) - - [memorials](https://mapcomplete.org/memorials) - - [nature](https://mapcomplete.org/nature) - - [personal](https://mapcomplete.org/personal) - - [playgrounds](https://mapcomplete.org/playgrounds) - - [stations](https://mapcomplete.org/stations) - - [toerisme_vlaanderen](https://mapcomplete.org/toerisme_vlaanderen) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [benches](https://mapcomplete.org/benches) + - [memorials](https://mapcomplete.org/memorials) + - [nature](https://mapcomplete.org/nature) + - [personal](https://mapcomplete.org/personal) + - [playgrounds](https://mapcomplete.org/playgrounds) + - [stations](https://mapcomplete.org/stations) + - [toerisme_vlaanderen](https://mapcomplete.org/toerisme_vlaanderen) +## Basic tags for this layer Elements must match the expression **amenity=bench** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22bench%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [nat](../SpecialInputElements.md#nat) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [direction](../SpecialInputElements.md#direction) | | +| ] [object Object] | [color](../SpecialInputElements.md#color) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [date](../SpecialInputElements.md#date) | [object Object] | +| ] [object Object] | [text](../SpecialInputElements.md#text) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [wikidata](../SpecialInputElements.md#wikidata) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [wikidata](../SpecialInputElements.md#wikidata) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/backrest#values) [backrest](https://wiki.openstreetmap.org/wiki/Key:backrest) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dno) -[](https://taginfo.openstreetmap.org/keys/seats#values) [seats](https://wiki.openstreetmap.org/wiki/Key:seats) | [nat](../SpecialInputElements.md#nat) | -[](https://taginfo.openstreetmap.org/keys/material#values) [material](https://wiki.openstreetmap.org/wiki/Key:material) | [string](../SpecialInputElements.md#string) | [wood](https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood) [metal](https://wiki.openstreetmap.org/wiki/Tag:material%3Dmetal) [stone](https://wiki.openstreetmap.org/wiki/Tag:material%3Dstone) [concrete](https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete) [plastic](https://wiki.openstreetmap.org/wiki/Tag:material%3Dplastic) [steel](https://wiki.openstreetmap.org/wiki/Tag:material%3Dsteel) -[](https://taginfo.openstreetmap.org/keys/direction#values) [direction](https://wiki.openstreetmap.org/wiki/Key:direction) | [direction](../SpecialInputElements.md#direction) | -[](https://taginfo.openstreetmap.org/keys/colour#values) [colour](https://wiki.openstreetmap.org/wiki/Key:colour) | [color](../SpecialInputElements.md#color) | [brown](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dbrown) [green](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgreen) [gray](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgray) [white](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dwhite) [red](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred) [black](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblack) [blue](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblue) [yellow](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow) -[](https://taginfo.openstreetmap.org/keys/survey:date#values) [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D) -[](https://taginfo.openstreetmap.org/keys/inscription#values) [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [text](../SpecialInputElements.md#text) | -[](https://taginfo.openstreetmap.org/keys/historic#values) [historic](https://wiki.openstreetmap.org/wiki/Key:historic) | Multiple choice | [memorial](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial) [](https://wiki.openstreetmap.org/wiki/Tag:historic%3D) -[](https://taginfo.openstreetmap.org/keys/artwork_type#values) [artwork_type](https://wiki.openstreetmap.org/wiki/Key:artwork_type) | [string](../SpecialInputElements.md#string) | [architecture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture) [mural](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural) [painting](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpainting) [sculpture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dsculpture) [statue](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstatue) [bust](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dbust) [stone](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstone) [installation](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dinstallation) [graffiti](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dgraffiti) [relief](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Drelief) [azulejo](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo) [tilework](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework) [woodcarving](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dwoodcarving) -[](https://taginfo.openstreetmap.org/keys/artist:wikidata#values) [artist:wikidata](https://wiki.openstreetmap.org/wiki/Key:artist:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | -[](https://taginfo.openstreetmap.org/keys/artist_name#values) [artist_name](https://wiki.openstreetmap.org/wiki/Key:artist_name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/subject:wikidata#values) [subject:wikidata](https://wiki.openstreetmap.org/wiki/Key:subject:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | ### just_created @@ -412,35 +385,37 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| bench_is_memorial.0 | is a memorial | historic=memorial | memorial=bench | -id | question | osmTags ----- | ---------- | --------- -bench_is_memorial.0 | is a memorial | historic=memorial \| memorial=bench + +| id | question | osmTags | +-----|-----|----- | +| has_backrest.0 | *With and without backrest* (default) | | +| has_backrest.1 | Has a backrest | backrest=yes | +| has_backrest.2 | Has no backrest | backrest=no | -id | question | osmTags ----- | ---------- | --------- -has_backrest.0 | With and without backrest (default) | -has_backrest.1 | Has a backrest | backrest=yes -has_backrest.2 | Has no backrest | backrest=no + + +| id | question | osmTags | +-----|-----|----- | +| has_image.0 | *With and without images* (default) | | +| has_image.1 | Has at least one image | image~.+ | image:0~.+ | image:1~.+ | image:2~.+ | image:3~.+ | mapillary~.+ | +| has_image.2 | Probably does not have an image | image= & image:0= & image:1= & image:2= & image:3= & mapillary= | -id | question | osmTags ----- | ---------- | --------- -has_image.0 | With and without images (default) | -has_image.1 | Has at least one image | image~.+ \| image:0~.+ \| image:1~.+ \| image:2~.+ \| image:3~.+ \| mapillary~.+ -has_image.2 | Probably does not have an image | image= & image:0= & image:1= & image:2= & image:3= & mapillary= - - This document is autogenerated from [assets/layers/bench/bench.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bench/bench.json) diff --git a/Docs/Layers/bench_at_pt.md b/Docs/Layers/bench_at_pt.md index 0fe6667749a..5f32f76c435 100644 --- a/Docs/Layers/bench_at_pt.md +++ b/Docs/Layers/bench_at_pt.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# bench_at_pt - bench_at_pt -============= - - - - +[object Object] A layer showing all public-transport-stops which do have a bench - - - - This layer is shown at zoomlevel **14** and higher - - - + - This layer is shown at zoomlevel **14** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -41,23 +32,12 @@ A layer showing all public-transport-stops which do have a bench - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [benches](https://mapcomplete.org/benches) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [benches](https://mapcomplete.org/benches) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -66,24 +46,17 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22highway%22%3D%22bus_stop%22%5D%5B%22bench%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22bus_stop%22%5D%5B%22bench%22%3D%22stand_up_bench%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/bench#values) [bench](https://wiki.openstreetmap.org/wiki/Key:bench) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dyes) [stand_up_bench](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dstand_up_bench) [no](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dno) ### just_created @@ -216,6 +189,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/bench_at_pt/bench_at_pt.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bench_at_pt/bench_at_pt.json) diff --git a/Docs/Layers/bicycle_library.md b/Docs/Layers/bicycle_library.md index 6c2479a10d8..ca910bac61b 100644 --- a/Docs/Layers/bicycle_library.md +++ b/Docs/Layers/bicycle_library.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# bicycle_library - bicycle_library -================= - - - - +[object Object] A facility where bicycles can be lent for longer period of times - - - - This layer is shown at zoomlevel **8** and higher - - - + - This layer is shown at zoomlevel **8** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -48,53 +39,35 @@ A facility where bicycles can be lent for longer period of times - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [bicyclelib](https://mapcomplete.org/bicyclelib) - - [cyclofix](https://mapcomplete.org/cyclofix) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [bicyclelib](https://mapcomplete.org/bicyclelib) + - [cyclofix](https://mapcomplete.org/cyclofix) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **amenity=bicycle_library** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22bicycle_library%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:charge%3D) [€20warranty + €20/year](https://wiki.openstreetmap.org/wiki/Tag:charge%3D€20warranty + €20/year) -[](https://taginfo.openstreetmap.org/keys/bicycle_library:for#values) [bicycle_library:for](https://wiki.openstreetmap.org/wiki/Key:bicycle_library:for) | Multiple choice | [child](https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dchild) [adult](https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dadult) [disabled](https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Ddisabled) -[](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) | ### just_created @@ -305,6 +278,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/bicycle_library/bicycle_library.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bicycle_library/bicycle_library.json) diff --git a/Docs/Layers/bicycle_rental.md b/Docs/Layers/bicycle_rental.md index e566a69bddc..a039a9e0c15 100644 --- a/Docs/Layers/bicycle_rental.md +++ b/Docs/Layers/bicycle_rental.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# bicycle_rental - bicycle_rental -================ - - - - +[object Object] Bicycle rental stations - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -55,27 +46,16 @@ Bicycle rental stations - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [bicycle_rental](https://mapcomplete.org/bicycle_rental) - - [cyclofix](https://mapcomplete.org/cyclofix) - - [personal](https://mapcomplete.org/personal) - - [stations](https://mapcomplete.org/stations) - - [toerisme_vlaanderen](https://mapcomplete.org/toerisme_vlaanderen) - - [velopark](https://mapcomplete.org/velopark) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [bicycle_rental](https://mapcomplete.org/bicycle_rental) + - [cyclofix](https://mapcomplete.org/cyclofix) + - [personal](https://mapcomplete.org/personal) + - [stations](https://mapcomplete.org/stations) + - [toerisme_vlaanderen](https://mapcomplete.org/toerisme_vlaanderen) + - [velopark](https://mapcomplete.org/velopark) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -86,34 +66,27 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22bicycle_rental%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22service%3Abicycle%3Arental%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22bicycle_rental%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22rental%22~%22%5E%28.*bicycle.*%29%24%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/rental#values) [rental](https://wiki.openstreetmap.org/wiki/Key:rental) | [string](../SpecialInputElements.md#string) | [city_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dcity_bike) [ebike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Debike) [bmx](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbmx) [mtb](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dmtb) [kid_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dkid_bike) [tandem](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dtandem) [racebike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dracebike) [bike_helmet](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbike_helmet) -[](https://taginfo.openstreetmap.org/keys/capacity:city_bike#values) [capacity:city_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:city_bike) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/capacity:ebike#values) [capacity:ebike](https://wiki.openstreetmap.org/wiki/Key:capacity:ebike) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/capacity:kid_bike#values) [capacity:kid_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:kid_bike) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/capacity:bmx#values) [capacity:bmx](https://wiki.openstreetmap.org/wiki/Key:capacity:bmx) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/capacity:mtb#values) [capacity:mtb](https://wiki.openstreetmap.org/wiki/Key:capacity:mtb) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/capacity:bicycle_pannier#values) [capacity:bicycle_pannier](https://wiki.openstreetmap.org/wiki/Key:capacity:bicycle_pannier) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/capacity:tandem_bicycle#values) [capacity:tandem_bicycle](https://wiki.openstreetmap.org/wiki/Key:capacity:tandem_bicycle) | [pnat](../SpecialInputElements.md#pnat) | ### just_created @@ -421,6 +394,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/bicycle_rental/bicycle_rental.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bicycle_rental/bicycle_rental.json) diff --git a/Docs/Layers/bicycle_rental_non_docking.md b/Docs/Layers/bicycle_rental_non_docking.md index e16d9c1f46a..a01888f3ea2 100644 --- a/Docs/Layers/bicycle_rental_non_docking.md +++ b/Docs/Layers/bicycle_rental_non_docking.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# bicycle_rental_non_docking - bicycle_rental_non_docking -============================ - - - - +[object Object] Bicycle rental stations - - - - This layer is shown at zoomlevel **14** and higher - - - + - This layer is shown at zoomlevel **14** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -55,23 +46,12 @@ Bicycle rental stations - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [cyclofix](https://mapcomplete.org/cyclofix) - - [toerisme_vlaanderen](https://mapcomplete.org/toerisme_vlaanderen) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [cyclofix](https://mapcomplete.org/cyclofix) + - [toerisme_vlaanderen](https://mapcomplete.org/toerisme_vlaanderen) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -80,34 +60,27 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22bicycle_rental%22%5D%5B%22bicycle_rental%22!%3D%22docking_station%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22service%3Abicycle%3Arental%22%3D%22yes%22%5D%5B%22bicycle_rental%22!%3D%22docking_station%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22bicycle_rental%22%5D%5B%22bicycle_rental%22!%3D%22docking_station%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22rental%22~%22%5E%28.*bicycle.*%29%24%22%5D%5B%22bicycle_rental%22!%3D%22docking_station%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/rental#values) [rental](https://wiki.openstreetmap.org/wiki/Key:rental) | [string](../SpecialInputElements.md#string) | [city_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dcity_bike) [ebike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Debike) [bmx](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbmx) [mtb](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dmtb) [kid_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dkid_bike) [tandem](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dtandem) [racebike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dracebike) [bike_helmet](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbike_helmet) -[](https://taginfo.openstreetmap.org/keys/capacity:city_bike#values) [capacity:city_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:city_bike) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/capacity:ebike#values) [capacity:ebike](https://wiki.openstreetmap.org/wiki/Key:capacity:ebike) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/capacity:kid_bike#values) [capacity:kid_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:kid_bike) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/capacity:bmx#values) [capacity:bmx](https://wiki.openstreetmap.org/wiki/Key:capacity:bmx) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/capacity:mtb#values) [capacity:mtb](https://wiki.openstreetmap.org/wiki/Key:capacity:mtb) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/capacity:bicycle_pannier#values) [capacity:bicycle_pannier](https://wiki.openstreetmap.org/wiki/Key:capacity:bicycle_pannier) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/capacity:tandem_bicycle#values) [capacity:tandem_bicycle](https://wiki.openstreetmap.org/wiki/Key:capacity:tandem_bicycle) | [pnat](../SpecialInputElements.md#pnat) | ### just_created @@ -415,6 +388,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/themes/cyclofix/cyclofix.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/cyclofix/cyclofix.json) diff --git a/Docs/Layers/bike_cafe.md b/Docs/Layers/bike_cafe.md index f19c791c1d9..b63ad179d40 100644 --- a/Docs/Layers/bike_cafe.md +++ b/Docs/Layers/bike_cafe.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# bike_cafe - bike_cafe -=========== - - - - +[object Object] A bike café is a café geared towards cyclists, for example with services such as a pump, with lots of bicycle-related decoration, … - - - - This layer is shown at zoomlevel **13** and higher - - - + - This layer is shown at zoomlevel **13** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -47,23 +38,12 @@ A bike café is a café geared towards cyclists, for example with services such - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [cyclofix](https://mapcomplete.org/cyclofix) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [cyclofix](https://mapcomplete.org/cyclofix) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -72,30 +52,23 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22pub%22%5D%5B%22pub%22%3D%22cycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22pub%22%5D%5B%22pub%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22pub%22%5D%5B%22theme%22%3D%22cycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22pub%22%5D%5B%22theme%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22pub%22%5D%5B~%22%5E%28service%3Abicycle%3A.*%29%24%22~%22.%2B%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22bar%22%5D%5B%22pub%22%3D%22cycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22bar%22%5D%5B%22pub%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22bar%22%5D%5B%22theme%22%3D%22cycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22bar%22%5D%5B%22theme%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22bar%22%5D%5B~%22%5E%28service%3Abicycle%3A.*%29%24%22~%22.%2B%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B%22pub%22%3D%22cycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B%22pub%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B%22theme%22%3D%22cycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B%22theme%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B~%22%5E%28service%3Abicycle%3A.*%29%24%22~%22.%2B%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22pub%22%3D%22cycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22pub%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22theme%22%3D%22cycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22theme%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B~%22%5E%28service%3Abicycle%3A.*%29%24%22~%22.%2B%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/service:bicycle:pump#values) [service:bicycle:pump](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno) -[](https://taginfo.openstreetmap.org/keys/service:bicycle:diy#values) [service:bicycle:diy](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dno) -[](https://taginfo.openstreetmap.org/keys/service:bicycle:repair#values) [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | ### just_created @@ -294,6 +267,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/bike_cafe/bike_cafe.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_cafe/bike_cafe.json) diff --git a/Docs/Layers/bike_cleaning.md b/Docs/Layers/bike_cleaning.md index e65d368047c..51b299c297d 100644 --- a/Docs/Layers/bike_cleaning.md +++ b/Docs/Layers/bike_cleaning.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# bike_cleaning - bike_cleaning -=============== - - - - +[object Object] A layer showing facilities where one can clean their bike - - - - This layer is shown at zoomlevel **13** and higher - - - + - This layer is shown at zoomlevel **13** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -42,23 +33,12 @@ A layer showing facilities where one can clean their bike - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [cyclofix](https://mapcomplete.org/cyclofix) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [cyclofix](https://mapcomplete.org/cyclofix) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -69,24 +49,17 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22bicycle_wash%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22bike_wash%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22service%3Abicycle%3Acleaning%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22service%3Abicycle%3Acleaning%22%3D%22diy%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/service:bicycle:cleaning:charge#values) [service:bicycle:cleaning:charge](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:charge) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | ### just_created @@ -230,6 +203,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/bike_cleaning/bike_cleaning.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_cleaning/bike_cleaning.json) diff --git a/Docs/Layers/bike_parking.md b/Docs/Layers/bike_parking.md index 66cf4596273..cbbd90ee370 100644 --- a/Docs/Layers/bike_parking.md +++ b/Docs/Layers/bike_parking.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# bike_parking - bike_parking -============== - - - - +[object Object] A layer showing where you can park your bike - - - - This layer is shown at zoomlevel **17** and higher - - - + - This layer is shown at zoomlevel **17** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -55,63 +46,45 @@ A layer showing where you can park your bike - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [bicycle_parkings](https://mapcomplete.org/bicycle_parkings) - - [cyclofix](https://mapcomplete.org/cyclofix) - - [personal](https://mapcomplete.org/personal) - - [stations](https://mapcomplete.org/stations) - - [transit](https://mapcomplete.org/transit) - - [velopark](https://mapcomplete.org/velopark) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [bicycle_parkings](https://mapcomplete.org/bicycle_parkings) + - [cyclofix](https://mapcomplete.org/cyclofix) + - [personal](https://mapcomplete.org/personal) + - [stations](https://mapcomplete.org/stations) + - [transit](https://mapcomplete.org/transit) + - [velopark](https://mapcomplete.org/velopark) +## Basic tags for this layer Elements must match the expression **amenity=bicycle_parking** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22bicycle_parking%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [nat](../SpecialInputElements.md#nat) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [currency](../SpecialInputElements.md#currency) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [nat](../SpecialInputElements.md#nat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/bicycle_parking#values) [bicycle_parking](https://wiki.openstreetmap.org/wiki/Key:bicycle_parking) | [string](../SpecialInputElements.md#string) | [stands](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dstands) [wall_loops](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dwall_loops) [handlebar_holder](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dhandlebar_holder) [rack](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Drack) [two_tier](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dtwo_tier) [shed](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dshed) [bollard](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dbollard) [floor](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dfloor) [lockers](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dlockers) -[](https://taginfo.openstreetmap.org/keys/location#values) [location](https://wiki.openstreetmap.org/wiki/Key:location) | Multiple choice | [underground](https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground) [surface](https://wiki.openstreetmap.org/wiki/Tag:location%3Dsurface) [rooftop](https://wiki.openstreetmap.org/wiki/Tag:location%3Drooftop) -[](https://taginfo.openstreetmap.org/keys/covered#values) [covered](https://wiki.openstreetmap.org/wiki/Key:covered) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:covered%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:covered%3Dno) -[](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [nat](../SpecialInputElements.md#nat) | -[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [members](https://wiki.openstreetmap.org/wiki/Tag:access%3Dmembers) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) -[](https://taginfo.openstreetmap.org/keys/fee#values) [fee](https://wiki.openstreetmap.org/wiki/Key:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) -[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [currency](../SpecialInputElements.md#currency) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/operator:phone#values) [operator:phone](https://wiki.openstreetmap.org/wiki/Key:operator:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/operator:website#values) [operator:website](https://wiki.openstreetmap.org/wiki/Key:operator:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/operator:email#values) [operator:email](https://wiki.openstreetmap.org/wiki/Key:operator:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/cargo_bike#values) [cargo_bike](https://wiki.openstreetmap.org/wiki/Key:cargo_bike) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Dyes) [designated](https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Ddesignated) [no](https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Dno) -[](https://taginfo.openstreetmap.org/keys/capacity:cargo_bike#values) [capacity:cargo_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:cargo_bike) | [nat](../SpecialInputElements.md#nat) | -[](https://taginfo.openstreetmap.org/keys/maxstay#values) [maxstay](https://wiki.openstreetmap.org/wiki/Key:maxstay) | [pnat](../SpecialInputElements.md#pnat) | ### just_created @@ -401,6 +374,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/bike_parking/bike_parking.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_parking/bike_parking.json) diff --git a/Docs/Layers/bike_repair_station.md b/Docs/Layers/bike_repair_station.md index 58bc40065c7..408091813e9 100644 --- a/Docs/Layers/bike_repair_station.md +++ b/Docs/Layers/bike_repair_station.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# bike_repair_station - bike_repair_station -===================== - - - - +[object Object] A layer showing bicycle pumps and bicycle repair tool stands - - - - This layer is shown at zoomlevel **13** and higher - - - + - This layer is shown at zoomlevel **13** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -55,59 +46,41 @@ A layer showing bicycle pumps and bicycle repair tool stands - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [cyclofix](https://mapcomplete.org/cyclofix) - - [personal](https://mapcomplete.org/personal) - - [toerisme_vlaanderen](https://mapcomplete.org/toerisme_vlaanderen) - - [velopark](https://mapcomplete.org/velopark) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [cyclofix](https://mapcomplete.org/cyclofix) + - [personal](https://mapcomplete.org/personal) + - [toerisme_vlaanderen](https://mapcomplete.org/toerisme_vlaanderen) + - [velopark](https://mapcomplete.org/velopark) +## Basic tags for this layer Elements must match the expression **amenity=bicycle_repair_station** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22bicycle_repair_station%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/service:bicycle:tools#values) [service:bicycle:tools](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes) -[](https://taginfo.openstreetmap.org/keys/service:bicycle:pump:operational_status#values) [service:bicycle:pump:operational_status](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump:operational_status) | Multiple choice | [broken](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump:operational_status%3Dbroken) [operational](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump:operational_status%3Doperational) -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) -[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/service:bicycle:chain_tool#values) [service:bicycle:chain_tool](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:chain_tool) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:chain_tool%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:chain_tool%3Dno) -[](https://taginfo.openstreetmap.org/keys/service:bicycle:stand#values) [service:bicycle:stand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:stand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:stand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:stand%3Dno) -[](https://taginfo.openstreetmap.org/keys/valves#values) [valves](https://wiki.openstreetmap.org/wiki/Key:valves) | [string](../SpecialInputElements.md#string) | [sclaverand](https://wiki.openstreetmap.org/wiki/Tag:valves%3Dsclaverand) [dunlop](https://wiki.openstreetmap.org/wiki/Tag:valves%3Ddunlop) [schrader](https://wiki.openstreetmap.org/wiki/Tag:valves%3Dschrader) -[](https://taginfo.openstreetmap.org/keys/manual#values) [manual](https://wiki.openstreetmap.org/wiki/Key:manual) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:manual%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:manual%3Dno) -[](https://taginfo.openstreetmap.org/keys/manometer#values) [manometer](https://wiki.openstreetmap.org/wiki/Key:manometer) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dno) [broken](https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dbroken) -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) ### just_created @@ -389,6 +362,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/bike_repair_station/bike_repair_station.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_repair_station/bike_repair_station.json) diff --git a/Docs/Layers/bike_shop.md b/Docs/Layers/bike_shop.md index ead68143fb5..378d4ad154b 100644 --- a/Docs/Layers/bike_shop.md +++ b/Docs/Layers/bike_shop.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# bike_shop - bike_shop -=========== - - - - +[object Object] A shop specifically selling bicycles or related items - - - - This layer is shown at zoomlevel **13** and higher - - - + - This layer is shown at zoomlevel **13** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -65,23 +56,12 @@ A shop specifically selling bicycles or related items - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [cyclofix](https://mapcomplete.org/cyclofix) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [cyclofix](https://mapcomplete.org/cyclofix) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -90,46 +70,39 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22shop%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22shop%22%3D%22sports%22%5D%5B%22sport%22%3D%22bicycle%22%5D%5B%22service%3Abicycle%3Aretail%22!%3D%22no%22%5D%5B%22service%3Abicycle%3Arepair%22!%3D%22no%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22shop%22%3D%22sports%22%5D%5B%22sport%22%3D%22cycling%22%5D%5B%22service%3Abicycle%3Aretail%22!%3D%22no%22%5D%5B%22service%3Abicycle%3Arepair%22!%3D%22no%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22shop%22%3D%22sports%22%5D%5B!%22sport%22%5D%5B%22service%3Abicycle%3Aretail%22!%3D%22no%22%5D%5B%22service%3Abicycle%3Arepair%22!%3D%22no%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/shop#values) [shop](https://wiki.openstreetmap.org/wiki/Key:shop) | Multiple choice | [rental](https://wiki.openstreetmap.org/wiki/Tag:shop%3Drental) -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/service:bicycle:retail#values) [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) -[](https://taginfo.openstreetmap.org/keys/service:bicycle:repair#values) [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) -[](https://taginfo.openstreetmap.org/keys/service:bicycle:rental#values) [service:bicycle:rental](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dno) -[](https://taginfo.openstreetmap.org/keys/rental#values) [rental](https://wiki.openstreetmap.org/wiki/Key:rental) | [string](../SpecialInputElements.md#string) | [city_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dcity_bike) [ebike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Debike) [bmx](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbmx) [mtb](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dmtb) [kid_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dkid_bike) [tandem](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dtandem) [racebike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dracebike) [bike_helmet](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbike_helmet) -[](https://taginfo.openstreetmap.org/keys/capacity:city_bike#values) [capacity:city_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:city_bike) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/capacity:ebike#values) [capacity:ebike](https://wiki.openstreetmap.org/wiki/Key:capacity:ebike) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/capacity:kid_bike#values) [capacity:kid_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:kid_bike) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/capacity:bmx#values) [capacity:bmx](https://wiki.openstreetmap.org/wiki/Key:capacity:bmx) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/capacity:mtb#values) [capacity:mtb](https://wiki.openstreetmap.org/wiki/Key:capacity:mtb) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/capacity:bicycle_pannier#values) [capacity:bicycle_pannier](https://wiki.openstreetmap.org/wiki/Key:capacity:bicycle_pannier) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/capacity:tandem_bicycle#values) [capacity:tandem_bicycle](https://wiki.openstreetmap.org/wiki/Key:capacity:tandem_bicycle) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/service:bicycle:second_hand#values) [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) -[](https://taginfo.openstreetmap.org/keys/service:bicycle:pump#values) [service:bicycle:pump](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno) [separate](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dseparate) -[](https://taginfo.openstreetmap.org/keys/service:bicycle:diy#values) [service:bicycle:diy](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Donly_sold) -[](https://taginfo.openstreetmap.org/keys/service:bicycle:cleaning#values) [service:bicycle:cleaning](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dyes) [diy](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Ddiy) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dno) -[](https://taginfo.openstreetmap.org/keys/service:bicycle:cleaning:charge#values) [service:bicycle:cleaning:charge](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:charge) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) | ### just_created @@ -515,31 +488,33 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes + +| id | question | osmTags | +-----|-----|----- | +| sells_second-hand.0 | Sells second-hand bicycles | service:bicycle:second_hand=yes | service:bicycle:second_hand=only | -id | question | osmTags ----- | ---------- | --------- -sells_second-hand.0 | Sells second-hand bicycles | service:bicycle:second_hand=yes \| service:bicycle:second_hand=only + + +| id | question | osmTags | +-----|-----|----- | +| offers_diy_repair.0 | Offers DIY bike repair | service:bicycle:diy=yes | service:bicycle:diy=only | -id | question | osmTags ----- | ---------- | --------- -offers_diy_repair.0 | Offers DIY bike repair | service:bicycle:diy=yes \| service:bicycle:diy=only - - This document is autogenerated from [assets/layers/bike_shop/bike_shop.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_shop/bike_shop.json) diff --git a/Docs/Layers/bike_themed_object.md b/Docs/Layers/bike_themed_object.md index 02ca90c56db..8a63edca487 100644 --- a/Docs/Layers/bike_themed_object.md +++ b/Docs/Layers/bike_themed_object.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# bike_themed_object - bike_themed_object -==================== - - - - +[object Object] A layer with bike-themed objects but who don't match any other layer - - - - This layer is shown at zoomlevel **13** and higher - - - + - This layer is shown at zoomlevel **13** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -43,23 +34,12 @@ A layer with bike-themed objects but who don't match any other layer - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [cyclofix](https://mapcomplete.org/cyclofix) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [cyclofix](https://mapcomplete.org/cyclofix) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -75,27 +55,20 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22association%22%3D%22cycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22association%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22club%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22club%22%3D%22cycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22ngo%22%3D%22cycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22ngo%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22sport%22%3D%22cycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22theme%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22theme%22%3D%22cycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | ### just_created @@ -259,6 +232,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/bike_themed_object/bike_themed_object.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_themed_object/bike_themed_object.json) diff --git a/Docs/Layers/binocular.md b/Docs/Layers/binocular.md index 21afd51034c..7763e51ad61 100644 --- a/Docs/Layers/binocular.md +++ b/Docs/Layers/binocular.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# binocular - binocular -=========== - - - - +[object Object] Binoculars - - - - This layer is shown at zoomlevel **0** and higher - - - + - This layer is shown at zoomlevel **0** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -42,47 +33,29 @@ Binoculars - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [binoculars](https://mapcomplete.org/binoculars) - - [personal](https://mapcomplete.org/personal) - - [ski](https://mapcomplete.org/ski) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [binoculars](https://mapcomplete.org/binoculars) + - [personal](https://mapcomplete.org/personal) + - [ski](https://mapcomplete.org/ski) +## Basic tags for this layer Elements must match the expression **amenity=binoculars** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22binoculars%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | +| ] [object Object] | [direction](../SpecialInputElements.md#direction) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:charge%3D) -[](https://taginfo.openstreetmap.org/keys/direction#values) [direction](https://wiki.openstreetmap.org/wiki/Key:direction) | [direction](../SpecialInputElements.md#direction) | ### just_created @@ -223,6 +196,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/binocular/binocular.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/binocular/binocular.json) diff --git a/Docs/Layers/birdhide.md b/Docs/Layers/birdhide.md index 02425578b07..7bbf4c2c422 100644 --- a/Docs/Layers/birdhide.md +++ b/Docs/Layers/birdhide.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# birdhide - birdhide -========== - - - - +[object Object] A birdhide - - - - This layer is shown at zoomlevel **14** and higher - - - + - This layer is shown at zoomlevel **14** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -44,47 +35,29 @@ A birdhide - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [nature](https://mapcomplete.org/nature) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [nature](https://mapcomplete.org/nature) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **leisure=bird_hide** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22leisure%22%3D%22bird_hide%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/building#values) [building](https://wiki.openstreetmap.org/wiki/Key:building) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:building%3D) [yes](https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes) [tower](https://wiki.openstreetmap.org/wiki/Tag:building%3Dtower) -[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Natuurpunt](https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt) [Agentschap Natuur en Bos](https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgentschap Natuur en Bos) ### just_created @@ -241,24 +214,24 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| wheelchair.0 | Wheelchair accessible | wheelchair=yes | wheelchair=designated | wheelchair=permissive | -id | question | osmTags ----- | ---------- | --------- -wheelchair.0 | Wheelchair accessible | wheelchair=yes \| wheelchair=designated \| wheelchair=permissive + +| id | question | osmTags | +-----|-----|----- | +| shelter.0 | Only covered birdhides | (shelter=yes | building~.+) & covered!=no | -id | question | osmTags ----- | ---------- | --------- -shelter.0 | Only covered birdhides | (shelter=yes \| building~.+) & covered!=no - - This document is autogenerated from [assets/layers/birdhide/birdhide.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/birdhide/birdhide.json) diff --git a/Docs/Layers/brothel.md b/Docs/Layers/brothel.md index 7d098a674bd..80eb23fa851 100644 --- a/Docs/Layers/brothel.md +++ b/Docs/Layers/brothel.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# brothel - brothel -========= - - - - +[object Object] An establishment specifically dedicated to prostitution. - - - - This layer is shown at zoomlevel **6** and higher - - - + - This layer is shown at zoomlevel **6** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -46,48 +37,30 @@ An establishment specifically dedicated to prostitution. - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [openlovemap](https://mapcomplete.org/openlovemap) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [openlovemap](https://mapcomplete.org/openlovemap) +## Basic tags for this layer Elements must match the expression **amenity=brothel** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22brothel%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | ### just_created @@ -275,6 +248,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/brothel/brothel.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/brothel/brothel.json) diff --git a/Docs/Layers/cafe_pub.md b/Docs/Layers/cafe_pub.md index 9540fd2af7c..9fd019d8231 100644 --- a/Docs/Layers/cafe_pub.md +++ b/Docs/Layers/cafe_pub.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# cafe_pub - cafe_pub -========== - - - - +[object Object] A layer showing cafés and pubs where one can gather around a drink. The layer asks for some relevant questions - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -58,25 +49,14 @@ A layer showing cafés and pubs where one can gather around a drink. The layer a - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [cafes_and_pubs](https://mapcomplete.org/cafes_and_pubs) - - [onwheels](https://mapcomplete.org/onwheels) - - [personal](https://mapcomplete.org/personal) - - [stations](https://mapcomplete.org/stations) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [cafes_and_pubs](https://mapcomplete.org/cafes_and_pubs) + - [onwheels](https://mapcomplete.org/onwheels) + - [personal](https://mapcomplete.org/personal) + - [stations](https://mapcomplete.org/stations) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -88,36 +68,29 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22bar%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22pub%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22biergarten%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22nightclub%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/amenity#values) [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [pub](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpub) [bar](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbar) [cafe](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe) [restaurant](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant) [biergarten](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbiergarten) [nightclub](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dnightclub) -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) -[](https://taginfo.openstreetmap.org/keys/smoking#values) [smoking](https://wiki.openstreetmap.org/wiki/Key:smoking) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Dno) [outside](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Doutside) -[](https://taginfo.openstreetmap.org/keys/service:electricity#values) [service:electricity](https://wiki.openstreetmap.org/wiki/Key:service:electricity) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dlimited) [ask](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask) [no](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno) -[](https://taginfo.openstreetmap.org/keys/dog#values) [dog](https://wiki.openstreetmap.org/wiki/Key:dog) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno) [leashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed) [unleashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed) [outside](https://wiki.openstreetmap.org/wiki/Tag:dog%3Doutside) -[](https://taginfo.openstreetmap.org/keys/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired) -[](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers) -[](https://taginfo.openstreetmap.org/keys/internet_access:ssid#values) [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom) ### just_created @@ -439,45 +412,51 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes + +| id | question | osmTags | +-----|-----|----- | +| accepts_cash.0 | Accepts cash | payment:cash=yes | -id | question | osmTags ----- | ---------- | --------- -accepts_cash.0 | Accepts cash | payment:cash=yes + + +| id | question | osmTags | +-----|-----|----- | +| accepts_cards.0 | Accepts payment cards | payment:cards=yes | -id | question | osmTags ----- | ---------- | --------- -accepts_cards.0 | Accepts payment cards | payment:cards=yes + + +| id | question | osmTags | +-----|-----|----- | +| has_internet.0 | Offers internet | internet_access=wlan | internet_access=yes | internet_access=wired | -id | question | osmTags ----- | ---------- | --------- -has_internet.0 | Offers internet | internet_access=wlan \| internet_access=yes \| internet_access=wired + + +| id | question | osmTags | +-----|-----|----- | +| has_electricity.0 | Offers electricity | service:electricity=yes | -id | question | osmTags ----- | ---------- | --------- -has_electricity.0 | Offers electricity | service:electricity=yes - - This document is autogenerated from [assets/layers/cafe_pub/cafe_pub.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/cafe_pub/cafe_pub.json) diff --git a/Docs/Layers/car_rental.md b/Docs/Layers/car_rental.md index 89715257766..02b1f17a781 100644 --- a/Docs/Layers/car_rental.md +++ b/Docs/Layers/car_rental.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# car_rental - car_rental -============ - - - - +[object Object] Places where you can rent a car - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -45,48 +36,30 @@ Places where you can rent a car - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [stations](https://mapcomplete.org/stations) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [stations](https://mapcomplete.org/stations) +## Basic tags for this layer Elements must match the expression **amenity=car_rental** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22car_rental%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | ### just_created @@ -260,17 +233,15 @@ _This tagrendering has no question and is thus read-only_ - - -#### Filters +#### Filters +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | + -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes - This document is autogenerated from [assets/layers/car_rental/car_rental.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/car_rental/car_rental.json) diff --git a/Docs/Layers/caravansites.md b/Docs/Layers/caravansites.md index 60e68ecdf32..a0d4238ca17 100644 --- a/Docs/Layers/caravansites.md +++ b/Docs/Layers/caravansites.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# caravansites - caravansites -============== - - - - +[object Object] camper sites - - - - This layer is shown at zoomlevel **7** and higher - - - + - This layer is shown at zoomlevel **7** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -52,22 +43,11 @@ camper sites - [power_supply](#power_supply) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [campersite](https://mapcomplete.org/campersite) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [campersite](https://mapcomplete.org/campersite) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -76,35 +56,28 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22tourism%22%3D%22caravan_site%22%5D%5B%22permanent_camping%22!~%22%5E%28only%29%24%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [text](../SpecialInputElements.md#text) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/fee#values) [fee](https://wiki.openstreetmap.org/wiki/Key:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) -[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/sanitary_dump_station#values) [sanitary_dump_station](https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station%3Dno) -[](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) -[](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) -[](https://taginfo.openstreetmap.org/keys/toilets#values) [toilets](https://wiki.openstreetmap.org/wiki/Key:toilets) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno) -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/permanent_camping#values) [permanent_camping](https://wiki.openstreetmap.org/wiki/Key:permanent_camping) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Donly) -[](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [text](../SpecialInputElements.md#text) | -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/power_supply#values) [power_supply](https://wiki.openstreetmap.org/wiki/Key:power_supply) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:power_supply%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:power_supply%3Dno) ### just_created @@ -343,6 +316,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/themes/campersite/campersite.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/campersite/campersite.json) diff --git a/Docs/Layers/charging_station.md b/Docs/Layers/charging_station.md index 5baa30aa252..c388a7bad14 100644 --- a/Docs/Layers/charging_station.md +++ b/Docs/Layers/charging_station.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# charging_station - charging_station -================== - - - - +[object Object] A charging station - - - - This layer is shown at zoomlevel **10** and higher - - - + - This layer is shown at zoomlevel **10** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -147,26 +138,15 @@ A charging station - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [charging_stations](https://mapcomplete.org/charging_stations) - - [cyclofix](https://mapcomplete.org/cyclofix) - - [parkings](https://mapcomplete.org/parkings) - - [personal](https://mapcomplete.org/personal) - - [toerisme_vlaanderen](https://mapcomplete.org/toerisme_vlaanderen) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [charging_stations](https://mapcomplete.org/charging_stations) + - [cyclofix](https://mapcomplete.org/cyclofix) + - [parkings](https://mapcomplete.org/parkings) + - [personal](https://mapcomplete.org/personal) + - [toerisme_vlaanderen](https://mapcomplete.org/toerisme_vlaanderen) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -177,122 +157,115 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22charging_station%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22construction%3Aamenity%22%3D%22charging_station%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22disused%3Aamenity%22%3D%22charging_station%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22planned%3Aamenity%22%3D%22charging_station%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [key](https://wiki.openstreetmap.org/wiki/Tag:access%3Dkey) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) [permissive](https://wiki.openstreetmap.org/wiki/Tag:access%3Dpermissive) -[](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:schuko#values) [socket:schuko](https://wiki.openstreetmap.org/wiki/Key:socket:schuko) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:schuko:voltage#values) [socket:schuko:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:voltage%3D230 V) -[](https://taginfo.openstreetmap.org/keys/socket:schuko:current#values) [socket:schuko:current](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:current%3D16 A) -[](https://taginfo.openstreetmap.org/keys/socket:schuko:output#values) [socket:schuko:output](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3.6 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:output%3D3.6 kW) -[](https://taginfo.openstreetmap.org/keys/socket:typee#values) [socket:typee](https://wiki.openstreetmap.org/wiki/Key:socket:typee) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:typee:voltage#values) [socket:typee:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:typee:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:voltage%3D230 V) -[](https://taginfo.openstreetmap.org/keys/socket:typee:current#values) [socket:typee:current](https://wiki.openstreetmap.org/wiki/Key:socket:typee:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:current%3D16 A) -[](https://taginfo.openstreetmap.org/keys/socket:typee:output#values) [socket:typee:output](https://wiki.openstreetmap.org/wiki/Key:socket:typee:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D3 kW) [22 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D22 kW) -[](https://taginfo.openstreetmap.org/keys/socket:chademo#values) [socket:chademo](https://wiki.openstreetmap.org/wiki/Key:socket:chademo) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:chademo:voltage#values) [socket:chademo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [500 V](https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:voltage%3D500 V) -[](https://taginfo.openstreetmap.org/keys/socket:chademo:current#values) [socket:chademo:current](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:current) | [pfloat](../SpecialInputElements.md#pfloat) | [120 A](https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:current%3D120 A) -[](https://taginfo.openstreetmap.org/keys/socket:chademo:output#values) [socket:chademo:output](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:output%3D50 kW) -[](https://taginfo.openstreetmap.org/keys/socket:type1_cable#values) [socket:type1_cable](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:type1_cable:voltage#values) [socket:type1_cable:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [200 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D200 V) [240 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D240 V) -[](https://taginfo.openstreetmap.org/keys/socket:type1_cable:current#values) [socket:type1_cable:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:current) | [pfloat](../SpecialInputElements.md#pfloat) | [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:current%3D32 A) -[](https://taginfo.openstreetmap.org/keys/socket:type1_cable:output#values) [socket:type1_cable:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3.7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D3.7 kW) [7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D7 kW) -[](https://taginfo.openstreetmap.org/keys/socket:type1#values) [socket:type1](https://wiki.openstreetmap.org/wiki/Key:socket:type1) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:type1:voltage#values) [socket:type1:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [200 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D200 V) [240 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D240 V) -[](https://taginfo.openstreetmap.org/keys/socket:type1:current#values) [socket:type1:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1:current) | [pfloat](../SpecialInputElements.md#pfloat) | [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:current%3D32 A) -[](https://taginfo.openstreetmap.org/keys/socket:type1:output#values) [socket:type1:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3.7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D3.7 kW) [6.6 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D6.6 kW) [7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D7 kW) [7.2 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D7.2 kW) -[](https://taginfo.openstreetmap.org/keys/socket:type1_combo#values) [socket:type1_combo](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:type1_combo:voltage#values) [socket:type1_combo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [400 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D400 V) [1000 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D1000 V) -[](https://taginfo.openstreetmap.org/keys/socket:type1_combo:current#values) [socket:type1_combo:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current) | [pfloat](../SpecialInputElements.md#pfloat) | [50 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D50 A) [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D125 A) -[](https://taginfo.openstreetmap.org/keys/socket:type1_combo:output#values) [socket:type1_combo:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D50 kW) [62.5 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D62.5 kW) [150 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D150 kW) [350 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D350 kW) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger#values) [socket:tesla_supercharger](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger:voltage#values) [socket:tesla_supercharger:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [480 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:voltage%3D480 V) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger:current#values) [socket:tesla_supercharger:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D125 A) [350 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D350 A) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger:output#values) [socket:tesla_supercharger:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output) | [pfloat](../SpecialInputElements.md#pfloat) | [120 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D120 kW) [150 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D150 kW) [250 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D250 kW) -[](https://taginfo.openstreetmap.org/keys/socket:type2#values) [socket:type2](https://wiki.openstreetmap.org/wiki/Key:socket:type2) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:type2:voltage#values) [socket:type2:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D230 V) [400 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D400 V) -[](https://taginfo.openstreetmap.org/keys/socket:type2:current#values) [socket:type2:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D16 A) [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D32 A) -[](https://taginfo.openstreetmap.org/keys/socket:type2:output#values) [socket:type2:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2:output) | [pfloat](../SpecialInputElements.md#pfloat) | [11 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D11 kW) [22 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D22 kW) -[](https://taginfo.openstreetmap.org/keys/socket:type2_combo#values) [socket:type2_combo](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:type2_combo:voltage#values) [socket:type2_combo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [500 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D500 V) [920 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D920 V) -[](https://taginfo.openstreetmap.org/keys/socket:type2_combo:current#values) [socket:type2_combo:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D125 A) [350 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D350 A) -[](https://taginfo.openstreetmap.org/keys/socket:type2_combo:output#values) [socket:type2_combo:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:output%3D50 kW) -[](https://taginfo.openstreetmap.org/keys/socket:type2_cable#values) [socket:type2_cable](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:type2_cable:voltage#values) [socket:type2_cable:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D230 V) [400 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D400 V) -[](https://taginfo.openstreetmap.org/keys/socket:type2_cable:current#values) [socket:type2_cable:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D16 A) [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D32 A) -[](https://taginfo.openstreetmap.org/keys/socket:type2_cable:output#values) [socket:type2_cable:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output) | [pfloat](../SpecialInputElements.md#pfloat) | [11 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D11 kW) [22 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D22 kW) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs#values) [socket:tesla_supercharger_ccs](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs:voltage#values) [socket:tesla_supercharger_ccs:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [500 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D500 V) [920 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D920 V) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs:current#values) [socket:tesla_supercharger_ccs:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D125 A) [350 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D350 A) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs:output#values) [socket:tesla_supercharger_ccs:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:output%3D50 kW) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination#values) [socket:tesla_destination](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:voltage#values) [socket:tesla_destination:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [480 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D480 V) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:current#values) [socket:tesla_destination:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D125 A) [350 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D350 A) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:output#values) [socket:tesla_destination:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output) | [pfloat](../SpecialInputElements.md#pfloat) | [120 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D120 kW) [150 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D150 kW) [250 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D250 kW) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination#values) [socket:tesla_destination](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:voltage#values) [socket:tesla_destination:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D230 V) [400 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D400 V) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:current#values) [socket:tesla_destination:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D16 A) [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D32 A) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:output#values) [socket:tesla_destination:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output) | [pfloat](../SpecialInputElements.md#pfloat) | [11 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D11 kW) [22 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D22 kW) -[](https://taginfo.openstreetmap.org/keys/socket:USB-A#values) [socket:USB-A](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:USB-A:voltage#values) [socket:USB-A:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [5 V](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:voltage%3D5 V) -[](https://taginfo.openstreetmap.org/keys/socket:USB-A:current#values) [socket:USB-A:current](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current) | [pfloat](../SpecialInputElements.md#pfloat) | [1 A](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D1 A) [2 A](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D2 A) -[](https://taginfo.openstreetmap.org/keys/socket:USB-A:output#values) [socket:USB-A:output](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output) | [pfloat](../SpecialInputElements.md#pfloat) | [5W](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D5W) [10W](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D10W) -[](https://taginfo.openstreetmap.org/keys/socket:bosch_3pin#values) [socket:bosch_3pin](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:bosch_3pin:voltage#values) [socket:bosch_3pin:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/socket:bosch_3pin:current#values) [socket:bosch_3pin:current](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin:current) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/socket:bosch_3pin:output#values) [socket:bosch_3pin:output](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin:output) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/socket:bosch_5pin#values) [socket:bosch_5pin](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:bosch_5pin:voltage#values) [socket:bosch_5pin:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/socket:bosch_5pin:current#values) [socket:bosch_5pin:current](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin:current) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/socket:bosch_5pin:output#values) [socket:bosch_5pin:output](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin:output) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/socket:bs1363#values) [socket:bs1363](https://wiki.openstreetmap.org/wiki/Key:socket:bs1363) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:bs1363:voltage#values) [socket:bs1363:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:voltage%3D230 V) -[](https://taginfo.openstreetmap.org/keys/socket:bs1363:current#values) [socket:bs1363:current](https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:current) | [pfloat](../SpecialInputElements.md#pfloat) | [13 A](https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:current%3D13 A) -[](https://taginfo.openstreetmap.org/keys/socket:bs1363:output#values) [socket:bs1363:output](https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3kW](https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:output%3D3kW) -[](https://taginfo.openstreetmap.org/keys/socket:nema5_15#values) [socket:nema5_15](https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:nema5_15:voltage#values) [socket:nema5_15:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [120 V](https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:voltage%3D120 V) -[](https://taginfo.openstreetmap.org/keys/socket:nema5_15:current#values) [socket:nema5_15:current](https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:current) | [pfloat](../SpecialInputElements.md#pfloat) | [15 A](https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:current%3D15 A) -[](https://taginfo.openstreetmap.org/keys/socket:nema5_15:output#values) [socket:nema5_15:output](https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:output) | [pfloat](../SpecialInputElements.md#pfloat) | [1.8 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:output%3D1.8 kW) -[](https://taginfo.openstreetmap.org/keys/socket:sev1011_t23#values) [socket:sev1011_t23](https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:sev1011_t23:voltage#values) [socket:sev1011_t23:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:voltage%3D230 V) -[](https://taginfo.openstreetmap.org/keys/socket:sev1011_t23:current#values) [socket:sev1011_t23:current](https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:current%3D16 A) -[](https://taginfo.openstreetmap.org/keys/socket:sev1011_t23:output#values) [socket:sev1011_t23:output](https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3.7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:output%3D3.7 kW) -[](https://taginfo.openstreetmap.org/keys/socket:as3112#values) [socket:as3112](https://wiki.openstreetmap.org/wiki/Key:socket:as3112) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:as3112:voltage#values) [socket:as3112:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:as3112:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:voltage%3D230 V) -[](https://taginfo.openstreetmap.org/keys/socket:as3112:current#values) [socket:as3112:current](https://wiki.openstreetmap.org/wiki/Key:socket:as3112:current) | [pfloat](../SpecialInputElements.md#pfloat) | [10 A](https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:current%3D10 A) -[](https://taginfo.openstreetmap.org/keys/socket:as3112:output#values) [socket:as3112:output](https://wiki.openstreetmap.org/wiki/Key:socket:as3112:output) | [pfloat](../SpecialInputElements.md#pfloat) | [2.3 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:output%3D2.3 kW) -[](https://taginfo.openstreetmap.org/keys/socket:nema_5_20#values) [socket:nema_5_20](https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:nema_5_20:voltage#values) [socket:nema_5_20:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [120 V](https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:voltage%3D120 V) -[](https://taginfo.openstreetmap.org/keys/socket:nema_5_20:current#values) [socket:nema_5_20:current](https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:current) | [pfloat](../SpecialInputElements.md#pfloat) | [20 A](https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:current%3D20 A) -[](https://taginfo.openstreetmap.org/keys/socket:nema_5_20:output#values) [socket:nema_5_20:output](https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:output) | [pfloat](../SpecialInputElements.md#pfloat) | [2.4 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:output%3D2.4 kW) -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) -[](https://taginfo.openstreetmap.org/keys/fee#values) [fee](https://wiki.openstreetmap.org/wiki/Key:fee) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) -[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/authentication:phone_call:number#values) [authentication:phone_call:number](https://wiki.openstreetmap.org/wiki/Key:authentication:phone_call:number) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/maxstay#values) [maxstay](https://wiki.openstreetmap.org/wiki/Key:maxstay) | [pfloat](../SpecialInputElements.md#pfloat) | [unlimited](https://wiki.openstreetmap.org/wiki/Tag:maxstay%3Dunlimited) -[](https://taginfo.openstreetmap.org/keys/network#values) [network](https://wiki.openstreetmap.org/wiki/Key:network) | [string](../SpecialInputElements.md#string) | [AeroVironment](https://wiki.openstreetmap.org/wiki/Tag:network%3DAeroVironment) [Blink](https://wiki.openstreetmap.org/wiki/Tag:network%3DBlink) [EVgo](https://wiki.openstreetmap.org/wiki/Tag:network%3DEVgo) [Allego](https://wiki.openstreetmap.org/wiki/Tag:network%3DAllego) [Blue Corner](https://wiki.openstreetmap.org/wiki/Tag:network%3DBlue Corner) [Tesla](https://wiki.openstreetmap.org/wiki/Tag:network%3DTesla) -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/planned:amenity#values) [planned:amenity](https://wiki.openstreetmap.org/wiki/Key:planned:amenity) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) [charging_station](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3Dcharging_station) [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) -[](https://taginfo.openstreetmap.org/keys/parking:fee#values) [parking:fee](https://wiki.openstreetmap.org/wiki/Key:parking:fee) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:parking:fee%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:parking:fee%3Dyes) ### just_created @@ -1703,54 +1676,56 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| vehicle-type.0 | *All vehicle types* (default) | | +| vehicle-type.1 | Charging station for bicycles | bicycle=yes | +| vehicle-type.2 | Charging station for cars | car=yes | motorcar=yes | -id | question | osmTags ----- | ---------- | --------- -vehicle-type.0 | All vehicle types (default) | -vehicle-type.1 | Charging station for bicycles | bicycle=yes -vehicle-type.2 | Charging station for cars | car=yes \| motorcar=yes + +| id | question | osmTags | +-----|-----|----- | +| working.0 | Only working charging stations | operational_status!=broken & amenity=charging_station | -id | question | osmTags ----- | ---------- | --------- -working.0 | Only working charging stations | operational_status!=broken & amenity=charging_station + + +| id | question | osmTags | +-----|-----|----- | +| connection_type.0 | *All connectors* (default) | | +| connection_type.1 | Has a
Schuko wall plug without ground pin (CEE7/4 type F)
connector | socket:schuko~.+ | +| connection_type.2 | Has a
European wall plug with ground pin (CEE7/4 type E)
connector | socket:typee~.+ | +| connection_type.3 | Has a
Chademo
connector | socket:chademo~.+ | +| connection_type.4 | Has a
Type 1 with cable (J1772)
connector | socket:type1_cable~.+ | +| connection_type.5 | Has a
Type 1 without cable (J1772)
connector | socket:type1~.+ | +| connection_type.6 | Has a
Type 1 CCS (aka Type 1 Combo)
connector | socket:type1_combo~.+ | +| connection_type.7 | Has a
Tesla Supercharger
connector | socket:tesla_supercharger~.+ | +| connection_type.8 | Has a
Type 2 (mennekes)
connector | socket:type2~.+ | +| connection_type.9 | Has a
Type 2 CCS (mennekes)
connector | socket:type2_combo~.+ | +| connection_type.10 | Has a
Type 2 with cable (mennekes)
connector | socket:type2_cable~.+ | +| connection_type.11 | Has a
Tesla Supercharger CCS (a branded type2_css)
connector | socket:tesla_supercharger_ccs~.+ | +| connection_type.12 | Has a
Tesla Supercharger (destination)
connector | socket:tesla_destination~.+ | +| connection_type.13 | Has a
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
connector | socket:tesla_destination~.+ | +| connection_type.14 | Has a
USB to charge phones and small electronics
connector | socket:USB-A~.+ | +| connection_type.15 | Has a
Bosch Active Connect with 3 pins and cable
connector | socket:bosch_3pin~.+ | +| connection_type.16 | Has a
Bosch Active Connect with 5 pins and cable
connector | socket:bosch_5pin~.+ | +| connection_type.17 | Has a
BS1363 (Type G)
connector | socket:bs1363~.+ | +| connection_type.18 | Has a
NEMA 5-15 (Type B)
connector | socket:nema5_15~.+ | +| connection_type.19 | Has a
SEV 1011 T23 (Type J)
connector | socket:sev1011_t23~.+ | +| connection_type.20 | Has a
AS3112 (Type I)
connector | socket:as3112~.+ | +| connection_type.21 | Has a
NEMA 5-20 (Type B)
connector | socket:nema_5_20~.+ | -id | question | osmTags ----- | ---------- | --------- -connection_type.0 | All connectors (default) | -connection_type.1 | Has a
Schuko wall plug without ground pin (CEE7/4 type F)
connector | socket:schuko~.+ -connection_type.2 | Has a
European wall plug with ground pin (CEE7/4 type E)
connector | socket:typee~.+ -connection_type.3 | Has a
Chademo
connector | socket:chademo~.+ -connection_type.4 | Has a
Type 1 with cable (J1772)
connector | socket:type1_cable~.+ -connection_type.5 | Has a
Type 1 without cable (J1772)
connector | socket:type1~.+ -connection_type.6 | Has a
Type 1 CCS (aka Type 1 Combo)
connector | socket:type1_combo~.+ -connection_type.7 | Has a
Tesla Supercharger
connector | socket:tesla_supercharger~.+ -connection_type.8 | Has a
Type 2 (mennekes)
connector | socket:type2~.+ -connection_type.9 | Has a
Type 2 CCS (mennekes)
connector | socket:type2_combo~.+ -connection_type.10 | Has a
Type 2 with cable (mennekes)
connector | socket:type2_cable~.+ -connection_type.11 | Has a
Tesla Supercharger CCS (a branded type2_css)
connector | socket:tesla_supercharger_ccs~.+ -connection_type.12 | Has a
Tesla Supercharger (destination)
connector | socket:tesla_destination~.+ -connection_type.13 | Has a
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
connector | socket:tesla_destination~.+ -connection_type.14 | Has a
USB to charge phones and small electronics
connector | socket:USB-A~.+ -connection_type.15 | Has a
Bosch Active Connect with 3 pins and cable
connector | socket:bosch_3pin~.+ -connection_type.16 | Has a
Bosch Active Connect with 5 pins and cable
connector | socket:bosch_5pin~.+ -connection_type.17 | Has a
BS1363 (Type G)
connector | socket:bs1363~.+ -connection_type.18 | Has a
NEMA 5-15 (Type B)
connector | socket:nema5_15~.+ -connection_type.19 | Has a
SEV 1011 T23 (Type J)
connector | socket:sev1011_t23~.+ -connection_type.20 | Has a
AS3112 (Type I)
connector | socket:as3112~.+ -connection_type.21 | Has a
NEMA 5-20 (Type B)
connector | socket:nema_5_20~.+ - - This document is autogenerated from [assets/layers/charging_station/charging_station.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/charging_station/charging_station.json) diff --git a/Docs/Layers/charging_station_ebikes.md b/Docs/Layers/charging_station_ebikes.md index 114656821c8..0e85e2195ce 100644 --- a/Docs/Layers/charging_station_ebikes.md +++ b/Docs/Layers/charging_station_ebikes.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# charging_station_ebikes - charging_station_ebikes -========================= - - - - +[object Object] A charging station - - - - This layer is shown at zoomlevel **14** and higher - - - + - This layer is shown at zoomlevel **14** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -146,23 +137,12 @@ A charging station - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [cyclofix](https://mapcomplete.org/cyclofix) - - [toerisme_vlaanderen](https://mapcomplete.org/toerisme_vlaanderen) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [cyclofix](https://mapcomplete.org/cyclofix) + - [toerisme_vlaanderen](https://mapcomplete.org/toerisme_vlaanderen) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -171,122 +151,115 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22bicycle%22%3D%22yes%22%5D%5B%22amenity%22%3D%22charging_station%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22bicycle%22%3D%22yes%22%5D%5B%22construction%3Aamenity%22%3D%22charging_station%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22bicycle%22%3D%22yes%22%5D%5B%22disused%3Aamenity%22%3D%22charging_station%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22bicycle%22%3D%22yes%22%5D%5B%22planned%3Aamenity%22%3D%22charging_station%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [key](https://wiki.openstreetmap.org/wiki/Tag:access%3Dkey) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) [permissive](https://wiki.openstreetmap.org/wiki/Tag:access%3Dpermissive) -[](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:schuko#values) [socket:schuko](https://wiki.openstreetmap.org/wiki/Key:socket:schuko) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:schuko:voltage#values) [socket:schuko:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:voltage%3D230 V) -[](https://taginfo.openstreetmap.org/keys/socket:schuko:current#values) [socket:schuko:current](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:current%3D16 A) -[](https://taginfo.openstreetmap.org/keys/socket:schuko:output#values) [socket:schuko:output](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3.6 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:output%3D3.6 kW) -[](https://taginfo.openstreetmap.org/keys/socket:typee#values) [socket:typee](https://wiki.openstreetmap.org/wiki/Key:socket:typee) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:typee:voltage#values) [socket:typee:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:typee:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:voltage%3D230 V) -[](https://taginfo.openstreetmap.org/keys/socket:typee:current#values) [socket:typee:current](https://wiki.openstreetmap.org/wiki/Key:socket:typee:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:current%3D16 A) -[](https://taginfo.openstreetmap.org/keys/socket:typee:output#values) [socket:typee:output](https://wiki.openstreetmap.org/wiki/Key:socket:typee:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D3 kW) [22 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D22 kW) -[](https://taginfo.openstreetmap.org/keys/socket:chademo#values) [socket:chademo](https://wiki.openstreetmap.org/wiki/Key:socket:chademo) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:chademo:voltage#values) [socket:chademo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [500 V](https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:voltage%3D500 V) -[](https://taginfo.openstreetmap.org/keys/socket:chademo:current#values) [socket:chademo:current](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:current) | [pfloat](../SpecialInputElements.md#pfloat) | [120 A](https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:current%3D120 A) -[](https://taginfo.openstreetmap.org/keys/socket:chademo:output#values) [socket:chademo:output](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:output%3D50 kW) -[](https://taginfo.openstreetmap.org/keys/socket:type1_cable#values) [socket:type1_cable](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:type1_cable:voltage#values) [socket:type1_cable:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [200 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D200 V) [240 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D240 V) -[](https://taginfo.openstreetmap.org/keys/socket:type1_cable:current#values) [socket:type1_cable:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:current) | [pfloat](../SpecialInputElements.md#pfloat) | [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:current%3D32 A) -[](https://taginfo.openstreetmap.org/keys/socket:type1_cable:output#values) [socket:type1_cable:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3.7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D3.7 kW) [7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D7 kW) -[](https://taginfo.openstreetmap.org/keys/socket:type1#values) [socket:type1](https://wiki.openstreetmap.org/wiki/Key:socket:type1) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:type1:voltage#values) [socket:type1:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [200 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D200 V) [240 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D240 V) -[](https://taginfo.openstreetmap.org/keys/socket:type1:current#values) [socket:type1:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1:current) | [pfloat](../SpecialInputElements.md#pfloat) | [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:current%3D32 A) -[](https://taginfo.openstreetmap.org/keys/socket:type1:output#values) [socket:type1:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3.7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D3.7 kW) [6.6 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D6.6 kW) [7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D7 kW) [7.2 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D7.2 kW) -[](https://taginfo.openstreetmap.org/keys/socket:type1_combo#values) [socket:type1_combo](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:type1_combo:voltage#values) [socket:type1_combo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [400 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D400 V) [1000 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D1000 V) -[](https://taginfo.openstreetmap.org/keys/socket:type1_combo:current#values) [socket:type1_combo:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current) | [pfloat](../SpecialInputElements.md#pfloat) | [50 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D50 A) [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D125 A) -[](https://taginfo.openstreetmap.org/keys/socket:type1_combo:output#values) [socket:type1_combo:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D50 kW) [62.5 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D62.5 kW) [150 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D150 kW) [350 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D350 kW) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger#values) [socket:tesla_supercharger](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger:voltage#values) [socket:tesla_supercharger:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [480 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:voltage%3D480 V) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger:current#values) [socket:tesla_supercharger:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D125 A) [350 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D350 A) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger:output#values) [socket:tesla_supercharger:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output) | [pfloat](../SpecialInputElements.md#pfloat) | [120 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D120 kW) [150 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D150 kW) [250 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D250 kW) -[](https://taginfo.openstreetmap.org/keys/socket:type2#values) [socket:type2](https://wiki.openstreetmap.org/wiki/Key:socket:type2) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:type2:voltage#values) [socket:type2:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D230 V) [400 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D400 V) -[](https://taginfo.openstreetmap.org/keys/socket:type2:current#values) [socket:type2:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D16 A) [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D32 A) -[](https://taginfo.openstreetmap.org/keys/socket:type2:output#values) [socket:type2:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2:output) | [pfloat](../SpecialInputElements.md#pfloat) | [11 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D11 kW) [22 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D22 kW) -[](https://taginfo.openstreetmap.org/keys/socket:type2_combo#values) [socket:type2_combo](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:type2_combo:voltage#values) [socket:type2_combo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [500 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D500 V) [920 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D920 V) -[](https://taginfo.openstreetmap.org/keys/socket:type2_combo:current#values) [socket:type2_combo:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D125 A) [350 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D350 A) -[](https://taginfo.openstreetmap.org/keys/socket:type2_combo:output#values) [socket:type2_combo:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:output%3D50 kW) -[](https://taginfo.openstreetmap.org/keys/socket:type2_cable#values) [socket:type2_cable](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:type2_cable:voltage#values) [socket:type2_cable:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D230 V) [400 V](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D400 V) -[](https://taginfo.openstreetmap.org/keys/socket:type2_cable:current#values) [socket:type2_cable:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D16 A) [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D32 A) -[](https://taginfo.openstreetmap.org/keys/socket:type2_cable:output#values) [socket:type2_cable:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output) | [pfloat](../SpecialInputElements.md#pfloat) | [11 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D11 kW) [22 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D22 kW) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs#values) [socket:tesla_supercharger_ccs](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs:voltage#values) [socket:tesla_supercharger_ccs:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [500 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D500 V) [920 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D920 V) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs:current#values) [socket:tesla_supercharger_ccs:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D125 A) [350 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D350 A) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs:output#values) [socket:tesla_supercharger_ccs:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:output) | [pfloat](../SpecialInputElements.md#pfloat) | [50 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:output%3D50 kW) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination#values) [socket:tesla_destination](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:voltage#values) [socket:tesla_destination:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [480 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D480 V) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:current#values) [socket:tesla_destination:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current) | [pfloat](../SpecialInputElements.md#pfloat) | [125 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D125 A) [350 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D350 A) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:output#values) [socket:tesla_destination:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output) | [pfloat](../SpecialInputElements.md#pfloat) | [120 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D120 kW) [150 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D150 kW) [250 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D250 kW) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination#values) [socket:tesla_destination](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:voltage#values) [socket:tesla_destination:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D230 V) [400 V](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D400 V) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:current#values) [socket:tesla_destination:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D16 A) [32 A](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D32 A) -[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:output#values) [socket:tesla_destination:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output) | [pfloat](../SpecialInputElements.md#pfloat) | [11 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D11 kW) [22 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D22 kW) -[](https://taginfo.openstreetmap.org/keys/socket:USB-A#values) [socket:USB-A](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:USB-A:voltage#values) [socket:USB-A:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [5 V](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:voltage%3D5 V) -[](https://taginfo.openstreetmap.org/keys/socket:USB-A:current#values) [socket:USB-A:current](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current) | [pfloat](../SpecialInputElements.md#pfloat) | [1 A](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D1 A) [2 A](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D2 A) -[](https://taginfo.openstreetmap.org/keys/socket:USB-A:output#values) [socket:USB-A:output](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output) | [pfloat](../SpecialInputElements.md#pfloat) | [5W](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D5W) [10W](https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D10W) -[](https://taginfo.openstreetmap.org/keys/socket:bosch_3pin#values) [socket:bosch_3pin](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:bosch_3pin:voltage#values) [socket:bosch_3pin:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/socket:bosch_3pin:current#values) [socket:bosch_3pin:current](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin:current) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/socket:bosch_3pin:output#values) [socket:bosch_3pin:output](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin:output) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/socket:bosch_5pin#values) [socket:bosch_5pin](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:bosch_5pin:voltage#values) [socket:bosch_5pin:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/socket:bosch_5pin:current#values) [socket:bosch_5pin:current](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin:current) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/socket:bosch_5pin:output#values) [socket:bosch_5pin:output](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin:output) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/socket:bs1363#values) [socket:bs1363](https://wiki.openstreetmap.org/wiki/Key:socket:bs1363) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:bs1363:voltage#values) [socket:bs1363:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:voltage%3D230 V) -[](https://taginfo.openstreetmap.org/keys/socket:bs1363:current#values) [socket:bs1363:current](https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:current) | [pfloat](../SpecialInputElements.md#pfloat) | [13 A](https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:current%3D13 A) -[](https://taginfo.openstreetmap.org/keys/socket:bs1363:output#values) [socket:bs1363:output](https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3kW](https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:output%3D3kW) -[](https://taginfo.openstreetmap.org/keys/socket:nema5_15#values) [socket:nema5_15](https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:nema5_15:voltage#values) [socket:nema5_15:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [120 V](https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:voltage%3D120 V) -[](https://taginfo.openstreetmap.org/keys/socket:nema5_15:current#values) [socket:nema5_15:current](https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:current) | [pfloat](../SpecialInputElements.md#pfloat) | [15 A](https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:current%3D15 A) -[](https://taginfo.openstreetmap.org/keys/socket:nema5_15:output#values) [socket:nema5_15:output](https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:output) | [pfloat](../SpecialInputElements.md#pfloat) | [1.8 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:output%3D1.8 kW) -[](https://taginfo.openstreetmap.org/keys/socket:sev1011_t23#values) [socket:sev1011_t23](https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:sev1011_t23:voltage#values) [socket:sev1011_t23:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:voltage%3D230 V) -[](https://taginfo.openstreetmap.org/keys/socket:sev1011_t23:current#values) [socket:sev1011_t23:current](https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:current) | [pfloat](../SpecialInputElements.md#pfloat) | [16 A](https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:current%3D16 A) -[](https://taginfo.openstreetmap.org/keys/socket:sev1011_t23:output#values) [socket:sev1011_t23:output](https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:output) | [pfloat](../SpecialInputElements.md#pfloat) | [3.7 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:output%3D3.7 kW) -[](https://taginfo.openstreetmap.org/keys/socket:as3112#values) [socket:as3112](https://wiki.openstreetmap.org/wiki/Key:socket:as3112) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:as3112:voltage#values) [socket:as3112:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:as3112:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [230 V](https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:voltage%3D230 V) -[](https://taginfo.openstreetmap.org/keys/socket:as3112:current#values) [socket:as3112:current](https://wiki.openstreetmap.org/wiki/Key:socket:as3112:current) | [pfloat](../SpecialInputElements.md#pfloat) | [10 A](https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:current%3D10 A) -[](https://taginfo.openstreetmap.org/keys/socket:as3112:output#values) [socket:as3112:output](https://wiki.openstreetmap.org/wiki/Key:socket:as3112:output) | [pfloat](../SpecialInputElements.md#pfloat) | [2.3 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:output%3D2.3 kW) -[](https://taginfo.openstreetmap.org/keys/socket:nema_5_20#values) [socket:nema_5_20](https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/socket:nema_5_20:voltage#values) [socket:nema_5_20:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | [120 V](https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:voltage%3D120 V) -[](https://taginfo.openstreetmap.org/keys/socket:nema_5_20:current#values) [socket:nema_5_20:current](https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:current) | [pfloat](../SpecialInputElements.md#pfloat) | [20 A](https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:current%3D20 A) -[](https://taginfo.openstreetmap.org/keys/socket:nema_5_20:output#values) [socket:nema_5_20:output](https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:output) | [pfloat](../SpecialInputElements.md#pfloat) | [2.4 kW](https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:output%3D2.4 kW) -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) -[](https://taginfo.openstreetmap.org/keys/fee#values) [fee](https://wiki.openstreetmap.org/wiki/Key:fee) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) -[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/authentication:phone_call:number#values) [authentication:phone_call:number](https://wiki.openstreetmap.org/wiki/Key:authentication:phone_call:number) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/maxstay#values) [maxstay](https://wiki.openstreetmap.org/wiki/Key:maxstay) | [pfloat](../SpecialInputElements.md#pfloat) | [unlimited](https://wiki.openstreetmap.org/wiki/Tag:maxstay%3Dunlimited) -[](https://taginfo.openstreetmap.org/keys/network#values) [network](https://wiki.openstreetmap.org/wiki/Key:network) | [string](../SpecialInputElements.md#string) | [AeroVironment](https://wiki.openstreetmap.org/wiki/Tag:network%3DAeroVironment) [Blink](https://wiki.openstreetmap.org/wiki/Tag:network%3DBlink) [EVgo](https://wiki.openstreetmap.org/wiki/Tag:network%3DEVgo) [Allego](https://wiki.openstreetmap.org/wiki/Tag:network%3DAllego) [Blue Corner](https://wiki.openstreetmap.org/wiki/Tag:network%3DBlue Corner) [Tesla](https://wiki.openstreetmap.org/wiki/Tag:network%3DTesla) -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/planned:amenity#values) [planned:amenity](https://wiki.openstreetmap.org/wiki/Key:planned:amenity) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) [charging_station](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3Dcharging_station) [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) -[](https://taginfo.openstreetmap.org/keys/parking:fee#values) [parking:fee](https://wiki.openstreetmap.org/wiki/Key:parking:fee) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:parking:fee%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:parking:fee%3Dyes) ### just_created @@ -1695,6 +1668,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/themes/cyclofix/cyclofix.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/cyclofix/cyclofix.json) diff --git a/Docs/Layers/cinema.md b/Docs/Layers/cinema.md index 1e731d02ad6..0df58564503 100644 --- a/Docs/Layers/cinema.md +++ b/Docs/Layers/cinema.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# cinema - cinema -======== - - - - +[object Object] A place showing movies (films), generally open to the public for a fee. Commonly referred to as a movie theater in the US - - - - This layer is shown at zoomlevel **10** and higher - - - + - This layer is shown at zoomlevel **10** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -44,48 +35,30 @@ - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [openlovemap](https://mapcomplete.org/openlovemap) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [openlovemap](https://mapcomplete.org/openlovemap) +## Basic tags for this layer Elements must match the expression **amenity=cinema** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22cinema%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [wikidata](../SpecialInputElements.md#wikidata) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/wikidata#values) [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | -[](https://taginfo.openstreetmap.org/keys/cinema#values) [cinema](https://wiki.openstreetmap.org/wiki/Key:cinema) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:cinema%3D) [erotic](https://wiki.openstreetmap.org/wiki/Tag:cinema%3Derotic) ### just_created @@ -258,6 +231,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/cinema/cinema.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/cinema/cinema.json) diff --git a/Docs/Layers/climbing_area.md b/Docs/Layers/climbing_area.md index f42ffb0ad0e..52aac222694 100644 --- a/Docs/Layers/climbing_area.md +++ b/Docs/Layers/climbing_area.md @@ -1,31 +1,22 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# climbing_area - climbing_area -=============== - - - - +[object Object] An area where climbing is possible, e.g. a crag, site, boulder, … Contains aggregation of routes - - - - This layer is shown at zoomlevel **10** and higher - - This layer will automatically load [climbing_route](./climbing_route.md) into the layout as it depends on it: a calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _contained_climbing_routes_properties) - - - + - This layer is shown at zoomlevel **10** and higher + - This layer will automatically load [climbing_route](./climbing_route.md) into the layout as it depends on it: a calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _contained_climbing_routes_properties) ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -49,23 +40,12 @@ An area where climbing is possible, e.g. a crag, site, boulder, … Contains agg - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [climbing](https://mapcomplete.org/climbing) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [climbing](https://mapcomplete.org/climbing) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -77,28 +57,21 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22sport%22%3D%22climbing%22%5D%5B%22climbing%22!~%22%5E%28route%29%24%22%5D%5B%22climbing%22!%3D%22route_top%22%5D%5B%22climbing%22!%3D%22route_bottom%22%5D%5B%22leisure%22!~%22%5E%28sports_centre%29%24%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D) -[](https://taginfo.openstreetmap.org/keys/climbing#values) [climbing](https://wiki.openstreetmap.org/wiki/Key:climbing) | Multiple choice | [boulder](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dboulder) [crag](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dcrag) [area](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Darea) -[](https://taginfo.openstreetmap.org/keys/rock#values) [rock](https://wiki.openstreetmap.org/wiki/Key:rock) | [string](../SpecialInputElements.md#string) | [limestone](https://wiki.openstreetmap.org/wiki/Tag:rock%3Dlimestone) -[](https://taginfo.openstreetmap.org/keys/url#values) [url](https://wiki.openstreetmap.org/wiki/Key:url) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:charge%3D) -[](https://taginfo.openstreetmap.org/keys/climbing:boulder#values) [climbing:boulder](https://wiki.openstreetmap.org/wiki/Key:climbing:boulder) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dlimited) ### just_created @@ -298,6 +271,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/climbing_area/climbing_area.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing_area/climbing_area.json) diff --git a/Docs/Layers/climbing_club.md b/Docs/Layers/climbing_club.md index 74d917e4d2f..e4cbb823a66 100644 --- a/Docs/Layers/climbing_club.md +++ b/Docs/Layers/climbing_club.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# climbing_club - climbing_club -=============== - - - - +[object Object] A climbing club or organisation - - - - This layer is shown at zoomlevel **10** and higher - - - + - This layer is shown at zoomlevel **10** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [climbing_club-name](#climbing_club-name) @@ -41,23 +32,12 @@ A climbing club or organisation - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [climbing](https://mapcomplete.org/climbing) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [climbing](https://mapcomplete.org/climbing) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -66,27 +46,20 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22club%22%3D%22climbing%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22sport%22%3D%22climbing%22%5D%5B%22club%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22sport%22%3D%22climbing%22%5D%5B%22office%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | ### just_created @@ -233,6 +206,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/climbing_club/climbing_club.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing_club/climbing_club.json) diff --git a/Docs/Layers/climbing_gym.md b/Docs/Layers/climbing_gym.md index 52c57765eea..c863b8e8910 100644 --- a/Docs/Layers/climbing_gym.md +++ b/Docs/Layers/climbing_gym.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# climbing_gym - climbing_gym -============== - - - - +[object Object] A climbing gym - - - - This layer is shown at zoomlevel **10** and higher - - - + - This layer is shown at zoomlevel **10** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -61,23 +52,12 @@ A climbing gym - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [climbing](https://mapcomplete.org/climbing) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [climbing](https://mapcomplete.org/climbing) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -86,42 +66,35 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22sport%22%3D%22climbing%22%5D%5B%22leisure%22%3D%22sports_centre%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:charge%3D) -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/service:climbing_shoes:rental#values) [service:climbing_shoes:rental](https://wiki.openstreetmap.org/wiki/Key:service:climbing_shoes:rental) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_shoes:rental%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_shoes:rental%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_shoes:rental%3Dno) -[](https://taginfo.openstreetmap.org/keys/service:climbing_harness:rental#values) [service:climbing_harness:rental](https://wiki.openstreetmap.org/wiki/Key:service:climbing_harness:rental) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_harness:rental%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_harness:rental%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_harness:rental%3Dno) -[](https://taginfo.openstreetmap.org/keys/service:climbing_rope:rental#values) [service:climbing_rope:rental](https://wiki.openstreetmap.org/wiki/Key:service:climbing_rope:rental) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_rope:rental%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_rope:rental%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_rope:rental%3Dno) -[](https://taginfo.openstreetmap.org/keys/climbing:boulder#values) [climbing:boulder](https://wiki.openstreetmap.org/wiki/Key:climbing:boulder) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dlimited) -[](https://taginfo.openstreetmap.org/keys/climbing:sport#values) [climbing:sport](https://wiki.openstreetmap.org/wiki/Key:climbing:sport) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:sport%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:sport%3Dno) -[](https://taginfo.openstreetmap.org/keys/climbing:toprope#values) [climbing:toprope](https://wiki.openstreetmap.org/wiki/Key:climbing:toprope) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:toprope%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:toprope%3Dno) -[](https://taginfo.openstreetmap.org/keys/climbing:length#values) [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/climbing:grade:french:min#values) [climbing:grade:french:min](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:min) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/climbing:grade:french:max#values) [climbing:grade:french:max](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:max) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/climbing:bolts:max#values) [climbing:bolts:max](https://wiki.openstreetmap.org/wiki/Key:climbing:bolts:max) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/climbing:speed#values) [climbing:speed](https://wiki.openstreetmap.org/wiki/Key:climbing:speed) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:speed%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:speed%3Dno) -[](https://taginfo.openstreetmap.org/keys/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired) -[](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers) -[](https://taginfo.openstreetmap.org/keys/internet_access:ssid#values) [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom) ### just_created @@ -487,6 +460,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/climbing_gym/climbing_gym.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing_gym/climbing_gym.json) diff --git a/Docs/Layers/climbing_opportunity.md b/Docs/Layers/climbing_opportunity.md index 2b7ade37920..e2b8472a4d2 100644 --- a/Docs/Layers/climbing_opportunity.md +++ b/Docs/Layers/climbing_opportunity.md @@ -1,31 +1,22 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# climbing_opportunity - climbing_opportunity -====================== - - - - +[object Object] Fallback layer with items on which climbing _might_ be possible. It is loaded when zoomed in a lot, to prevent duplicate items to be added - - - - This layer is shown at zoomlevel **18** and higher - - This layer is needed as dependency for layer [climbing_route](#climbing_route) - - - + - This layer is shown at zoomlevel **18** and higher + - This layer is needed as dependency for layer [climbing_route](#climbing_route) ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [climbing-opportunity-name](#climbing-opportunity-name) @@ -39,23 +30,12 @@ Fallback layer with items on which climbing _might_ be possible. It is loaded wh - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [climbing](https://mapcomplete.org/climbing) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [climbing](https://mapcomplete.org/climbing) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -65,22 +45,15 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22barrier%22%3D%22wall%22%5D%5B%22sport%22!%3D%22climbing%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22barrier%22%3D%22retaining_wall%22%5D%5B%22sport%22!%3D%22climbing%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22leisure%22%3D%22sports_centre%22%5D%5B%22sport%22!%3D%22climbing%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22natural%22%3D%22cliff%22%5D%5B%22sport%22!%3D%22climbing%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22natural%22%3D%22rock%22%5D%5B%22sport%22!%3D%22climbing%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22natural%22%3D%22stone%22%5D%5B%22sport%22!%3D%22climbing%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | ### just_created @@ -187,6 +160,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/climbing_opportunity/climbing_opportunity.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing_opportunity/climbing_opportunity.json) diff --git a/Docs/Layers/climbing_route.md b/Docs/Layers/climbing_route.md index 02e735a3f52..ffb31ca29af 100644 --- a/Docs/Layers/climbing_route.md +++ b/Docs/Layers/climbing_route.md @@ -1,32 +1,23 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# climbing_route - climbing_route -================ - - - - +[object Object] A single climbing route and its properties. Some properties are derived from the containing features - - - - This layer is shown at zoomlevel **18** and higher - - This layer will automatically load [climbing_opportunity](./climbing_opportunity.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) - - This layer is needed as dependency for layer [climbing_area](#climbing_area) - - - + - This layer is shown at zoomlevel **18** and higher + - This layer will automatically load [climbing_opportunity](./climbing_opportunity.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) + - This layer is needed as dependency for layer [climbing_area](#climbing_area) ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -46,50 +37,32 @@ A single climbing route and its properties. Some properties are derived from the - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [climbing](https://mapcomplete.org/climbing) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [climbing](https://mapcomplete.org/climbing) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **climbing=route** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22climbing%22%3D%22route%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D) -[](https://taginfo.openstreetmap.org/keys/climbing:length#values) [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/climbing:grade:french#values) [climbing:grade:french](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/climbing:bolts#values) [climbing:bolts](https://wiki.openstreetmap.org/wiki/Key:climbing:bolts) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/_embedding_features_with_rock:rock#values) [_embedding_features_with_rock:rock](https://wiki.openstreetmap.org/wiki/Key:_embedding_features_with_rock:rock) | [string](../SpecialInputElements.md#string) | ### just_created @@ -254,6 +227,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/climbing_route/climbing_route.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing_route/climbing_route.json) diff --git a/Docs/Layers/clock.md b/Docs/Layers/clock.md index 5919774fd86..88b9bf57946 100644 --- a/Docs/Layers/clock.md +++ b/Docs/Layers/clock.md @@ -1,31 +1,22 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# clock - clock -======= - - - - +[object Object] Layer with public clocks - - - - This layer is shown at zoomlevel **13** and higher - - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[1]) - - - + - This layer is shown at zoomlevel **13** and higher + - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[1]) ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -49,53 +40,35 @@ Layer with public clocks - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [clock](https://mapcomplete.org/clock) - - [personal](https://mapcomplete.org/personal) - - [stations](https://mapcomplete.org/stations) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [clock](https://mapcomplete.org/clock) + - [personal](https://mapcomplete.org/personal) + - [stations](https://mapcomplete.org/stations) +## Basic tags for this layer Elements must match the expression **amenity=clock** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22clock%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/support#values) [support](https://wiki.openstreetmap.org/wiki/Key:support) | Multiple choice | [pole](https://wiki.openstreetmap.org/wiki/Tag:support%3Dpole) [wall_mounted](https://wiki.openstreetmap.org/wiki/Tag:support%3Dwall_mounted) [billboard](https://wiki.openstreetmap.org/wiki/Tag:support%3Dbillboard) [ground](https://wiki.openstreetmap.org/wiki/Tag:support%3Dground) -[](https://taginfo.openstreetmap.org/keys/display#values) [display](https://wiki.openstreetmap.org/wiki/Key:display) | Multiple choice | [analog](https://wiki.openstreetmap.org/wiki/Tag:display%3Danalog) [digital](https://wiki.openstreetmap.org/wiki/Tag:display%3Ddigital) [sundial](https://wiki.openstreetmap.org/wiki/Tag:display%3Dsundial) [unorthodox](https://wiki.openstreetmap.org/wiki/Tag:display%3Dunorthodox) -[](https://taginfo.openstreetmap.org/keys/visibility#values) [visibility](https://wiki.openstreetmap.org/wiki/Key:visibility) | Multiple choice | [house](https://wiki.openstreetmap.org/wiki/Tag:visibility%3Dhouse) [street](https://wiki.openstreetmap.org/wiki/Tag:visibility%3Dstreet) [area](https://wiki.openstreetmap.org/wiki/Tag:visibility%3Darea) -[](https://taginfo.openstreetmap.org/keys/date#values) [date](https://wiki.openstreetmap.org/wiki/Key:date) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:date%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:date%3Dno) -[](https://taginfo.openstreetmap.org/keys/thermometer#values) [thermometer](https://wiki.openstreetmap.org/wiki/Key:thermometer) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:thermometer%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:thermometer%3Dno) -[](https://taginfo.openstreetmap.org/keys/barometer#values) [barometer](https://wiki.openstreetmap.org/wiki/Key:barometer) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:barometer%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:barometer%3Dno) -[](https://taginfo.openstreetmap.org/keys/hygrometer#values) [hygrometer](https://wiki.openstreetmap.org/wiki/Key:hygrometer) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:hygrometer%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:hygrometer%3Dno) -[](https://taginfo.openstreetmap.org/keys/faces#values) [faces](https://wiki.openstreetmap.org/wiki/Key:faces) | [pnat](../SpecialInputElements.md#pnat) | [1](https://wiki.openstreetmap.org/wiki/Tag:faces%3D1) [2](https://wiki.openstreetmap.org/wiki/Tag:faces%3D2) [4](https://wiki.openstreetmap.org/wiki/Tag:faces%3D4) ### just_created @@ -304,6 +277,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/clock/clock.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/clock/clock.json) diff --git a/Docs/Layers/crab_address.md b/Docs/Layers/crab_address.md index 83df0236316..361b681723b 100644 --- a/Docs/Layers/crab_address.md +++ b/Docs/Layers/crab_address.md @@ -1,31 +1,26 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# crab_address - crab_address -============== - - - - +[object Object] Address data for Flanders by the governement, suited for import into OpenStreetMap. Datadump from 2021-10-26. This layer contains only visualisation logic. Import buttons should be added via an override. Note that HNRLABEL contains the original value, whereas _HNRLABEL contains a slightly cleaned version + - This layer is shown at zoomlevel **0** and higher + - +This layer is loaded from an external source, namely - - This layer is shown at zoomlevel **0** and higher - - This layer is loaded from an external source, namely `https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/CRAB_2021_10_26/tile_{z}_{x}_{y}.geojson` - - - +`https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/CRAB_2021_10_26/tile_{z}_{x}_{y}.geojson` ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [render_crab](#render_crab) @@ -38,43 +33,25 @@ Address data for Flanders by the governement, suited for import into OpenStreetM - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [grb](https://mapcomplete.org/grb) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [grb](https://mapcomplete.org/grb) +## Basic tags for this layer Elements must match the expression **HUISNR~.+** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22HUISNR%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | ### just_created @@ -170,6 +147,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/crab_address/crab_address.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/crab_address/crab_address.json) diff --git a/Docs/Layers/crossings.md b/Docs/Layers/crossings.md index 930ae835736..b616f1e450e 100644 --- a/Docs/Layers/crossings.md +++ b/Docs/Layers/crossings.md @@ -1,32 +1,23 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# crossings - crossings -=========== - - - - +[object Object] Crossings for pedestrians and cyclists - - - - This layer is shown at zoomlevel **17** and higher - - This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) - - This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[1]) - - - + - This layer is shown at zoomlevel **17** and higher + - This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) + - This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[1]) ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -53,24 +44,13 @@ Crossings for pedestrians and cyclists - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [blind_osm](https://mapcomplete.org/blind_osm) - - [cycle_infra](https://mapcomplete.org/cycle_infra) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [blind_osm](https://mapcomplete.org/blind_osm) + - [cycle_infra](https://mapcomplete.org/cycle_infra) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -79,34 +59,27 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22highway%22%3D%22traffic_signals%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22crossing%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/crossing#values) [crossing](https://wiki.openstreetmap.org/wiki/Key:crossing) | Multiple choice | [uncontrolled](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Duncontrolled) [traffic_signals](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dtraffic_signals) [unmarked](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dunmarked) -[](https://taginfo.openstreetmap.org/keys/crossing_ref#values) [crossing_ref](https://wiki.openstreetmap.org/wiki/Key:crossing_ref) | Multiple choice | [zebra](https://wiki.openstreetmap.org/wiki/Tag:crossing_ref%3Dzebra) [](https://wiki.openstreetmap.org/wiki/Tag:crossing_ref%3D) -[](https://taginfo.openstreetmap.org/keys/bicycle#values) [bicycle](https://wiki.openstreetmap.org/wiki/Key:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno) -[](https://taginfo.openstreetmap.org/keys/crossing:island#values) [crossing:island](https://wiki.openstreetmap.org/wiki/Key:crossing:island) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dno) -[](https://taginfo.openstreetmap.org/keys/tactile_paving#values) [tactile_paving](https://wiki.openstreetmap.org/wiki/Key:tactile_paving) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dno) -[](https://taginfo.openstreetmap.org/keys/button_operated#values) [button_operated](https://wiki.openstreetmap.org/wiki/Key:button_operated) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:button_operated%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:button_operated%3Dno) -[](https://taginfo.openstreetmap.org/keys/traffic_signals:sound#values) [traffic_signals:sound](https://wiki.openstreetmap.org/wiki/Key:traffic_signals:sound) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:sound%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:sound%3Dno) [locate](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:sound%3Dlocate) [walk](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:sound%3Dwalk) -[](https://taginfo.openstreetmap.org/keys/traffic_signals:vibration#values) [traffic_signals:vibration](https://wiki.openstreetmap.org/wiki/Key:traffic_signals:vibration) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:vibration%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:vibration%3Dno) -[](https://taginfo.openstreetmap.org/keys/traffic_signals:arrow#values) [traffic_signals:arrow](https://wiki.openstreetmap.org/wiki/Key:traffic_signals:arrow) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:arrow%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:arrow%3Dno) -[](https://taginfo.openstreetmap.org/keys/traffic_signals:minimap#values) [traffic_signals:minimap](https://wiki.openstreetmap.org/wiki/Key:traffic_signals:minimap) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:minimap%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:minimap%3Dno) -[](https://taginfo.openstreetmap.org/keys/red_turn:right:bicycle#values) [red_turn:right:bicycle](https://wiki.openstreetmap.org/wiki/Key:red_turn:right:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dno) -[](https://taginfo.openstreetmap.org/keys/red_turn:straight:bicycle#values) [red_turn:straight:bicycle](https://wiki.openstreetmap.org/wiki/Key:red_turn:straight:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dno) ### just_created @@ -330,20 +303,18 @@ _This tagrendering has no question and is thus read-only_ - - -#### Filters +#### Filters +| id | question | osmTags | +-----|-----|----- | +| tactile_paving_advanced.0 | *With or without tactile paving* (default) | | +| tactile_paving_advanced.1 | With tactile paving | tactile_paving=yes | +| tactile_paving_advanced.2 | Without tactile paving | tactile_paving=no | +| tactile_paving_advanced.3 | No information about tactile paving | tactile_paving= | + -id | question | osmTags ----- | ---------- | --------- -tactile_paving_advanced.0 | With or without tactile paving (default) | -tactile_paving_advanced.1 | With tactile paving | tactile_paving=yes -tactile_paving_advanced.2 | Without tactile paving | tactile_paving=no -tactile_paving_advanced.3 | No information about tactile paving | tactile_paving= - This document is autogenerated from [assets/layers/crossings/crossings.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/crossings/crossings.json) diff --git a/Docs/Layers/crossings_no_traffic_lights.md b/Docs/Layers/crossings_no_traffic_lights.md index 4f4d142a49a..a797e507822 100644 --- a/Docs/Layers/crossings_no_traffic_lights.md +++ b/Docs/Layers/crossings_no_traffic_lights.md @@ -1,31 +1,22 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# crossings_no_traffic_lights - crossings_no_traffic_lights -============================= - - - - +[object Object] Crossings for pedestrians and cyclists - - - - This layer is shown at zoomlevel **17** and higher - - This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) - - - + - This layer is shown at zoomlevel **17** and higher + - This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -52,55 +43,37 @@ Crossings for pedestrians and cyclists - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [kerbs_and_crossings](https://mapcomplete.org/kerbs_and_crossings) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [kerbs_and_crossings](https://mapcomplete.org/kerbs_and_crossings) +## Basic tags for this layer Elements must match the expression **highway=crossing** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22highway%22%3D%22crossing%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/crossing#values) [crossing](https://wiki.openstreetmap.org/wiki/Key:crossing) | Multiple choice | [uncontrolled](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Duncontrolled) [traffic_signals](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dtraffic_signals) [unmarked](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dunmarked) -[](https://taginfo.openstreetmap.org/keys/crossing_ref#values) [crossing_ref](https://wiki.openstreetmap.org/wiki/Key:crossing_ref) | Multiple choice | [zebra](https://wiki.openstreetmap.org/wiki/Tag:crossing_ref%3Dzebra) [](https://wiki.openstreetmap.org/wiki/Tag:crossing_ref%3D) -[](https://taginfo.openstreetmap.org/keys/bicycle#values) [bicycle](https://wiki.openstreetmap.org/wiki/Key:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno) -[](https://taginfo.openstreetmap.org/keys/crossing:island#values) [crossing:island](https://wiki.openstreetmap.org/wiki/Key:crossing:island) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dno) -[](https://taginfo.openstreetmap.org/keys/tactile_paving#values) [tactile_paving](https://wiki.openstreetmap.org/wiki/Key:tactile_paving) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dno) -[](https://taginfo.openstreetmap.org/keys/button_operated#values) [button_operated](https://wiki.openstreetmap.org/wiki/Key:button_operated) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:button_operated%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:button_operated%3Dno) -[](https://taginfo.openstreetmap.org/keys/traffic_signals:sound#values) [traffic_signals:sound](https://wiki.openstreetmap.org/wiki/Key:traffic_signals:sound) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:sound%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:sound%3Dno) [locate](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:sound%3Dlocate) [walk](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:sound%3Dwalk) -[](https://taginfo.openstreetmap.org/keys/traffic_signals:vibration#values) [traffic_signals:vibration](https://wiki.openstreetmap.org/wiki/Key:traffic_signals:vibration) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:vibration%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:vibration%3Dno) -[](https://taginfo.openstreetmap.org/keys/traffic_signals:arrow#values) [traffic_signals:arrow](https://wiki.openstreetmap.org/wiki/Key:traffic_signals:arrow) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:arrow%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:arrow%3Dno) -[](https://taginfo.openstreetmap.org/keys/traffic_signals:minimap#values) [traffic_signals:minimap](https://wiki.openstreetmap.org/wiki/Key:traffic_signals:minimap) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:minimap%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:minimap%3Dno) -[](https://taginfo.openstreetmap.org/keys/red_turn:right:bicycle#values) [red_turn:right:bicycle](https://wiki.openstreetmap.org/wiki/Key:red_turn:right:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dno) -[](https://taginfo.openstreetmap.org/keys/red_turn:straight:bicycle#values) [red_turn:straight:bicycle](https://wiki.openstreetmap.org/wiki/Key:red_turn:straight:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dno) ### just_created @@ -324,20 +297,18 @@ _This tagrendering has no question and is thus read-only_ - - -#### Filters +#### Filters +| id | question | osmTags | +-----|-----|----- | +| tactile_paving_advanced.0 | *With or without tactile paving* (default) | | +| tactile_paving_advanced.1 | With tactile paving | tactile_paving=yes | +| tactile_paving_advanced.2 | Without tactile paving | tactile_paving=no | +| tactile_paving_advanced.3 | No information about tactile paving | tactile_paving= | + -id | question | osmTags ----- | ---------- | --------- -tactile_paving_advanced.0 | With or without tactile paving (default) | -tactile_paving_advanced.1 | With tactile paving | tactile_paving=yes -tactile_paving_advanced.2 | Without tactile paving | tactile_paving=no -tactile_paving_advanced.3 | No information about tactile paving | tactile_paving= - This document is autogenerated from [assets/themes/kerbs_and_crossings/kerbs_and_crossings.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/kerbs_and_crossings/kerbs_and_crossings.json) diff --git a/Docs/Layers/cultural_places_without_etymology.md b/Docs/Layers/cultural_places_without_etymology.md index 1202ed531fb..204949bfd6e 100644 --- a/Docs/Layers/cultural_places_without_etymology.md +++ b/Docs/Layers/cultural_places_without_etymology.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# cultural_places_without_etymology - cultural_places_without_etymology -=================================== - - - - +[object Object] All objects which have an etymology known - - - - This layer is shown at zoomlevel **18** and higher - - - + - This layer is shown at zoomlevel **18** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [etymology-images-from-wikipedia](#etymology-images-from-wikipedia) @@ -44,22 +35,11 @@ All objects which have an etymology known - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [etymology](https://mapcomplete.org/etymology) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [etymology](https://mapcomplete.org/etymology) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -68,24 +48,17 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22arts_centre%22%5D%5B%22name%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cinema%22%5D%5B%22name%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22community_centre%22%5D%5B%22name%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22library%22%5D%5B%22name%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22theatre%22%5D%5B%22name%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [wikidata](../SpecialInputElements.md#wikidata) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name:etymology:wikidata#values) [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | -[](https://taginfo.openstreetmap.org/keys/name:etymology#values) [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology) | [string](../SpecialInputElements.md#string) | [unknown](https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown) ### just_created @@ -242,6 +215,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/themes/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/etymology/etymology.json) diff --git a/Docs/Layers/cycleways_and_roads.md b/Docs/Layers/cycleways_and_roads.md index 42fd119d8a9..7312767bd1f 100644 --- a/Docs/Layers/cycleways_and_roads.md +++ b/Docs/Layers/cycleways_and_roads.md @@ -1,35 +1,26 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# cycleways_and_roads - cycleways_and_roads -===================== - - - - +[object Object] All infrastructure that someone can cycle over, accompanied with questions about this infrastructure - - - - This layer is shown at zoomlevel **16** and higher - - This layer is needed as dependency for layer [barrier](#barrier) - - This layer is needed as dependency for layer [crossings](#crossings) - - This layer is needed as dependency for layer [kerbs](#kerbs) - - This layer is needed as dependency for layer [rainbow_crossings](#rainbow_crossings) - - This layer is needed as dependency for layer [crossings_no_traffic_lights](#crossings_no_traffic_lights) - - - + - This layer is shown at zoomlevel **16** and higher + - This layer is needed as dependency for layer [barrier](#barrier) + - This layer is needed as dependency for layer [crossings](#crossings) + - This layer is needed as dependency for layer [kerbs](#kerbs) + - This layer is needed as dependency for layer [rainbow_crossings](#rainbow_crossings) + - This layer is needed as dependency for layer [crossings_no_traffic_lights](#crossings_no_traffic_lights) ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -60,29 +51,18 @@ All infrastructure that someone can cycle over, accompanied with questions about - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [blind_osm](https://mapcomplete.org/blind_osm) - - [cycle_infra](https://mapcomplete.org/cycle_infra) - - [cyclenodes](https://mapcomplete.org/cyclenodes) - - [kerbs_and_crossings](https://mapcomplete.org/kerbs_and_crossings) - - [onwheels](https://mapcomplete.org/onwheels) - - [personal](https://mapcomplete.org/personal) - - [rainbow_crossings](https://mapcomplete.org/rainbow_crossings) - - [walkingnodes](https://mapcomplete.org/walkingnodes) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [blind_osm](https://mapcomplete.org/blind_osm) + - [cycle_infra](https://mapcomplete.org/cycle_infra) + - [cyclenodes](https://mapcomplete.org/cyclenodes) + - [kerbs_and_crossings](https://mapcomplete.org/kerbs_and_crossings) + - [onwheels](https://mapcomplete.org/onwheels) + - [personal](https://mapcomplete.org/personal) + - [rainbow_crossings](https://mapcomplete.org/rainbow_crossings) + - [walkingnodes](https://mapcomplete.org/walkingnodes) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -107,37 +87,30 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22cyclestreet%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22cycleway%22%3D%22lane%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22cycleway%22%3D%22shared_lane%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22cycleway%22%3D%22track%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22cycleway%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22residential%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22tertiary%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22unclassified%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22primary%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22secondary%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22tertiary_link%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22primary_link%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22secondary_link%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22service%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22footway%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22pedestrian%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22living_street%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22bicycle%22%3D%22designated%22%5D%5B%22highway%22%3D%22path%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [nat](../SpecialInputElements.md#nat) | [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [slope](../SpecialInputElements.md#slope) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [distance](../SpecialInputElements.md#distance) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [distance](../SpecialInputElements.md#distance) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/cycleway#values) [cycleway](https://wiki.openstreetmap.org/wiki/Key:cycleway) | Multiple choice | [shared_lane](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dshared_lane) [lane](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dlane) [track](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dtrack) [separate](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dseparate) [no](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dno) [no](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dno) -[](https://taginfo.openstreetmap.org/keys/lit#values) [lit](https://wiki.openstreetmap.org/wiki/Key:lit) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno) [24/7](https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7) -[](https://taginfo.openstreetmap.org/keys/cyclestreet#values) [cyclestreet](https://wiki.openstreetmap.org/wiki/Key:cyclestreet) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes) [](https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3D) -[](https://taginfo.openstreetmap.org/keys/maxspeed#values) [maxspeed](https://wiki.openstreetmap.org/wiki/Key:maxspeed) | [nat](../SpecialInputElements.md#nat) | [20](https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D20) [30](https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D30) [50](https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D50) [70](https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D70) [90](https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D90) -[](https://taginfo.openstreetmap.org/keys/cycleway:surface#values) [cycleway:surface](https://wiki.openstreetmap.org/wiki/Key:cycleway:surface) | [string](../SpecialInputElements.md#string) | [asphalt](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dasphalt) [paving_stones](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dpaving_stones) [concrete](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dconcrete) [unhewn_cobblestone](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dunhewn_cobblestone) [sett](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dsett) [wood](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dwood) [gravel](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dgravel) [fine_gravel](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dfine_gravel) [pebblestone](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dpebblestone) [ground](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dground) -[](https://taginfo.openstreetmap.org/keys/incline#values) [incline](https://wiki.openstreetmap.org/wiki/Key:incline) | [slope](../SpecialInputElements.md#slope) | -[](https://taginfo.openstreetmap.org/keys/cycleway:smoothness#values) [cycleway:smoothness](https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness) | Multiple choice | [excellent](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dexcellent) [good](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dgood) [intermediate](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dintermediate) [bad](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dbad) [very_bad](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dvery_bad) [horrible](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dhorrible) [very_horrible](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dvery_horrible) [impassable](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dimpassable) -[](https://taginfo.openstreetmap.org/keys/surface#values) [surface](https://wiki.openstreetmap.org/wiki/Key:surface) | [string](../SpecialInputElements.md#string) | [asphalt](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dasphalt) [paving_stones](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaving_stones) [concrete](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dconcrete) [unhewn_cobblestone](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dunhewn_cobblestone) [sett](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dsett) [wood](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dwood) [gravel](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dgravel) [fine_gravel](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dfine_gravel) [pebblestone](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpebblestone) [ground](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dground) -[](https://taginfo.openstreetmap.org/keys/smoothness#values) [smoothness](https://wiki.openstreetmap.org/wiki/Key:smoothness) | Multiple choice | [excellent](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dexcellent) [good](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dgood) [intermediate](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dintermediate) [bad](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dbad) [very_bad](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dvery_bad) [horrible](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dhorrible) [very_horrible](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dvery_horrible) [impassable](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dimpassable) -[](https://taginfo.openstreetmap.org/keys/width:carriageway#values) [width:carriageway](https://wiki.openstreetmap.org/wiki/Key:width:carriageway) | [distance](../SpecialInputElements.md#distance) | -[](https://taginfo.openstreetmap.org/keys/cycleway:traffic_sign#values) [cycleway:traffic_sign](https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign) | Multiple choice | [BE:D7](https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7) [BE:D9](https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D9) [BE:D10](https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D10) [none](https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3Dnone) -[](https://taginfo.openstreetmap.org/keys/traffic_sign#values) [traffic_sign](https://wiki.openstreetmap.org/wiki/Key:traffic_sign) | Multiple choice | [BE:D7](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D7) [BE:D9](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D9) [BE:D10](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D10) [NL:G11](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DNL:G11) [NL:G12a](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DNL:G12a) [NL:G13](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DNL:G13) [none](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3Dnone) -[](https://taginfo.openstreetmap.org/keys/cycleway:buffer#values) [cycleway:buffer](https://wiki.openstreetmap.org/wiki/Key:cycleway:buffer) | [distance](../SpecialInputElements.md#distance) | -[](https://taginfo.openstreetmap.org/keys/cycleway:separation#values) [cycleway:separation](https://wiki.openstreetmap.org/wiki/Key:cycleway:separation) | Multiple choice | [dashed_line](https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Ddashed_line) [solid_line](https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dsolid_line) [parking_lane](https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dparking_lane) [kerb](https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dkerb) -[](https://taginfo.openstreetmap.org/keys/separation#values) [separation](https://wiki.openstreetmap.org/wiki/Key:separation) | Multiple choice | [dashed_line](https://wiki.openstreetmap.org/wiki/Tag:separation%3Ddashed_line) [solid_line](https://wiki.openstreetmap.org/wiki/Tag:separation%3Dsolid_line) [parking_lane](https://wiki.openstreetmap.org/wiki/Tag:separation%3Dparking_lane) [kerb](https://wiki.openstreetmap.org/wiki/Tag:separation%3Dkerb) ### just_created @@ -477,6 +450,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/cycleways_and_roads/cycleways_and_roads.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/cycleways_and_roads/cycleways_and_roads.json) diff --git a/Docs/Layers/defibrillator.md b/Docs/Layers/defibrillator.md index 81dd8918835..1d8c8cb24d6 100644 --- a/Docs/Layers/defibrillator.md +++ b/Docs/Layers/defibrillator.md @@ -1,31 +1,22 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# defibrillator - defibrillator -=============== - - - - +[object Object] A layer showing defibrillators which can be used in case of emergency. This contains public defibrillators, but also defibrillators which might need staff to fetch the actual device - - - - This layer is shown at zoomlevel **12** and higher - - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[1]) - - - + - This layer is shown at zoomlevel **12** and higher + - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[1]) ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -57,59 +48,41 @@ A layer showing defibrillators which can be used in case of emergency. This cont - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [aed](https://mapcomplete.org/aed) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [aed](https://mapcomplete.org/aed) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **emergency=defibrillator** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22emergency%22%3D%22defibrillator%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [int](../SpecialInputElements.md#int) | [object Object] [object Object] | +| ] [object Object] | [text](../SpecialInputElements.md#text) | | +| ] [object Object] | [text](../SpecialInputElements.md#text) | | +| ] [object Object] | [text](../SpecialInputElements.md#text) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [text](../SpecialInputElements.md#text) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | [object Object] | +| ] [object Object] | [text](../SpecialInputElements.md#text) | | +| ] [object Object] | [date](../SpecialInputElements.md#date) | [object Object] | +| ] [object Object] | [text](../SpecialInputElements.md#text) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/indoor#values) [indoor](https://wiki.openstreetmap.org/wiki/Key:indoor) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno) -[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) [no](https://wiki.openstreetmap.org/wiki/Tag:access%3Dno) -[](https://taginfo.openstreetmap.org/keys/defibrillator#values) [defibrillator](https://wiki.openstreetmap.org/wiki/Key:defibrillator) | Multiple choice | [manual](https://wiki.openstreetmap.org/wiki/Tag:defibrillator%3Dmanual) [automatic](https://wiki.openstreetmap.org/wiki/Tag:defibrillator%3Dautomatic) -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [int](../SpecialInputElements.md#int) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) -[](https://taginfo.openstreetmap.org/keys/defibrillator:location#values) [defibrillator:location](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location) | [text](../SpecialInputElements.md#text) | -[](https://taginfo.openstreetmap.org/keys/defibrillator:location:en#values) [defibrillator:location:en](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location:en) | [text](../SpecialInputElements.md#text) | -[](https://taginfo.openstreetmap.org/keys/defibrillator:location:fr#values) [defibrillator:location:fr](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location:fr) | [text](../SpecialInputElements.md#text) | -[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) -[](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [text](../SpecialInputElements.md#text) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) -[](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [text](../SpecialInputElements.md#text) | -[](https://taginfo.openstreetmap.org/keys/survey:date#values) [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D) -[](https://taginfo.openstreetmap.org/keys/fixme#values) [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme) | [text](../SpecialInputElements.md#text) | ### just_created @@ -393,26 +366,26 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| has_image.0 | *With and without images* (default) | | +| has_image.1 | Has at least one image | image~.+ | image:0~.+ | image:1~.+ | image:2~.+ | image:3~.+ | mapillary~.+ | +| has_image.2 | Probably does not have an image | image= & image:0= & image:1= & image:2= & image:3= & mapillary= | -id | question | osmTags ----- | ---------- | --------- -has_image.0 | With and without images (default) | -has_image.1 | Has at least one image | image~.+ \| image:0~.+ \| image:1~.+ \| image:2~.+ \| image:3~.+ \| mapillary~.+ -has_image.2 | Probably does not have an image | image= & image:0= & image:1= & image:2= & image:3= & mapillary= + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes - - This document is autogenerated from [assets/layers/defibrillator/defibrillator.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/defibrillator/defibrillator.json) diff --git a/Docs/Layers/dentist.md b/Docs/Layers/dentist.md index 7153c7d59fb..c21778ba8c0 100644 --- a/Docs/Layers/dentist.md +++ b/Docs/Layers/dentist.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# dentist - dentist -========= - - - - +[object Object] This layer shows dentist offices - - - - This layer is shown at zoomlevel **13** and higher - - - + - This layer is shown at zoomlevel **13** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -46,49 +37,31 @@ This layer shows dentist offices - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [healthcare](https://mapcomplete.org/healthcare) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [healthcare](https://mapcomplete.org/healthcare) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **amenity=dentist** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22dentist%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | ### just_created @@ -270,17 +243,15 @@ _This tagrendering has no question and is thus read-only_ - - -#### Filters +#### Filters +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | + -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes - This document is autogenerated from [assets/layers/dentist/dentist.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/dentist/dentist.json) diff --git a/Docs/Layers/direction.md b/Docs/Layers/direction.md index d74688a93ec..3e743d61022 100644 --- a/Docs/Layers/direction.md +++ b/Docs/Layers/direction.md @@ -1,32 +1,23 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# direction - direction -=========== - - - - +[object Object] This layer visualizes directions - - - - This layer is shown at zoomlevel **16** and higher - - Elements don't have a title set and cannot be toggled nor will they show up in the dashboard. If you import this layer in your theme, override `title` to make this toggleable. - + - This layer is shown at zoomlevel **16** and higher + - Elements don't have a title set and cannot be toggled nor will they show up in the dashboard. If you import this layer in your theme, override `title` to make this toggleable. No themes use this layer - - ## Table of contents -1. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -2. [ Supported attributes ](#-supported-attributes-) +1. [Basic tags for this layer](#basic-tags-for-this-layer) +2. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [leftover-questions](#leftover-questions) @@ -38,10 +29,7 @@ No themes use this layer - [last_edit](#last_edit) - [all-tags](#all-tags) - Basic tags for this layer ---------------------------- - - +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -50,22 +38,15 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22camera%3Adirection%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22direction%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | ### just_created @@ -153,6 +134,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/direction/direction.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/direction/direction.json) diff --git a/Docs/Layers/disaster_response.md b/Docs/Layers/disaster_response.md index 77fcce4f3c5..c8744fb9004 100644 --- a/Docs/Layers/disaster_response.md +++ b/Docs/Layers/disaster_response.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# disaster_response - disaster_response -=================== - - - - +[object Object] This layer contains organizations that have the main objective to help the civil population during and after natural or anthropogenic disasters by working in the affected area. - - - - This layer is shown at zoomlevel **10** and higher - - - + - This layer is shown at zoomlevel **10** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -40,46 +31,28 @@ This layer contains organizations that have the main objective to help the civil - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [disaster_response](https://mapcomplete.org/disaster_response) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [disaster_response](https://mapcomplete.org/disaster_response) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **emergency=disaster_response** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22emergency%22%3D%22disaster_response%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | ### just_created @@ -206,6 +179,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/disaster_response/disaster_response.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/disaster_response/disaster_response.json) diff --git a/Docs/Layers/doctors.md b/Docs/Layers/doctors.md index 362cabe4218..d339c96a5e4 100644 --- a/Docs/Layers/doctors.md +++ b/Docs/Layers/doctors.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# doctors - doctors -========= - - - - +[object Object] This layer shows doctor offices - - - - This layer is shown at zoomlevel **13** and higher - - - + - This layer is shown at zoomlevel **13** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -47,51 +38,33 @@ This layer shows doctor offices - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [healthcare](https://mapcomplete.org/healthcare) - - [onwheels](https://mapcomplete.org/onwheels) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [healthcare](https://mapcomplete.org/healthcare) + - [onwheels](https://mapcomplete.org/onwheels) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **amenity=doctors** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22doctors%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/healthcare:speciality#values) [healthcare:speciality](https://wiki.openstreetmap.org/wiki/Key:healthcare:speciality) | [string](../SpecialInputElements.md#string) | [general](https://wiki.openstreetmap.org/wiki/Tag:healthcare:speciality%3Dgeneral) [gynaecology](https://wiki.openstreetmap.org/wiki/Tag:healthcare:speciality%3Dgynaecology) [psychiatry](https://wiki.openstreetmap.org/wiki/Tag:healthcare:speciality%3Dpsychiatry) [paediatrics](https://wiki.openstreetmap.org/wiki/Tag:healthcare:speciality%3Dpaediatrics) ### just_created @@ -288,17 +261,15 @@ _This tagrendering has no question and is thus read-only_ - - -#### Filters +#### Filters +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | + -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes - This document is autogenerated from [assets/layers/doctors/doctors.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/doctors/doctors.json) diff --git a/Docs/Layers/dogfoodb.md b/Docs/Layers/dogfoodb.md index 6a4d66ac6a4..ad5e1f64186 100644 --- a/Docs/Layers/dogfoodb.md +++ b/Docs/Layers/dogfoodb.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# dogfoodb - dogfoodb -========== - - - - +[object Object] A layer showing restaurants and fast-food amenities (with a special rendering for friteries) - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -74,22 +65,11 @@ A layer showing restaurants and fast-food amenities (with a special rendering fo - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [pets](https://mapcomplete.org/pets) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [pets](https://mapcomplete.org/pets) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -98,52 +78,45 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22dog%22%3D%22unleashed%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22dog%22%3D%22leashed%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22dog%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B%22dog%22%3D%22unleashed%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B%22dog%22%3D%22leashed%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B%22dog%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/amenity#values) [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [fast_food](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfast_food) [restaurant](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant) -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) -[](https://taginfo.openstreetmap.org/keys/cuisine#values) [cuisine](https://wiki.openstreetmap.org/wiki/Key:cuisine) | [string](../SpecialInputElements.md#string) | [pizza](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpizza) [friture](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture) [pasta](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpasta) [kebab](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dkebab) [sandwich](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsandwich) [burger](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dburger) [sushi](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsushi) [coffee](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dcoffee) [italian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Ditalian) [french](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfrench) [chinese](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchinese) [greek](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dgreek) [indian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dindian) [turkish](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dturkish) [thai](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dthai) -[](https://taginfo.openstreetmap.org/keys/reservation#values) [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) -[](https://taginfo.openstreetmap.org/keys/takeaway#values) [takeaway](https://wiki.openstreetmap.org/wiki/Key:takeaway) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dno) -[](https://taginfo.openstreetmap.org/keys/delivery#values) [delivery](https://wiki.openstreetmap.org/wiki/Key:delivery) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:vegetarian#values) [diet:vegetarian](https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Donly) [on_demand](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Don_demand) -[](https://taginfo.openstreetmap.org/keys/diet:vegan#values) [diet:vegan](https://wiki.openstreetmap.org/wiki/Key:diet:vegan) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Donly) [on_demand](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Don_demand) -[](https://taginfo.openstreetmap.org/keys/diet:halal#values) [diet:halal](https://wiki.openstreetmap.org/wiki/Key:diet:halal) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Donly) -[](https://taginfo.openstreetmap.org/keys/diet:sugar_free#values) [diet:sugar_free](https://wiki.openstreetmap.org/wiki/Key:diet:sugar_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:gluten_free#values) [diet:gluten_free](https://wiki.openstreetmap.org/wiki/Key:diet:gluten_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:lactose_free#values) [diet:lactose_free](https://wiki.openstreetmap.org/wiki/Key:diet:lactose_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dno) -[](https://taginfo.openstreetmap.org/keys/organic#values) [organic](https://wiki.openstreetmap.org/wiki/Key:organic) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:organic%3Donly) -[](https://taginfo.openstreetmap.org/keys/diet:vegetarian#values) [diet:vegetarian](https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:vegan#values) [diet:vegan](https://wiki.openstreetmap.org/wiki/Key:diet:vegan) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno) -[](https://taginfo.openstreetmap.org/keys/organic#values) [organic](https://wiki.openstreetmap.org/wiki/Key:organic) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:organic%3Donly) -[](https://taginfo.openstreetmap.org/keys/friture:oil#values) [friture:oil](https://wiki.openstreetmap.org/wiki/Key:friture:oil) | Multiple choice | [vegetable](https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Dvegetable) [animal](https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Danimal) -[](https://taginfo.openstreetmap.org/keys/reusable_packaging:accept#values) [reusable_packaging:accept](https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Donly) -[](https://taginfo.openstreetmap.org/keys/smoking#values) [smoking](https://wiki.openstreetmap.org/wiki/Key:smoking) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Dno) [outside](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Doutside) -[](https://taginfo.openstreetmap.org/keys/service:electricity#values) [service:electricity](https://wiki.openstreetmap.org/wiki/Key:service:electricity) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dlimited) [ask](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask) [no](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno) -[](https://taginfo.openstreetmap.org/keys/dog#values) [dog](https://wiki.openstreetmap.org/wiki/Key:dog) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno) [leashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed) [unleashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed) [outside](https://wiki.openstreetmap.org/wiki/Tag:dog%3Doutside) -[](https://taginfo.openstreetmap.org/keys/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired) -[](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers) -[](https://taginfo.openstreetmap.org/keys/internet_access:ssid#values) [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom) ### just_created @@ -645,117 +618,139 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes + +| id | question | osmTags | +-----|-----|----- | +| reservation.0 | Reservation not required | reservation=no | reservation=optional | reservation= | -id | question | osmTags ----- | ---------- | --------- -reservation.0 | Reservation not required | reservation=no \| reservation=optional \| reservation= + + +| id | question | osmTags | +-----|-----|----- | +| food-category.0 | *Restaurants and fast food businesses* (default) | | +| food-category.1 | Only fastfood businesses | amenity=fast_food | +| food-category.2 | Only restaurants | amenity=restaurant | -id | question | osmTags ----- | ---------- | --------- -food-category.0 | Restaurants and fast food businesses (default) | -food-category.1 | Only fastfood businesses | amenity=fast_food -food-category.2 | Only restaurants | amenity=restaurant + + +| id | question | osmTags | +-----|-----|----- | +| vegetarian.0 | Has a vegetarian menu | diet:vegetarian=yes | diet:vegetarian=only | diet:vegan=yes | diet:vegan=only | -id | question | osmTags ----- | ---------- | --------- -vegetarian.0 | Has a vegetarian menu | diet:vegetarian=yes \| diet:vegetarian=only \| diet:vegan=yes \| diet:vegan=only + + +| id | question | osmTags | +-----|-----|----- | +| vegan.0 | Has a vegan menu | diet:vegan=yes | diet:vegan=only | -id | question | osmTags ----- | ---------- | --------- -vegan.0 | Has a vegan menu | diet:vegan=yes \| diet:vegan=only + + +| id | question | osmTags | +-----|-----|----- | +| halal.0 | Has a halal menu | diet:halal=yes | diet:halal=only | -id | question | osmTags ----- | ---------- | --------- -halal.0 | Has a halal menu | diet:halal=yes \| diet:halal=only + + +| id | question | osmTags | +-----|-----|----- | +| has_organic.0 | Has organic options | organic=yes | organic=only | -id | question | osmTags ----- | ---------- | --------- -has_organic.0 | Has organic options | organic=yes \| organic=only + + +| id | question | osmTags | +-----|-----|----- | +| sugar_free.0 | *All types* (default) | | +| sugar_free.1 | This shop only sells sugar free products | diet:sugar_free=only | +| sugar_free.2 | This shop has a big sugar free offering | diet:sugar_free=yes | +| sugar_free.3 | This shop has a limited sugar free offering | diet:sugar_free=limited | +| sugar_free.4 | This shop has no sugar free offering | diet:sugar_free=no | -id | question | osmTags ----- | ---------- | --------- -sugar_free.0 | All types (default) | -sugar_free.1 | This shop only sells sugar free products | diet:sugar_free=only -sugar_free.2 | This shop has a big sugar free offering | diet:sugar_free=yes -sugar_free.3 | This shop has a limited sugar free offering | diet:sugar_free=limited -sugar_free.4 | This shop has no sugar free offering | diet:sugar_free=no + + +| id | question | osmTags | +-----|-----|----- | +| gluten_free.0 | *All types* (default) | | +| gluten_free.1 | This shop only sells gluten free products | diet:gluten_free=only | +| gluten_free.2 | This shop has a big gluten free offering | diet:gluten_free=yes | +| gluten_free.3 | This shop has a limited gluten free offering | diet:gluten_free=limited | +| gluten_free.4 | This shop has no gluten free offering | diet:gluten_free=no | -id | question | osmTags ----- | ---------- | --------- -gluten_free.0 | All types (default) | -gluten_free.1 | This shop only sells gluten free products | diet:gluten_free=only -gluten_free.2 | This shop has a big gluten free offering | diet:gluten_free=yes -gluten_free.3 | This shop has a limited gluten free offering | diet:gluten_free=limited -gluten_free.4 | This shop has no gluten free offering | diet:gluten_free=no + + +| id | question | osmTags | +-----|-----|----- | +| lactose_free.0 | *All types* (default) | | +| lactose_free.1 | Only sells lactose free products | diet:lactose_free=only | +| lactose_free.2 | Big lactose free offering | diet:lactose_free=yes | +| lactose_free.3 | Limited lactose free offering | diet:lactose_free=limited | +| lactose_free.4 | No lactose free offering | diet:lactose_free=no | -id | question | osmTags ----- | ---------- | --------- -lactose_free.0 | All types (default) | -lactose_free.1 | Only sells lactose free products | diet:lactose_free=only -lactose_free.2 | Big lactose free offering | diet:lactose_free=yes -lactose_free.3 | Limited lactose free offering | diet:lactose_free=limited -lactose_free.4 | No lactose free offering | diet:lactose_free=no + + +| id | question | osmTags | +-----|-----|----- | +| accepts_cash.0 | Accepts cash | payment:cash=yes | -id | question | osmTags ----- | ---------- | --------- -accepts_cash.0 | Accepts cash | payment:cash=yes + + +| id | question | osmTags | +-----|-----|----- | +| accepts_cards.0 | Accepts payment cards | payment:cards=yes | -id | question | osmTags ----- | ---------- | --------- -accepts_cards.0 | Accepts payment cards | payment:cards=yes + + +| id | question | osmTags | +-----|-----|----- | +| dogs.0 | *No preference towards dogs* (default) | | +| dogs.1 | Dogs allowed | dog=unleashed | dog=yes | +| dogs.2 | No dogs allowed | dog=no | -id | question | osmTags ----- | ---------- | --------- -dogs.0 | No preference towards dogs (default) | -dogs.1 | Dogs allowed | dog=unleashed \| dog=yes -dogs.2 | No dogs allowed | dog=no - - This document is autogenerated from [assets/themes/pets/pets.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/pets/pets.json) diff --git a/Docs/Layers/dogpark.md b/Docs/Layers/dogpark.md index 4f86f0d68a3..6d5fbfdf24b 100644 --- a/Docs/Layers/dogpark.md +++ b/Docs/Layers/dogpark.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# dogpark - dogpark -========= - - - - +[object Object] A layer showing dogparks, which are areas where dog are allowed to run without a leash - - - - This layer is shown at zoomlevel **10** and higher - - - + - This layer is shown at zoomlevel **10** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -45,23 +36,12 @@ A layer showing dogparks, which are areas where dog are allowed to run without a - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [personal](https://mapcomplete.org/personal) - - [pets](https://mapcomplete.org/pets) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [personal](https://mapcomplete.org/personal) + - [pets](https://mapcomplete.org/pets) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -70,27 +50,20 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22leisure%22%3D%22dog_park%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22dog%22%3D%22unleashed%22%5D%5B%22leisure%22%3D%22park%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | [object Object] | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/barrier#values) [barrier](https://wiki.openstreetmap.org/wiki/Key:barrier) | Multiple choice | [fence](https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dfence) [no](https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dno) -[](https://taginfo.openstreetmap.org/keys/small_dog#values) [small_dog](https://wiki.openstreetmap.org/wiki/Key:small_dog) | Multiple choice | [separate](https://wiki.openstreetmap.org/wiki/Tag:small_dog%3Dseparate) [shared](https://wiki.openstreetmap.org/wiki/Tag:small_dog%3Dshared) ### just_created @@ -263,6 +236,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/dogpark/dogpark.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/dogpark/dogpark.json) diff --git a/Docs/Layers/dogshop.md b/Docs/Layers/dogshop.md index 0b9a110f8ae..67d6e7359e8 100644 --- a/Docs/Layers/dogshop.md +++ b/Docs/Layers/dogshop.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# dogshop - dogshop -========= - - - - +[object Object] A shop - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -63,22 +54,11 @@ A shop - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [pets](https://mapcomplete.org/pets) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [pets](https://mapcomplete.org/pets) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -87,39 +67,32 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22dog%22%3D%22leashed%22%5D%5B%22shop%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22dog%22%3D%22yes%22%5D%5B%22shop%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22shop%22%3D%22pet%22%5D%5B%22shop%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/shop#values) [shop](https://wiki.openstreetmap.org/wiki/Key:shop) | [string](../SpecialInputElements.md#string) | [vacant](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvacant) [agrarian](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dagrarian) [alcohol](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dalcohol) [anime](https://wiki.openstreetmap.org/wiki/Tag:shop%3Danime) [antiques](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dantiques) [appliance](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dappliance) [art](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dart) [baby_goods](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbaby_goods) [bag](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbag) [bakery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbakery) [bathroom_furnishing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbathroom_furnishing) [beauty](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbeauty) [bed](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbed) [beverages](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbeverages) [bicycle](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbicycle) [boat](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dboat) [bookmaker](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbookmaker) [books](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbooks) [brewing_supplies](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbrewing_supplies) [butcher](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbutcher) [camera](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcamera) [candles](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcandles) [cannabis](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcannabis) [car](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar) [car_parts](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar_parts) [car_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar_repair) [caravan](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcaravan) [carpet](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcarpet) [catalogue](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcatalogue) [charity](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcharity) [cheese](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcheese) [chemist](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dchemist) [chocolate](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dchocolate) [clothes](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dclothes) [coffee](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcoffee) [collector](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcollector) [computer](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcomputer) [confectionery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dconfectionery) [convenience](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dconvenience) [copyshop](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcopyshop) [cosmetics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcosmetics) [country_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcountry_store) [craft](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcraft) [curtain](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcurtain) [dairy](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddairy) [deli](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddeli) [department_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddepartment_store) [doityourself](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddoityourself) [doors](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddoors) [dry_cleaning](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddry_cleaning) [e-cigarette](https://wiki.openstreetmap.org/wiki/Tag:shop%3De-cigarette) [electrical](https://wiki.openstreetmap.org/wiki/Tag:shop%3Delectrical) [electronics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Delectronics) [erotic](https://wiki.openstreetmap.org/wiki/Tag:shop%3Derotic) [fabric](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfabric) [farm](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfarm) [fashion_accessories](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfashion_accessories) [fireplace](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfireplace) [fishing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfishing) [flooring](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dflooring) [florist](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dflorist) [frame](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dframe) [frozen_food](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfrozen_food) [fuel](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfuel) [funeral_directors](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfuneral_directors) [furniture](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfurniture) [games](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgames) [garden_centre](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgarden_centre) [gas](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgas) [general](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgeneral) [gift](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgift) [greengrocer](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgreengrocer) [hairdresser](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhairdresser) [hairdresser_supply](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhairdresser_supply) [hardware](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhardware) [health_food](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhealth_food) [hearing_aids](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhearing_aids) [herbalist](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dherbalist) [hifi](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhifi) [honey](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhoney) [household_linen](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhousehold_linen) [houseware](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhouseware) [hunting](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhunting) [interior_decoration](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dinterior_decoration) [jewelry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Djewelry) [kiosk](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dkiosk) [kitchen](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dkitchen) [laundry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlaundry) [leather](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dleather) [lighting](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlighting) [locksmith](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlocksmith) [lottery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlottery) [mall](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmall) [massage](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmassage) [medical_supply](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmedical_supply) [military_surplus](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmilitary_surplus) [mobile_phone](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmobile_phone) [model](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmodel) [money_lender](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmoney_lender) [motorcycle](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmotorcycle) [motorcycle_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmotorcycle_repair) [music](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmusic) [musical_instrument](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmusical_instrument) [newsagent](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dnewsagent) [nutrition_supplements](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dnutrition_supplements) [nuts](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dnuts) [optician](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doptician) [outdoor](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doutdoor) [outpost](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doutpost) [paint](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpaint) [party](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dparty) [pasta](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpasta) [pastry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpastry) [pawnbroker](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpawnbroker) [perfumery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dperfumery) [pet](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpet) [pet_grooming](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpet_grooming) [photo](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dphoto) [pottery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpottery) [printer_ink](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dprinter_ink) [psychic](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpsychic) [pyrotechnics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpyrotechnics) [radiotechnics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dradiotechnics) [religion](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dreligion) [rental](https://wiki.openstreetmap.org/wiki/Tag:shop%3Drental) [repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Drepair) [rice](https://wiki.openstreetmap.org/wiki/Tag:shop%3Drice) [scuba_diving](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dscuba_diving) [seafood](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dseafood) [second_hand](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsecond_hand) [sewing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsewing) [shoe_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dshoe_repair) [shoes](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dshoes) [spices](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dspices) [sports](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsports) [stationery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dstationery) [storage_rental](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dstorage_rental) [supermarket](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsupermarket) [swimming_pool](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dswimming_pool) [tailor](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtailor) [tattoo](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtattoo) [tea](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtea) [telecommunication](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtelecommunication) [ticket](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dticket) [tiles](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtiles) [tobacco](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtobacco) [tool_hire](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtool_hire) [toys](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtoys) [trade](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtrade) [travel_agency](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtravel_agency) [trophy](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtrophy) [tyres](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtyres) [vacuum_cleaner](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvacuum_cleaner) [variety_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvariety_store) [video](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvideo) [video_games](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvideo_games) [watches](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwatches) [water](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwater) [water_sports](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwater_sports) [weapons](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dweapons) [wholesale](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwholesale) [wigs](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwigs) [window_blind](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwindow_blind) [wine](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwine) -[](https://taginfo.openstreetmap.org/keys/brand#values) [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/second_hand#values) [second_hand](https://wiki.openstreetmap.org/wiki/Key:second_hand) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:second_hand%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:second_hand%3Dno) -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/service:binding#values) [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) -[](https://taginfo.openstreetmap.org/keys/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired) -[](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers) -[](https://taginfo.openstreetmap.org/keys/internet_access:ssid#values) [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom) -[](https://taginfo.openstreetmap.org/keys/organic#values) [organic](https://wiki.openstreetmap.org/wiki/Key:organic) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:organic%3Donly) [no](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:sugar_free#values) [diet:sugar_free](https://wiki.openstreetmap.org/wiki/Key:diet:sugar_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:gluten_free#values) [diet:gluten_free](https://wiki.openstreetmap.org/wiki/Key:diet:gluten_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:lactose_free#values) [diet:lactose_free](https://wiki.openstreetmap.org/wiki/Key:diet:lactose_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dno) ### just_created @@ -659,92 +632,108 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes + +| id | question | osmTags | fields | +-----|-----|-----|----- | +| shop-type.0 | Only show shops selling {search} | | search (string) | -id | question | osmTags | fields ----- | ---------- | --------- | -------- -shop-type.0 | Only show shops selling {search} | | search (string) + + +| id | question | osmTags | fields | +-----|-----|-----|----- | +| shop-name.0 | Only show shops with name {search} | | search (string) | -id | question | osmTags | fields ----- | ---------- | --------- | -------- -shop-name.0 | Only show shops with name {search} | | search (string) + + +| id | question | osmTags | +-----|-----|----- | +| accepts_cash.0 | Accepts cash | payment:cash=yes | -id | question | osmTags ----- | ---------- | --------- -accepts_cash.0 | Accepts cash | payment:cash=yes + + +| id | question | osmTags | +-----|-----|----- | +| accepts_cards.0 | Accepts payment cards | payment:cards=yes | -id | question | osmTags ----- | ---------- | --------- -accepts_cards.0 | Accepts payment cards | payment:cards=yes + + +| id | question | osmTags | +-----|-----|----- | +| has_organic.0 | Has organic options | organic=yes | organic=only | -id | question | osmTags ----- | ---------- | --------- -has_organic.0 | Has organic options | organic=yes \| organic=only + + +| id | question | osmTags | +-----|-----|----- | +| second_hand.0 | Only show shops selling second-hand items | shop=second_hand | shop=charity | second_hand=yes | second_hand=only | -id | question | osmTags ----- | ---------- | --------- -second_hand.0 | Only show shops selling second-hand items | shop=second_hand \| shop=charity \| second_hand=yes \| second_hand=only + + +| id | question | osmTags | +-----|-----|----- | +| sugar_free.0 | *All types* (default) | | +| sugar_free.1 | This shop only sells sugar free products | diet:sugar_free=only | +| sugar_free.2 | This shop has a big sugar free offering | diet:sugar_free=yes | +| sugar_free.3 | This shop has a limited sugar free offering | diet:sugar_free=limited | +| sugar_free.4 | This shop has no sugar free offering | diet:sugar_free=no | -id | question | osmTags ----- | ---------- | --------- -sugar_free.0 | All types (default) | -sugar_free.1 | This shop only sells sugar free products | diet:sugar_free=only -sugar_free.2 | This shop has a big sugar free offering | diet:sugar_free=yes -sugar_free.3 | This shop has a limited sugar free offering | diet:sugar_free=limited -sugar_free.4 | This shop has no sugar free offering | diet:sugar_free=no + + +| id | question | osmTags | +-----|-----|----- | +| gluten_free.0 | *All types* (default) | | +| gluten_free.1 | This shop only sells gluten free products | diet:gluten_free=only | +| gluten_free.2 | This shop has a big gluten free offering | diet:gluten_free=yes | +| gluten_free.3 | This shop has a limited gluten free offering | diet:gluten_free=limited | +| gluten_free.4 | This shop has no gluten free offering | diet:gluten_free=no | -id | question | osmTags ----- | ---------- | --------- -gluten_free.0 | All types (default) | -gluten_free.1 | This shop only sells gluten free products | diet:gluten_free=only -gluten_free.2 | This shop has a big gluten free offering | diet:gluten_free=yes -gluten_free.3 | This shop has a limited gluten free offering | diet:gluten_free=limited -gluten_free.4 | This shop has no gluten free offering | diet:gluten_free=no + + +| id | question | osmTags | +-----|-----|----- | +| lactose_free.0 | *All types* (default) | | +| lactose_free.1 | Only sells lactose free products | diet:lactose_free=only | +| lactose_free.2 | Big lactose free offering | diet:lactose_free=yes | +| lactose_free.3 | Limited lactose free offering | diet:lactose_free=limited | +| lactose_free.4 | No lactose free offering | diet:lactose_free=no | -id | question | osmTags ----- | ---------- | --------- -lactose_free.0 | All types (default) | -lactose_free.1 | Only sells lactose free products | diet:lactose_free=only -lactose_free.2 | Big lactose free offering | diet:lactose_free=yes -lactose_free.3 | Limited lactose free offering | diet:lactose_free=limited -lactose_free.4 | No lactose free offering | diet:lactose_free=no - - This document is autogenerated from [assets/themes/pets/pets.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/pets/pets.json) diff --git a/Docs/Layers/drinking_water.md b/Docs/Layers/drinking_water.md index cc6361269c2..735af805717 100644 --- a/Docs/Layers/drinking_water.md +++ b/Docs/Layers/drinking_water.md @@ -1,32 +1,23 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# drinking_water - drinking_water -================ - - - - +[object Object] A layer showing drinking water fountains - - - - This layer is shown at zoomlevel **12** and higher - - This layer will automatically load [drinking_water](./drinking_water.md) into the layout as it depends on it: a calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _closest_other_drinking_water) - - This layer is needed as dependency for layer [drinking_water](#drinking_water) - - - + - This layer is shown at zoomlevel **12** and higher + - This layer will automatically load [drinking_water](./drinking_water.md) into the layout as it depends on it: a calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _closest_other_drinking_water) + - This layer is needed as dependency for layer [drinking_water](#drinking_water) ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -55,28 +46,17 @@ A layer showing drinking water fountains - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [climbing](https://mapcomplete.org/climbing) - - [cyclofix](https://mapcomplete.org/cyclofix) - - [drinking_water](https://mapcomplete.org/drinking_water) - - [nature](https://mapcomplete.org/nature) - - [personal](https://mapcomplete.org/personal) - - [ski](https://mapcomplete.org/ski) - - [stations](https://mapcomplete.org/stations) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [climbing](https://mapcomplete.org/climbing) + - [cyclofix](https://mapcomplete.org/cyclofix) + - [drinking_water](https://mapcomplete.org/drinking_water) + - [nature](https://mapcomplete.org/nature) + - [personal](https://mapcomplete.org/personal) + - [ski](https://mapcomplete.org/ski) + - [stations](https://mapcomplete.org/stations) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -87,32 +67,25 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22drinking_water%22%5D%5B%22man_made%22!%3D%22reservoir_covered%22%5D%5B%22access%22!%3D%22permissive%22%5D%5B%22access%22!%3D%22private%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22disused%3Aamenity%22%3D%22drinking_water%22%5D%5B%22man_made%22!%3D%22reservoir_covered%22%5D%5B%22access%22!%3D%22permissive%22%5D%5B%22access%22!%3D%22private%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22drinking_water%22%3D%22yes%22%5D%5B%22man_made%22!%3D%22reservoir_covered%22%5D%5B%22access%22!%3D%22permissive%22%5D%5B%22access%22!%3D%22private%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [wikidata](../SpecialInputElements.md#wikidata) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [wikidata](../SpecialInputElements.md#wikidata) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/operational_status#values) [operational_status](https://wiki.openstreetmap.org/wiki/Key:operational_status) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3D) [broken](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dbroken) [closed](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dclosed) -[](https://taginfo.openstreetmap.org/keys/bottle#values) [bottle](https://wiki.openstreetmap.org/wiki/Key:bottle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bottle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:bottle%3Dno) -[](https://taginfo.openstreetmap.org/keys/fee#values) [fee](https://wiki.openstreetmap.org/wiki/Key:fee) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) -[](https://taginfo.openstreetmap.org/keys/seasonal#values) [seasonal](https://wiki.openstreetmap.org/wiki/Key:seasonal) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:seasonal%3Dno) [summer](https://wiki.openstreetmap.org/wiki/Tag:seasonal%3Dsummer) [spring;summer;autumn](https://wiki.openstreetmap.org/wiki/Tag:seasonal%3Dspring;summer;autumn) -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) -[](https://taginfo.openstreetmap.org/keys/artwork_type#values) [artwork_type](https://wiki.openstreetmap.org/wiki/Key:artwork_type) | [string](../SpecialInputElements.md#string) | [architecture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture) [mural](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural) [painting](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpainting) [sculpture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dsculpture) [statue](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstatue) [bust](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dbust) [stone](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstone) [installation](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dinstallation) [graffiti](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dgraffiti) [relief](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Drelief) [azulejo](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo) [tilework](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework) [woodcarving](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dwoodcarving) -[](https://taginfo.openstreetmap.org/keys/artist:wikidata#values) [artist:wikidata](https://wiki.openstreetmap.org/wiki/Key:artist:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | -[](https://taginfo.openstreetmap.org/keys/artist_name#values) [artist_name](https://wiki.openstreetmap.org/wiki/Key:artist_name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/subject:wikidata#values) [subject:wikidata](https://wiki.openstreetmap.org/wiki/Key:subject:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | ### just_created @@ -383,6 +356,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/drinking_water/drinking_water.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/drinking_water/drinking_water.json) diff --git a/Docs/Layers/dumpstations.md b/Docs/Layers/dumpstations.md index 49adc80e125..479f6e447b4 100644 --- a/Docs/Layers/dumpstations.md +++ b/Docs/Layers/dumpstations.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# dumpstations - dumpstations -============== - - - - +[object Object] Sanitary dump stations - - - - This layer is shown at zoomlevel **7** and higher - - - + - This layer is shown at zoomlevel **7** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -47,22 +38,11 @@ Sanitary dump stations - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [campersite](https://mapcomplete.org/campersite) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [campersite](https://mapcomplete.org/campersite) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -71,31 +51,24 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22sanitary_dump_station%22%5D%5B%22vehicle%22!~%22%5E%28no%29%24%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/fee#values) [fee](https://wiki.openstreetmap.org/wiki/Key:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) -[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/water_point#values) [water_point](https://wiki.openstreetmap.org/wiki/Key:water_point) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:water_point%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:water_point%3Dno) -[](https://taginfo.openstreetmap.org/keys/sanitary_dump_station:grey_water#values) [sanitary_dump_station:grey_water](https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:grey_water) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:grey_water%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:grey_water%3Dno) -[](https://taginfo.openstreetmap.org/keys/sanitary_dump_station:chemical_toilet#values) [sanitary_dump_station:chemical_toilet](https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:chemical_toilet) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:chemical_toilet%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:chemical_toilet%3Dno) -[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [network](https://wiki.openstreetmap.org/wiki/Tag:access%3Dnetwork) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) -[](https://taginfo.openstreetmap.org/keys/network#values) [network](https://wiki.openstreetmap.org/wiki/Key:network) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/power_supply#values) [power_supply](https://wiki.openstreetmap.org/wiki/Key:power_supply) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:power_supply%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:power_supply%3Dno) ### just_created @@ -287,6 +260,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/themes/campersite/campersite.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/campersite/campersite.json) diff --git a/Docs/Layers/education_institutions_without_etymology.md b/Docs/Layers/education_institutions_without_etymology.md index 2a9d20787b3..a606d4a499b 100644 --- a/Docs/Layers/education_institutions_without_etymology.md +++ b/Docs/Layers/education_institutions_without_etymology.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# education_institutions_without_etymology - education_institutions_without_etymology -========================================== - - - - +[object Object] All objects which have an etymology known - - - - This layer is shown at zoomlevel **18** and higher - - - + - This layer is shown at zoomlevel **18** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [etymology-images-from-wikipedia](#etymology-images-from-wikipedia) @@ -44,22 +35,11 @@ All objects which have an etymology known - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [etymology](https://mapcomplete.org/etymology) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [etymology](https://mapcomplete.org/etymology) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -68,24 +48,17 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22school%22%5D%5B%22name%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22kindergarten%22%5D%5B%22name%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22university%22%5D%5B%22name%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22college%22%5D%5B%22name%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22landuse%22%3D%22education%22%5D%5B%22name%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [wikidata](../SpecialInputElements.md#wikidata) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name:etymology:wikidata#values) [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | -[](https://taginfo.openstreetmap.org/keys/name:etymology#values) [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology) | [string](../SpecialInputElements.md#string) | [unknown](https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown) ### just_created @@ -242,6 +215,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/themes/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/etymology/etymology.json) diff --git a/Docs/Layers/elevator.md b/Docs/Layers/elevator.md index fc67cb8cc7f..32e1f64aa6d 100644 --- a/Docs/Layers/elevator.md +++ b/Docs/Layers/elevator.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# elevator - elevator -========== - - - - +[object Object] This layer show elevators and asks for operational status and elevator dimensions. Useful for wheelchair accessibility information - - - - This layer is shown at zoomlevel **13** and higher - - - + - This layer is shown at zoomlevel **13** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -50,57 +41,39 @@ This layer show elevators and asks for operational status and elevator dimension - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [blind_osm](https://mapcomplete.org/blind_osm) - - [indoors](https://mapcomplete.org/indoors) - - [onwheels](https://mapcomplete.org/onwheels) - - [personal](https://mapcomplete.org/personal) - - [stations](https://mapcomplete.org/stations) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [blind_osm](https://mapcomplete.org/blind_osm) + - [indoors](https://mapcomplete.org/indoors) + - [onwheels](https://mapcomplete.org/onwheels) + - [personal](https://mapcomplete.org/personal) + - [stations](https://mapcomplete.org/stations) +## Basic tags for this layer Elements must match the expression **highway=elevator** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22highway%22%3D%22elevator%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [string](../SpecialInputElements.md#string) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/operational_status#values) [operational_status](https://wiki.openstreetmap.org/wiki/Key:operational_status) | Multiple choice | [broken](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dbroken) [closed](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dclosed) [ok](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dok) -[](https://taginfo.openstreetmap.org/keys/door:width#values) [door:width](https://wiki.openstreetmap.org/wiki/Key:door:width) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/shape#values) [shape](https://wiki.openstreetmap.org/wiki/Key:shape) | Multiple choice | [rectangular](https://wiki.openstreetmap.org/wiki/Tag:shape%3Drectangular) [circular](https://wiki.openstreetmap.org/wiki/Tag:shape%3Dcircular) -[](https://taginfo.openstreetmap.org/keys/width#values) [width](https://wiki.openstreetmap.org/wiki/Key:width) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/length#values) [length](https://wiki.openstreetmap.org/wiki/Key:length) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/diameter#values) [diameter](https://wiki.openstreetmap.org/wiki/Key:diameter) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/hearing_loop#values) [hearing_loop](https://wiki.openstreetmap.org/wiki/Key:hearing_loop) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dno) -[](https://taginfo.openstreetmap.org/keys/tactile_writing:braille#values) [tactile_writing:braille](https://wiki.openstreetmap.org/wiki/Key:tactile_writing:braille) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:tactile_writing:braille%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:tactile_writing:braille%3Dno) -[](https://taginfo.openstreetmap.org/keys/speech_output#values) [speech_output](https://wiki.openstreetmap.org/wiki/Key:speech_output) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:speech_output%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:speech_output%3Dno) ### just_created @@ -325,6 +298,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/elevator/elevator.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/elevator/elevator.json) diff --git a/Docs/Layers/elongated_coin.md b/Docs/Layers/elongated_coin.md index f2a40bbd04f..77bc0280eb4 100644 --- a/Docs/Layers/elongated_coin.md +++ b/Docs/Layers/elongated_coin.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# elongated_coin - elongated_coin -================ - - - - +[object Object] Layer showing penny presses. - - - - This layer is shown at zoomlevel **0** and higher - - - + - This layer is shown at zoomlevel **0** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -53,24 +44,13 @@ Layer showing penny presses. - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [elongated_coin](https://mapcomplete.org/elongated_coin) - - [personal](https://mapcomplete.org/personal) - - [vending_machine](https://mapcomplete.org/vending_machine) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [elongated_coin](https://mapcomplete.org/elongated_coin) + - [personal](https://mapcomplete.org/personal) + - [vending_machine](https://mapcomplete.org/vending_machine) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -79,32 +59,25 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22vending_machine%22%5D%5B%22vending%22~%22%5E%28.*elongated_coin.*%29%24%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | [date](../SpecialInputElements.md#date) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) -[](https://taginfo.openstreetmap.org/keys/coin:design_count#values) [coin:design_count](https://wiki.openstreetmap.org/wiki/Key:coin:design_count) | [pnat](../SpecialInputElements.md#pnat) | [1](https://wiki.openstreetmap.org/wiki/Tag:coin:design_count%3D1) [2](https://wiki.openstreetmap.org/wiki/Tag:coin:design_count%3D2) [3](https://wiki.openstreetmap.org/wiki/Tag:coin:design_count%3D3) [4](https://wiki.openstreetmap.org/wiki/Tag:coin:design_count%3D4) -[](https://taginfo.openstreetmap.org/keys/fee#values) [fee](https://wiki.openstreetmap.org/wiki/Key:fee) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:fee%3D) [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) -[](https://taginfo.openstreetmap.org/keys/coin:type#values) [coin:type](https://wiki.openstreetmap.org/wiki/Key:coin:type) | [string](../SpecialInputElements.md#string) | [2cent](https://wiki.openstreetmap.org/wiki/Tag:coin:type%3D2cent) [5cent](https://wiki.openstreetmap.org/wiki/Tag:coin:type%3D5cent) [10cent](https://wiki.openstreetmap.org/wiki/Tag:coin:type%3D10cent) [25cent](https://wiki.openstreetmap.org/wiki/Tag:coin:type%3D25cent) [50cent](https://wiki.openstreetmap.org/wiki/Tag:coin:type%3D50cent) [10centimes](https://wiki.openstreetmap.org/wiki/Tag:coin:type%3D10centimes) [20centimes](https://wiki.openstreetmap.org/wiki/Tag:coin:type%3D20centimes) -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [1 EUR](https://wiki.openstreetmap.org/wiki/Tag:charge%3D1 EUR) [2 EUR](https://wiki.openstreetmap.org/wiki/Tag:charge%3D2 EUR) [2 CHF](https://wiki.openstreetmap.org/wiki/Tag:charge%3D2 CHF) [1 CHF](https://wiki.openstreetmap.org/wiki/Tag:charge%3D1 CHF) -[](https://taginfo.openstreetmap.org/keys/payment:coins:denominations#values) [payment:coins:denominations](https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations) | Multiple choice | [0.01 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.01 EUR) [0.02 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.02 EUR) [0.05 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 EUR) [0.10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 EUR) [0.20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 EUR) [0.50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 EUR) [1 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 EUR) [2 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 EUR) [0.05 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 CHF) [0.10 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 CHF) [0.20 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 CHF) [0.50 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 CHF) [1 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 CHF) [2 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 CHF) [5 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D5 CHF) -[](https://taginfo.openstreetmap.org/keys/indoor#values) [indoor](https://wiki.openstreetmap.org/wiki/Key:indoor) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno) -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/check_date#values) [check_date](https://wiki.openstreetmap.org/wiki/Key:check_date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:check_date%3D) ### just_created @@ -393,31 +366,33 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes + +| id | question | osmTags | +-----|-----|----- | +| accepts_debit_cards.0 | Accepts debit cards | payment:debit_cards=yes | -id | question | osmTags ----- | ---------- | --------- -accepts_debit_cards.0 | Accepts debit cards | payment:debit_cards=yes + + +| id | question | osmTags | +-----|-----|----- | +| accepts_credit_cards.0 | Accepts credit cards | payment:credit_cards=yes | -id | question | osmTags ----- | ---------- | --------- -accepts_credit_cards.0 | Accepts credit cards | payment:credit_cards=yes - - This document is autogenerated from [assets/layers/elongated_coin/elongated_coin.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/elongated_coin/elongated_coin.json) diff --git a/Docs/Layers/entrance.md b/Docs/Layers/entrance.md index a34a27dfb17..1d888d786bd 100644 --- a/Docs/Layers/entrance.md +++ b/Docs/Layers/entrance.md @@ -1,34 +1,25 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# entrance - entrance -========== - - - - +[object Object] A layer showing entrances and offering capabilities to survey some advanced data which is important for e.g. wheelchair users (but also bicycle users, people who want to deliver, …) - - - - This layer is shown at zoomlevel **14** and higher - - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) - - This layer will automatically load [pedestrian_path](./pedestrian_path.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) - - This layer will automatically load [indoors](./indoors.md) into the layout as it depends on it: a preset snaps to this layer (presets[1]) - - This layer is needed as dependency for layer [walls_and_buildings](#walls_and_buildings) - - - + - This layer is shown at zoomlevel **14** and higher + - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) + - This layer will automatically load [pedestrian_path](./pedestrian_path.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) + - This layer will automatically load [indoors](./indoors.md) into the layout as it depends on it: a preset snaps to this layer (presets[1]) + - This layer is needed as dependency for layer [walls_and_buildings](#walls_and_buildings) ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -49,26 +40,15 @@ A layer showing entrances and offering capabilities to survey some advanced data - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [indoors](https://mapcomplete.org/indoors) - - [onwheels](https://mapcomplete.org/onwheels) - - [personal](https://mapcomplete.org/personal) - - [stations](https://mapcomplete.org/stations) - - [walls_and_buildings](https://mapcomplete.org/walls_and_buildings) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [indoors](https://mapcomplete.org/indoors) + - [onwheels](https://mapcomplete.org/onwheels) + - [personal](https://mapcomplete.org/personal) + - [stations](https://mapcomplete.org/stations) + - [walls_and_buildings](https://mapcomplete.org/walls_and_buildings) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -78,28 +58,21 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22indoor%22%3D%22door%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22door%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22entrance%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/entrance#values) [entrance](https://wiki.openstreetmap.org/wiki/Key:entrance) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:entrance%3D) [main](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dmain) [secondary](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dsecondary) [service](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dservice) [exit](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dexit) [entrance](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dentrance) [emergency](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Demergency) [home](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dhome) -[](https://taginfo.openstreetmap.org/keys/door#values) [door](https://wiki.openstreetmap.org/wiki/Key:door) | Multiple choice | [hinged](https://wiki.openstreetmap.org/wiki/Tag:door%3Dhinged) [revolving](https://wiki.openstreetmap.org/wiki/Tag:door%3Drevolving) [sliding](https://wiki.openstreetmap.org/wiki/Tag:door%3Dsliding) [overhead](https://wiki.openstreetmap.org/wiki/Tag:door%3Doverhead) [no](https://wiki.openstreetmap.org/wiki/Tag:door%3Dno) -[](https://taginfo.openstreetmap.org/keys/automatic_door#values) [automatic_door](https://wiki.openstreetmap.org/wiki/Key:automatic_door) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dno) [motion](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dmotion) [floor](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dfloor) [button](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dbutton) [slowdown_button](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dslowdown_button) [continuous](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dcontinuous) [serviced_on_button_press](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_button_press) [serviced_on_request](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_request) -[](https://taginfo.openstreetmap.org/keys/width#values) [width](https://wiki.openstreetmap.org/wiki/Key:width) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/kerb:height#values) [kerb:height](https://wiki.openstreetmap.org/wiki/Key:kerb:height) | [pnat](../SpecialInputElements.md#pnat) | [0](https://wiki.openstreetmap.org/wiki/Tag:kerb:height%3D0) ### just_created @@ -298,6 +271,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/entrance/entrance.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/entrance/entrance.json) diff --git a/Docs/Layers/etymology.md b/Docs/Layers/etymology.md index 2ae3d617ad2..2c973a5176c 100644 --- a/Docs/Layers/etymology.md +++ b/Docs/Layers/etymology.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# etymology - etymology -=========== - - - - +[object Object] All objects which have an etymology known - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [etymology-images-from-wikipedia](#etymology-images-from-wikipedia) @@ -44,23 +35,12 @@ All objects which have an etymology known - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [etymology](https://mapcomplete.org/etymology) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [etymology](https://mapcomplete.org/etymology) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -69,24 +49,17 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22name%3Aetymology%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22name%3Aetymology%3Awikidata%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [wikidata](../SpecialInputElements.md#wikidata) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name:etymology:wikidata#values) [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | -[](https://taginfo.openstreetmap.org/keys/name:etymology#values) [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology) | [string](../SpecialInputElements.md#string) | [unknown](https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown) ### just_created @@ -243,6 +216,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/etymology/etymology.json) diff --git a/Docs/Layers/extinguisher.md b/Docs/Layers/extinguisher.md index 9f8f1f8a9bc..76b433a7172 100644 --- a/Docs/Layers/extinguisher.md +++ b/Docs/Layers/extinguisher.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# extinguisher - extinguisher -============== - - - - +[object Object] Map layer to show fire extinguishers. - - - - This layer is shown at zoomlevel **14** and higher - - - + - This layer is shown at zoomlevel **14** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [extinguisher-location](#extinguisher-location) @@ -39,45 +30,27 @@ Map layer to show fire extinguishers. - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [hailhydrant](https://mapcomplete.org/hailhydrant) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [hailhydrant](https://mapcomplete.org/hailhydrant) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **emergency=fire_extinguisher** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22emergency%22%3D%22fire_extinguisher%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/location#values) [location](https://wiki.openstreetmap.org/wiki/Key:location) | [string](../SpecialInputElements.md#string) | [indoor](https://wiki.openstreetmap.org/wiki/Tag:location%3Dindoor) [outdoor](https://wiki.openstreetmap.org/wiki/Tag:location%3Doutdoor) ### just_created @@ -193,6 +166,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/extinguisher/extinguisher.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/extinguisher/extinguisher.json) diff --git a/Docs/Layers/facadegardens.md b/Docs/Layers/facadegardens.md index 988c80c6490..4067e0a4469 100644 --- a/Docs/Layers/facadegardens.md +++ b/Docs/Layers/facadegardens.md @@ -1,31 +1,22 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# facadegardens - facadegardens -=============== - - - - +[object Object] Facade gardens - - - - This layer is shown at zoomlevel **12** and higher - - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) - - - + - This layer is shown at zoomlevel **12** and higher + - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -48,22 +39,11 @@ Facade gardens - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [facadegardens](https://mapcomplete.org/facadegardens) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [facadegardens](https://mapcomplete.org/facadegardens) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -72,29 +52,22 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22garden%3Atype%22%3D%22facade_garden%22%5D%5B%22leisure%22%3D%22garden%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [direction](../SpecialInputElements.md#direction) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [text](../SpecialInputElements.md#text) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [text](../SpecialInputElements.md#text) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/direction#values) [direction](https://wiki.openstreetmap.org/wiki/Key:direction) | [direction](../SpecialInputElements.md#direction) | -[](https://taginfo.openstreetmap.org/keys/direct_sunlight#values) [direct_sunlight](https://wiki.openstreetmap.org/wiki/Key:direct_sunlight) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dyes) [partial](https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dpartial) [no](https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dno) -[](https://taginfo.openstreetmap.org/keys/rain_barrel#values) [rain_barrel](https://wiki.openstreetmap.org/wiki/Key:rain_barrel) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:rain_barrel%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:rain_barrel%3Dno) -[](https://taginfo.openstreetmap.org/keys/start_date#values) [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) | [text](../SpecialInputElements.md#text) | -[](https://taginfo.openstreetmap.org/keys/edible#values) [edible](https://wiki.openstreetmap.org/wiki/Key:edible) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:edible%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:edible%3Dno) -[](https://taginfo.openstreetmap.org/keys/plant#values) [plant](https://wiki.openstreetmap.org/wiki/Key:plant) | Multiple choice | [vine](https://wiki.openstreetmap.org/wiki/Tag:plant%3Dvine) [flower](https://wiki.openstreetmap.org/wiki/Tag:plant%3Dflower) [shrub](https://wiki.openstreetmap.org/wiki/Tag:plant%3Dshrub) [groundcover](https://wiki.openstreetmap.org/wiki/Tag:plant%3Dgroundcover) -[](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [text](../SpecialInputElements.md#text) | ### just_created @@ -284,6 +257,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/themes/facadegardens/facadegardens.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/facadegardens/facadegardens.json) diff --git a/Docs/Layers/fietsstraat.md b/Docs/Layers/fietsstraat.md index ad9184b6b11..b9642f6c120 100644 --- a/Docs/Layers/fietsstraat.md +++ b/Docs/Layers/fietsstraat.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# fietsstraat - fietsstraat -============= - - - - +[object Object] A cyclestreet is a street where motorized traffic is not allowed to overtake a cyclist - - - - This layer is shown at zoomlevel **7** and higher - - - + - This layer is shown at zoomlevel **7** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [is_cyclestreet](#is_cyclestreet) - [supplementary_sign](#supplementary_sign) - [future_cyclestreet](#future_cyclestreet) @@ -42,22 +33,11 @@ A cyclestreet is a street where motorized traffic is not allowed to overtake a c - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [cyclestreets](https://mapcomplete.org/cyclestreets) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [cyclestreets](https://mapcomplete.org/cyclestreets) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -66,24 +46,17 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22bicycle_road%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22cyclestreet%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [date](../SpecialInputElements.md#date) | | +| ] [object Object] | Multiple choice | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/traffic_sign#values) [traffic_sign](https://wiki.openstreetmap.org/wiki/Key:traffic_sign) | Multiple choice | [DE:244.1,1020-30](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1020-30) [DE:244.1,1022-12,1024-10](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1022-12,1024-10) [DE:244.1,1022-12](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1022-12) [DE:244.1,1024-10](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1024-10) [DE:244.1](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1) -[](https://taginfo.openstreetmap.org/keys/cyclestreet:start_date#values) [cyclestreet:start_date](https://wiki.openstreetmap.org/wiki/Key:cyclestreet:start_date) | [date](../SpecialInputElements.md#date) | -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | ### is_cyclestreet @@ -233,6 +206,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/themes/cyclestreets/cyclestreets.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/cyclestreets/cyclestreets.json) diff --git a/Docs/Layers/fire_station.md b/Docs/Layers/fire_station.md index f72e595098d..834df0ea90e 100644 --- a/Docs/Layers/fire_station.md +++ b/Docs/Layers/fire_station.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# fire_station - fire_station -============== - - - - +[object Object] Map layer to show fire stations. - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [station-name](#station-name) @@ -43,49 +34,31 @@ Map layer to show fire stations. - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [hailhydrant](https://mapcomplete.org/hailhydrant) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [hailhydrant](https://mapcomplete.org/hailhydrant) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **amenity=fire_station** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22fire_station%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/addr:street#values) [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/addr:place#values) [addr:place](https://wiki.openstreetmap.org/wiki/Key:addr:place) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Bureau of Fire Protection](https://wiki.openstreetmap.org/wiki/Tag:operator%3DBureau of Fire Protection) -[](https://taginfo.openstreetmap.org/keys/operator:type#values) [operator:type](https://wiki.openstreetmap.org/wiki/Key:operator:type) | [string](../SpecialInputElements.md#string) | [government](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment) [community](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity) [ngo](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dngo) [private](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dprivate) ### just_created @@ -243,6 +216,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/fire_station/fire_station.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/fire_station/fire_station.json) diff --git a/Docs/Layers/fitness_centre.md b/Docs/Layers/fitness_centre.md index fff94a198ca..dc6d7abd2b0 100644 --- a/Docs/Layers/fitness_centre.md +++ b/Docs/Layers/fitness_centre.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# fitness_centre - fitness_centre -================ - - - - +[object Object] Layer showing fitness centres - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [name](#name) @@ -48,51 +39,33 @@ Layer showing fitness centres - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [personal](https://mapcomplete.org/personal) - - [sports](https://mapcomplete.org/sports) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [personal](https://mapcomplete.org/personal) + - [sports](https://mapcomplete.org/sports) +## Basic tags for this layer Elements must match the expression **leisure=fitness_centre** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22leisure%22%3D%22fitness_centre%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) ### just_created @@ -303,17 +276,15 @@ _This tagrendering has no question and is thus read-only_ - - -#### Filters +#### Filters +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | + -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes - This document is autogenerated from [assets/layers/fitness_centre/fitness_centre.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/fitness_centre/fitness_centre.json) diff --git a/Docs/Layers/fitness_station.md b/Docs/Layers/fitness_station.md index 63ee8062cc5..2af450f836d 100644 --- a/Docs/Layers/fitness_station.md +++ b/Docs/Layers/fitness_station.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# fitness_station - fitness_station -================= - - - - +[object Object] Find a fitness station near you, and add missing ones. - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -44,48 +35,30 @@ Find a fitness station near you, and add missing ones. - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [personal](https://mapcomplete.org/personal) - - [sports](https://mapcomplete.org/sports) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [personal](https://mapcomplete.org/personal) + - [sports](https://mapcomplete.org/sports) +## Basic tags for this layer Elements must match the expression **leisure=fitness_station** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22leisure%22%3D%22fitness_station%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/fitness_station#values) [fitness_station](https://wiki.openstreetmap.org/wiki/Key:fitness_station) | Multiple choice | [horizontal_bar](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dhorizontal_bar) [sign](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dsign) [sit-up](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dsit-up) [push-up](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dpush-up) [stretch_bars](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dstretch_bars) [hyperextension](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dhyperextension) [rings](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Drings) [horizontal_ladder](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dhorizontal_ladder) [wall_bars](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dwall_bars) [slalom](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dslalom) [stepping_stones](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dstepping_stones) [leapfrog](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dleapfrog) [beam_jump](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dbeam_jump) [hurdling](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dhurdling) [wall](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dwall) [balance_beam](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dbalance_beam) [log_lifting](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dlog_lifting) [captains_chair](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dcaptains_chair) [box](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dbox) [battling_ropes](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dbattling_ropes) [excercise_bike](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dexcercise_bike) [elliptical_trainer](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Delliptical_trainer) [air_walker](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dair_walker) [rower](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Drower) [slackline](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dslackline) -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) ### just_created @@ -264,17 +237,15 @@ _This tagrendering has no question and is thus read-only_ - - -#### Filters +#### Filters +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | + -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes - This document is autogenerated from [assets/layers/fitness_station/fitness_station.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/fitness_station/fitness_station.json) diff --git a/Docs/Layers/fixme.md b/Docs/Layers/fixme.md index a29b84631c6..1017cb3d429 100644 --- a/Docs/Layers/fixme.md +++ b/Docs/Layers/fixme.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# fixme - fixme -======= - - - - +[object Object] OSM objects that likely need to be fixed, based on a FIXME tag. - - - - This layer is shown at zoomlevel **16** and higher - - - + - This layer is shown at zoomlevel **16** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [fixme](#fixme) @@ -38,23 +29,12 @@ OSM objects that likely need to be fixed, based on a FIXME tag. - [qr_code](#qr_code) - [last_edit](#last_edit) - Themes using this layer -------------------------- - - - - - - - [notes](https://mapcomplete.org/notes) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [notes](https://mapcomplete.org/notes) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -63,23 +43,16 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22FIXME%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22fixme%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [text](../SpecialInputElements.md#text) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/fixme#values) [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme) | [text](../SpecialInputElements.md#text) | [](https://wiki.openstreetmap.org/wiki/Tag:fixme%3D) ### just_created @@ -185,6 +158,7 @@ _This tagrendering has no question and is thus read-only_ This tagrendering is only visible in the popup if the following condition is met: _last_edit:changeset~.+ & _last_edit:contributor~.+ This tagrendering has labels -`added_by_default` +`added_by_default` + This document is autogenerated from [assets/layers/fixme/fixme.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/fixme/fixme.json) diff --git a/Docs/Layers/food.md b/Docs/Layers/food.md index 6bb28e24d81..9dd65fa1405 100644 --- a/Docs/Layers/food.md +++ b/Docs/Layers/food.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# food - food -====== - - - - +[object Object] A layer showing restaurants and fast-food amenities (with a special rendering for friteries) - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -74,28 +65,17 @@ A layer showing restaurants and fast-food amenities (with a special rendering fo - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [food](https://mapcomplete.org/food) - - [fritures](https://mapcomplete.org/fritures) - - [onwheels](https://mapcomplete.org/onwheels) - - [personal](https://mapcomplete.org/personal) - - [pets](https://mapcomplete.org/pets) - - [ski](https://mapcomplete.org/ski) - - [stations](https://mapcomplete.org/stations) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [food](https://mapcomplete.org/food) + - [fritures](https://mapcomplete.org/fritures) + - [onwheels](https://mapcomplete.org/onwheels) + - [personal](https://mapcomplete.org/personal) + - [pets](https://mapcomplete.org/pets) + - [ski](https://mapcomplete.org/ski) + - [stations](https://mapcomplete.org/stations) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -104,52 +84,45 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22fast_food%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/amenity#values) [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [fast_food](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfast_food) [restaurant](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant) -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) -[](https://taginfo.openstreetmap.org/keys/cuisine#values) [cuisine](https://wiki.openstreetmap.org/wiki/Key:cuisine) | [string](../SpecialInputElements.md#string) | [pizza](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpizza) [friture](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture) [pasta](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpasta) [kebab](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dkebab) [sandwich](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsandwich) [burger](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dburger) [sushi](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsushi) [coffee](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dcoffee) [italian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Ditalian) [french](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfrench) [chinese](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchinese) [greek](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dgreek) [indian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dindian) [turkish](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dturkish) [thai](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dthai) -[](https://taginfo.openstreetmap.org/keys/reservation#values) [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) -[](https://taginfo.openstreetmap.org/keys/takeaway#values) [takeaway](https://wiki.openstreetmap.org/wiki/Key:takeaway) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dno) -[](https://taginfo.openstreetmap.org/keys/delivery#values) [delivery](https://wiki.openstreetmap.org/wiki/Key:delivery) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:vegetarian#values) [diet:vegetarian](https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Donly) [on_demand](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Don_demand) -[](https://taginfo.openstreetmap.org/keys/diet:vegan#values) [diet:vegan](https://wiki.openstreetmap.org/wiki/Key:diet:vegan) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Donly) [on_demand](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Don_demand) -[](https://taginfo.openstreetmap.org/keys/diet:halal#values) [diet:halal](https://wiki.openstreetmap.org/wiki/Key:diet:halal) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Donly) -[](https://taginfo.openstreetmap.org/keys/diet:sugar_free#values) [diet:sugar_free](https://wiki.openstreetmap.org/wiki/Key:diet:sugar_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:gluten_free#values) [diet:gluten_free](https://wiki.openstreetmap.org/wiki/Key:diet:gluten_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:lactose_free#values) [diet:lactose_free](https://wiki.openstreetmap.org/wiki/Key:diet:lactose_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dno) -[](https://taginfo.openstreetmap.org/keys/organic#values) [organic](https://wiki.openstreetmap.org/wiki/Key:organic) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:organic%3Donly) -[](https://taginfo.openstreetmap.org/keys/diet:vegetarian#values) [diet:vegetarian](https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:vegan#values) [diet:vegan](https://wiki.openstreetmap.org/wiki/Key:diet:vegan) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno) -[](https://taginfo.openstreetmap.org/keys/organic#values) [organic](https://wiki.openstreetmap.org/wiki/Key:organic) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:organic%3Donly) -[](https://taginfo.openstreetmap.org/keys/friture:oil#values) [friture:oil](https://wiki.openstreetmap.org/wiki/Key:friture:oil) | Multiple choice | [vegetable](https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Dvegetable) [animal](https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Danimal) -[](https://taginfo.openstreetmap.org/keys/reusable_packaging:accept#values) [reusable_packaging:accept](https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Donly) -[](https://taginfo.openstreetmap.org/keys/smoking#values) [smoking](https://wiki.openstreetmap.org/wiki/Key:smoking) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Dno) [outside](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Doutside) -[](https://taginfo.openstreetmap.org/keys/service:electricity#values) [service:electricity](https://wiki.openstreetmap.org/wiki/Key:service:electricity) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dlimited) [ask](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask) [no](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno) -[](https://taginfo.openstreetmap.org/keys/dog#values) [dog](https://wiki.openstreetmap.org/wiki/Key:dog) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno) [leashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed) [unleashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed) [outside](https://wiki.openstreetmap.org/wiki/Tag:dog%3Doutside) -[](https://taginfo.openstreetmap.org/keys/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired) -[](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers) -[](https://taginfo.openstreetmap.org/keys/internet_access:ssid#values) [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom) ### just_created @@ -651,117 +624,139 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes + +| id | question | osmTags | +-----|-----|----- | +| reservation.0 | Reservation not required | reservation=no | reservation=optional | reservation= | -id | question | osmTags ----- | ---------- | --------- -reservation.0 | Reservation not required | reservation=no \| reservation=optional \| reservation= + + +| id | question | osmTags | +-----|-----|----- | +| food-category.0 | *Restaurants and fast food businesses* (default) | | +| food-category.1 | Only fastfood businesses | amenity=fast_food | +| food-category.2 | Only restaurants | amenity=restaurant | -id | question | osmTags ----- | ---------- | --------- -food-category.0 | Restaurants and fast food businesses (default) | -food-category.1 | Only fastfood businesses | amenity=fast_food -food-category.2 | Only restaurants | amenity=restaurant + + +| id | question | osmTags | +-----|-----|----- | +| vegetarian.0 | Has a vegetarian menu | diet:vegetarian=yes | diet:vegetarian=only | diet:vegan=yes | diet:vegan=only | -id | question | osmTags ----- | ---------- | --------- -vegetarian.0 | Has a vegetarian menu | diet:vegetarian=yes \| diet:vegetarian=only \| diet:vegan=yes \| diet:vegan=only + + +| id | question | osmTags | +-----|-----|----- | +| vegan.0 | Has a vegan menu | diet:vegan=yes | diet:vegan=only | -id | question | osmTags ----- | ---------- | --------- -vegan.0 | Has a vegan menu | diet:vegan=yes \| diet:vegan=only + + +| id | question | osmTags | +-----|-----|----- | +| halal.0 | Has a halal menu | diet:halal=yes | diet:halal=only | -id | question | osmTags ----- | ---------- | --------- -halal.0 | Has a halal menu | diet:halal=yes \| diet:halal=only + + +| id | question | osmTags | +-----|-----|----- | +| has_organic.0 | Has organic options | organic=yes | organic=only | -id | question | osmTags ----- | ---------- | --------- -has_organic.0 | Has organic options | organic=yes \| organic=only + + +| id | question | osmTags | +-----|-----|----- | +| sugar_free.0 | *All types* (default) | | +| sugar_free.1 | This shop only sells sugar free products | diet:sugar_free=only | +| sugar_free.2 | This shop has a big sugar free offering | diet:sugar_free=yes | +| sugar_free.3 | This shop has a limited sugar free offering | diet:sugar_free=limited | +| sugar_free.4 | This shop has no sugar free offering | diet:sugar_free=no | -id | question | osmTags ----- | ---------- | --------- -sugar_free.0 | All types (default) | -sugar_free.1 | This shop only sells sugar free products | diet:sugar_free=only -sugar_free.2 | This shop has a big sugar free offering | diet:sugar_free=yes -sugar_free.3 | This shop has a limited sugar free offering | diet:sugar_free=limited -sugar_free.4 | This shop has no sugar free offering | diet:sugar_free=no + + +| id | question | osmTags | +-----|-----|----- | +| gluten_free.0 | *All types* (default) | | +| gluten_free.1 | This shop only sells gluten free products | diet:gluten_free=only | +| gluten_free.2 | This shop has a big gluten free offering | diet:gluten_free=yes | +| gluten_free.3 | This shop has a limited gluten free offering | diet:gluten_free=limited | +| gluten_free.4 | This shop has no gluten free offering | diet:gluten_free=no | -id | question | osmTags ----- | ---------- | --------- -gluten_free.0 | All types (default) | -gluten_free.1 | This shop only sells gluten free products | diet:gluten_free=only -gluten_free.2 | This shop has a big gluten free offering | diet:gluten_free=yes -gluten_free.3 | This shop has a limited gluten free offering | diet:gluten_free=limited -gluten_free.4 | This shop has no gluten free offering | diet:gluten_free=no + + +| id | question | osmTags | +-----|-----|----- | +| lactose_free.0 | *All types* (default) | | +| lactose_free.1 | Only sells lactose free products | diet:lactose_free=only | +| lactose_free.2 | Big lactose free offering | diet:lactose_free=yes | +| lactose_free.3 | Limited lactose free offering | diet:lactose_free=limited | +| lactose_free.4 | No lactose free offering | diet:lactose_free=no | -id | question | osmTags ----- | ---------- | --------- -lactose_free.0 | All types (default) | -lactose_free.1 | Only sells lactose free products | diet:lactose_free=only -lactose_free.2 | Big lactose free offering | diet:lactose_free=yes -lactose_free.3 | Limited lactose free offering | diet:lactose_free=limited -lactose_free.4 | No lactose free offering | diet:lactose_free=no + + +| id | question | osmTags | +-----|-----|----- | +| accepts_cash.0 | Accepts cash | payment:cash=yes | -id | question | osmTags ----- | ---------- | --------- -accepts_cash.0 | Accepts cash | payment:cash=yes + + +| id | question | osmTags | +-----|-----|----- | +| accepts_cards.0 | Accepts payment cards | payment:cards=yes | -id | question | osmTags ----- | ---------- | --------- -accepts_cards.0 | Accepts payment cards | payment:cards=yes + + +| id | question | osmTags | +-----|-----|----- | +| dogs.0 | *No preference towards dogs* (default) | | +| dogs.1 | Dogs allowed | dog=unleashed | dog=yes | +| dogs.2 | No dogs allowed | dog=no | -id | question | osmTags ----- | ---------- | --------- -dogs.0 | No preference towards dogs (default) | -dogs.1 | Dogs allowed | dog=unleashed \| dog=yes -dogs.2 | No dogs allowed | dog=no - - This document is autogenerated from [assets/layers/food/food.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/food/food.json) diff --git a/Docs/Layers/food_courts.md b/Docs/Layers/food_courts.md index 3f1a581a52c..543a4324585 100644 --- a/Docs/Layers/food_courts.md +++ b/Docs/Layers/food_courts.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# food_courts - food_courts -============= - - - - +[object Object] Food courts with a variety of food options. - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [name](#name) @@ -45,51 +36,33 @@ Food courts with a variety of food options. - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [cafes_and_pubs](https://mapcomplete.org/cafes_and_pubs) - - [food](https://mapcomplete.org/food) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [cafes_and_pubs](https://mapcomplete.org/cafes_and_pubs) + - [food](https://mapcomplete.org/food) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **amenity=food_court** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22food_court%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/smoking#values) [smoking](https://wiki.openstreetmap.org/wiki/Key:smoking) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Dno) [outside](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Doutside) ### just_created @@ -268,6 +241,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/food_courts/food_courts.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/food_courts/food_courts.json) diff --git a/Docs/Layers/friture.md b/Docs/Layers/friture.md index a5304918aec..8b457cd3f3a 100644 --- a/Docs/Layers/friture.md +++ b/Docs/Layers/friture.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# friture - friture -========= - - - - +[object Object] A layer showing restaurants and fast-food amenities (with a special rendering for friteries) - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -74,22 +65,11 @@ A layer showing restaurants and fast-food amenities (with a special rendering fo - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [fritures](https://mapcomplete.org/fritures) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [fritures](https://mapcomplete.org/fritures) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -98,52 +78,45 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22fast_food%22%5D%5B%22cuisine%22~%22%5E%28%28.*%3B%29%3Ffriture%28%3B.*%29%3F%29%24%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22cuisine%22~%22%5E%28%28.*%3B%29%3Ffriture%28%3B.*%29%3F%29%24%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/amenity#values) [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [fast_food](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfast_food) [restaurant](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant) -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) -[](https://taginfo.openstreetmap.org/keys/cuisine#values) [cuisine](https://wiki.openstreetmap.org/wiki/Key:cuisine) | [string](../SpecialInputElements.md#string) | [pizza](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpizza) [friture](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture) [pasta](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpasta) [kebab](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dkebab) [sandwich](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsandwich) [burger](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dburger) [sushi](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsushi) [coffee](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dcoffee) [italian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Ditalian) [french](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfrench) [chinese](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchinese) [greek](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dgreek) [indian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dindian) [turkish](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dturkish) [thai](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dthai) -[](https://taginfo.openstreetmap.org/keys/reservation#values) [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) -[](https://taginfo.openstreetmap.org/keys/takeaway#values) [takeaway](https://wiki.openstreetmap.org/wiki/Key:takeaway) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dno) -[](https://taginfo.openstreetmap.org/keys/delivery#values) [delivery](https://wiki.openstreetmap.org/wiki/Key:delivery) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:vegetarian#values) [diet:vegetarian](https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Donly) [on_demand](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Don_demand) -[](https://taginfo.openstreetmap.org/keys/diet:vegan#values) [diet:vegan](https://wiki.openstreetmap.org/wiki/Key:diet:vegan) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Donly) [on_demand](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Don_demand) -[](https://taginfo.openstreetmap.org/keys/diet:halal#values) [diet:halal](https://wiki.openstreetmap.org/wiki/Key:diet:halal) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Donly) -[](https://taginfo.openstreetmap.org/keys/diet:sugar_free#values) [diet:sugar_free](https://wiki.openstreetmap.org/wiki/Key:diet:sugar_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:gluten_free#values) [diet:gluten_free](https://wiki.openstreetmap.org/wiki/Key:diet:gluten_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:lactose_free#values) [diet:lactose_free](https://wiki.openstreetmap.org/wiki/Key:diet:lactose_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dno) -[](https://taginfo.openstreetmap.org/keys/organic#values) [organic](https://wiki.openstreetmap.org/wiki/Key:organic) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:organic%3Donly) -[](https://taginfo.openstreetmap.org/keys/diet:vegetarian#values) [diet:vegetarian](https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:vegan#values) [diet:vegan](https://wiki.openstreetmap.org/wiki/Key:diet:vegan) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno) -[](https://taginfo.openstreetmap.org/keys/organic#values) [organic](https://wiki.openstreetmap.org/wiki/Key:organic) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:organic%3Donly) -[](https://taginfo.openstreetmap.org/keys/friture:oil#values) [friture:oil](https://wiki.openstreetmap.org/wiki/Key:friture:oil) | Multiple choice | [vegetable](https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Dvegetable) [animal](https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Danimal) -[](https://taginfo.openstreetmap.org/keys/reusable_packaging:accept#values) [reusable_packaging:accept](https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Donly) -[](https://taginfo.openstreetmap.org/keys/smoking#values) [smoking](https://wiki.openstreetmap.org/wiki/Key:smoking) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Dno) [outside](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Doutside) -[](https://taginfo.openstreetmap.org/keys/service:electricity#values) [service:electricity](https://wiki.openstreetmap.org/wiki/Key:service:electricity) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dlimited) [ask](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask) [no](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno) -[](https://taginfo.openstreetmap.org/keys/dog#values) [dog](https://wiki.openstreetmap.org/wiki/Key:dog) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno) [leashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed) [unleashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed) [outside](https://wiki.openstreetmap.org/wiki/Tag:dog%3Doutside) -[](https://taginfo.openstreetmap.org/keys/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired) -[](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers) -[](https://taginfo.openstreetmap.org/keys/internet_access:ssid#values) [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom) ### just_created @@ -645,126 +618,150 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes + +| id | question | osmTags | +-----|-----|----- | +| reservation.0 | Reservation not required | reservation=no | reservation=optional | reservation= | -id | question | osmTags ----- | ---------- | --------- -reservation.0 | Reservation not required | reservation=no \| reservation=optional \| reservation= + + +| id | question | osmTags | +-----|-----|----- | +| food-category.0 | *Restaurants and fast food businesses* (default) | | +| food-category.1 | Only fastfood businesses | amenity=fast_food | +| food-category.2 | Only restaurants | amenity=restaurant | -id | question | osmTags ----- | ---------- | --------- -food-category.0 | Restaurants and fast food businesses (default) | -food-category.1 | Only fastfood businesses | amenity=fast_food -food-category.2 | Only restaurants | amenity=restaurant + + +| id | question | osmTags | +-----|-----|----- | +| vegetarian.0 | Has a vegetarian menu | diet:vegetarian=yes | diet:vegetarian=only | diet:vegan=yes | diet:vegan=only | -id | question | osmTags ----- | ---------- | --------- -vegetarian.0 | Has a vegetarian menu | diet:vegetarian=yes \| diet:vegetarian=only \| diet:vegan=yes \| diet:vegan=only + + +| id | question | osmTags | +-----|-----|----- | +| vegan.0 | Has a vegan menu | diet:vegan=yes | diet:vegan=only | -id | question | osmTags ----- | ---------- | --------- -vegan.0 | Has a vegan menu | diet:vegan=yes \| diet:vegan=only + + +| id | question | osmTags | +-----|-----|----- | +| halal.0 | Has a halal menu | diet:halal=yes | diet:halal=only | -id | question | osmTags ----- | ---------- | --------- -halal.0 | Has a halal menu | diet:halal=yes \| diet:halal=only + + +| id | question | osmTags | +-----|-----|----- | +| has_organic.0 | Has organic options | organic=yes | organic=only | -id | question | osmTags ----- | ---------- | --------- -has_organic.0 | Has organic options | organic=yes \| organic=only + + +| id | question | osmTags | +-----|-----|----- | +| sugar_free.0 | *All types* (default) | | +| sugar_free.1 | This shop only sells sugar free products | diet:sugar_free=only | +| sugar_free.2 | This shop has a big sugar free offering | diet:sugar_free=yes | +| sugar_free.3 | This shop has a limited sugar free offering | diet:sugar_free=limited | +| sugar_free.4 | This shop has no sugar free offering | diet:sugar_free=no | -id | question | osmTags ----- | ---------- | --------- -sugar_free.0 | All types (default) | -sugar_free.1 | This shop only sells sugar free products | diet:sugar_free=only -sugar_free.2 | This shop has a big sugar free offering | diet:sugar_free=yes -sugar_free.3 | This shop has a limited sugar free offering | diet:sugar_free=limited -sugar_free.4 | This shop has no sugar free offering | diet:sugar_free=no + + +| id | question | osmTags | +-----|-----|----- | +| gluten_free.0 | *All types* (default) | | +| gluten_free.1 | This shop only sells gluten free products | diet:gluten_free=only | +| gluten_free.2 | This shop has a big gluten free offering | diet:gluten_free=yes | +| gluten_free.3 | This shop has a limited gluten free offering | diet:gluten_free=limited | +| gluten_free.4 | This shop has no gluten free offering | diet:gluten_free=no | -id | question | osmTags ----- | ---------- | --------- -gluten_free.0 | All types (default) | -gluten_free.1 | This shop only sells gluten free products | diet:gluten_free=only -gluten_free.2 | This shop has a big gluten free offering | diet:gluten_free=yes -gluten_free.3 | This shop has a limited gluten free offering | diet:gluten_free=limited -gluten_free.4 | This shop has no gluten free offering | diet:gluten_free=no + + +| id | question | osmTags | +-----|-----|----- | +| lactose_free.0 | *All types* (default) | | +| lactose_free.1 | Only sells lactose free products | diet:lactose_free=only | +| lactose_free.2 | Big lactose free offering | diet:lactose_free=yes | +| lactose_free.3 | Limited lactose free offering | diet:lactose_free=limited | +| lactose_free.4 | No lactose free offering | diet:lactose_free=no | -id | question | osmTags ----- | ---------- | --------- -lactose_free.0 | All types (default) | -lactose_free.1 | Only sells lactose free products | diet:lactose_free=only -lactose_free.2 | Big lactose free offering | diet:lactose_free=yes -lactose_free.3 | Limited lactose free offering | diet:lactose_free=limited -lactose_free.4 | No lactose free offering | diet:lactose_free=no + + +| id | question | osmTags | +-----|-----|----- | +| accepts_cash.0 | Accepts cash | payment:cash=yes | -id | question | osmTags ----- | ---------- | --------- -accepts_cash.0 | Accepts cash | payment:cash=yes + + +| id | question | osmTags | +-----|-----|----- | +| accepts_cards.0 | Accepts payment cards | payment:cards=yes | -id | question | osmTags ----- | ---------- | --------- -accepts_cards.0 | Accepts payment cards | payment:cards=yes + + +| id | question | osmTags | +-----|-----|----- | +| dogs.0 | *No preference towards dogs* (default) | | +| dogs.1 | Dogs allowed | dog=unleashed | dog=yes | +| dogs.2 | No dogs allowed | dog=no | -id | question | osmTags ----- | ---------- | --------- -dogs.0 | No preference towards dogs (default) | -dogs.1 | Dogs allowed | dog=unleashed \| dog=yes -dogs.2 | No dogs allowed | dog=no + + +| id | question | osmTags | +-----|-----|----- | +| oil-type.0 | *No oil type preference* (default) | | +| oil-type.1 | Only show fritures using vegetable oil | friture:oil=vegetable | +| oil-type.2 | Only show fritures using animal oil | friture:oil=animal | -id | question | osmTags ----- | ---------- | --------- -oil-type.0 | No oil type preference (default) | -oil-type.1 | Only show fritures using vegetable oil | friture:oil=vegetable -oil-type.2 | Only show fritures using animal oil | friture:oil=animal - - This document is autogenerated from [assets/themes/fritures/fritures.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/fritures/fritures.json) diff --git a/Docs/Layers/ghost_bike.md b/Docs/Layers/ghost_bike.md index 399272dbea4..82984c840e8 100644 --- a/Docs/Layers/ghost_bike.md +++ b/Docs/Layers/ghost_bike.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# ghost_bike - ghost_bike -============ - - - - +[object Object] A layer showing memorials for cyclists, killed in road accidents - - - - This layer is shown at zoomlevel **0** and higher - - - + - This layer is shown at zoomlevel **0** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [ghost-bike-explanation](#ghost-bike-explanation) @@ -46,49 +37,31 @@ A layer showing memorials for cyclists, killed in road accidents - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [ghostbikes](https://mapcomplete.org/ghostbikes) - - [memorials](https://mapcomplete.org/memorials) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [ghostbikes](https://mapcomplete.org/ghostbikes) + - [memorials](https://mapcomplete.org/memorials) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **memorial=ghost_bike** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22memorial%22%3D%22ghost_bike%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [date](../SpecialInputElements.md#date) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/subject#values) [subject](https://wiki.openstreetmap.org/wiki/Key:subject) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/source#values) [source](https://wiki.openstreetmap.org/wiki/Key:source) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/inscription#values) [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/start_date#values) [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) | [date](../SpecialInputElements.md#date) | ### just_created @@ -267,6 +240,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/ghost_bike/ghost_bike.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/ghost_bike/ghost_bike.json) diff --git a/Docs/Layers/ghostsigns.md b/Docs/Layers/ghostsigns.md index 4f5a7d1aad1..22500f7c917 100644 --- a/Docs/Layers/ghostsigns.md +++ b/Docs/Layers/ghostsigns.md @@ -1,31 +1,22 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# ghostsigns - ghostsigns -============ - - - - +[object Object] Layer showing disused signs on buildings - - - - This layer is shown at zoomlevel **10** and higher - - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) - - - + - This layer is shown at zoomlevel **10** and higher + - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [historic](#historic) @@ -43,22 +34,11 @@ Layer showing disused signs on buildings - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [ghostsigns](https://mapcomplete.org/ghostsigns) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [ghostsigns](https://mapcomplete.org/ghostsigns) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -67,25 +47,18 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22advertising%22%3D%22wall_painting%22%5D%5B%22historic%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/historic#values) [historic](https://wiki.openstreetmap.org/wiki/Key:historic) | Multiple choice | [advertising](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dadvertising) [](https://wiki.openstreetmap.org/wiki/Tag:historic%3D) -[](https://taginfo.openstreetmap.org/keys/inscription#values) [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/brand#values) [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [string](../SpecialInputElements.md#string) | ### just_created @@ -227,6 +200,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/themes/ghostsigns/ghostsigns.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/ghostsigns/ghostsigns.json) diff --git a/Docs/Layers/governments.md b/Docs/Layers/governments.md index 0c9544e16ea..bc9a52ba885 100644 --- a/Docs/Layers/governments.md +++ b/Docs/Layers/governments.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# governments - governments -============= - - - - +[object Object] This layer show governmental buildings. It was setup as commissioned layer for the client of OSOC '22 - - - - This layer is shown at zoomlevel **13** and higher - - - + - This layer is shown at zoomlevel **13** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -42,48 +33,30 @@ This layer show governmental buildings. It was setup as commissioned layer for t - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [onwheels](https://mapcomplete.org/onwheels) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [onwheels](https://mapcomplete.org/onwheels) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **office=government** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22office%22%3D%22government%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | ### just_created @@ -236,6 +209,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/governments/governments.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/governments/governments.json) diff --git a/Docs/Layers/grave.md b/Docs/Layers/grave.md index d95b8ceaaf4..57413a6060e 100644 --- a/Docs/Layers/grave.md +++ b/Docs/Layers/grave.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# grave - grave -======= - - - - +[object Object] Tombstones (and graves) indicate where a person was buried. On this map, those can be recorded and a link to Wikipedia can be made - - - - This layer is shown at zoomlevel **15** and higher - - - + - This layer is shown at zoomlevel **15** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -41,46 +32,28 @@ Tombstones (and graves) indicate where a person was buried. On this map, those c - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [memorials](https://mapcomplete.org/memorials) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [memorials](https://mapcomplete.org/memorials) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **historic=tomb** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22historic%22%3D%22tomb%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [wikidata](../SpecialInputElements.md#wikidata) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/buried:wikidata#values) [buried:wikidata](https://wiki.openstreetmap.org/wiki/Key:buried:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | ### just_created @@ -207,19 +180,17 @@ _This tagrendering has no question and is thus read-only_ - - -#### Filters +#### Filters +| id | question | osmTags | +-----|-----|----- | +| has_wikidata.0 | *With or without wikidata* (default) | | +| has_wikidata.1 | Has a link to Wikidata | buried:wikidata~.+ | +| has_wikidata.2 | Has no link to Wikidata | buried:wikidata= | + -id | question | osmTags ----- | ---------- | --------- -has_wikidata.0 | With or without wikidata (default) | -has_wikidata.1 | Has a link to Wikidata | buried:wikidata~.+ -has_wikidata.2 | Has no link to Wikidata | buried:wikidata= - This document is autogenerated from [assets/layers/grave/grave.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/grave/grave.json) diff --git a/Docs/Layers/guidepost.md b/Docs/Layers/guidepost.md index 11554792ed7..f8d92d7de1f 100644 --- a/Docs/Layers/guidepost.md +++ b/Docs/Layers/guidepost.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# guidepost - guidepost -=========== - - - - +[object Object] Guideposts (also known as fingerposts or finger posts) are often found along official hiking/cycling/riding/skiing routes to indicate the directions to different destinations - - - - This layer is shown at zoomlevel **14** and higher - - - + - This layer is shown at zoomlevel **14** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -41,47 +32,29 @@ Guideposts (also known as fingerposts or finger posts) are often found along off - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [climbing](https://mapcomplete.org/climbing) - - [guideposts](https://mapcomplete.org/guideposts) - - [nature](https://mapcomplete.org/nature) - - [personal](https://mapcomplete.org/personal) - - [ski](https://mapcomplete.org/ski) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [climbing](https://mapcomplete.org/climbing) + - [guideposts](https://mapcomplete.org/guideposts) + - [nature](https://mapcomplete.org/nature) + - [personal](https://mapcomplete.org/personal) + - [ski](https://mapcomplete.org/ski) +## Basic tags for this layer Elements must match the expression **information=guidepost** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22information%22%3D%22guidepost%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | ### just_created @@ -219,6 +192,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/guidepost/guidepost.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/guidepost/guidepost.json) diff --git a/Docs/Layers/hackerspace.md b/Docs/Layers/hackerspace.md index 38033118950..a9110cc91c7 100644 --- a/Docs/Layers/hackerspace.md +++ b/Docs/Layers/hackerspace.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# hackerspace - hackerspace -============= - - - - +[object Object] Hackerspace - - - - This layer is shown at zoomlevel **8** and higher - - - + - This layer is shown at zoomlevel **8** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -65,67 +56,49 @@ Hackerspace - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [hackerspaces](https://mapcomplete.org/hackerspaces) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [hackerspaces](https://mapcomplete.org/hackerspaces) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **leisure=hackerspace** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22leisure%22%3D%22hackerspace%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [fediverse](../SpecialInputElements.md#fediverse) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [date](../SpecialInputElements.md#date) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/hackerspace#values) [hackerspace](https://wiki.openstreetmap.org/wiki/Key:hackerspace) | Multiple choice | [makerspace](https://wiki.openstreetmap.org/wiki/Tag:hackerspace%3Dmakerspace) [](https://wiki.openstreetmap.org/wiki/Tag:hackerspace%3D) -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/contact:mastodon#values) [contact:mastodon](https://wiki.openstreetmap.org/wiki/Key:contact:mastodon) | [fediverse](../SpecialInputElements.md#fediverse) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) -[](https://taginfo.openstreetmap.org/keys/service:3dprinter#values) [service:3dprinter](https://wiki.openstreetmap.org/wiki/Key:service:3dprinter) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:3dprinter%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:3dprinter%3Dno) -[](https://taginfo.openstreetmap.org/keys/service:lasercutter#values) [service:lasercutter](https://wiki.openstreetmap.org/wiki/Key:service:lasercutter) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:lasercutter%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:lasercutter%3Dno) -[](https://taginfo.openstreetmap.org/keys/service:cnc_drilling_machine#values) [service:cnc_drilling_machine](https://wiki.openstreetmap.org/wiki/Key:service:cnc_drilling_machine) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:cnc_drilling_machine%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:cnc_drilling_machine%3Dno) -[](https://taginfo.openstreetmap.org/keys/service:media_studio#values) [service:media_studio](https://wiki.openstreetmap.org/wiki/Key:service:media_studio) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:media_studio%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:media_studio%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:service:media_studio%3Dlimited) -[](https://taginfo.openstreetmap.org/keys/service:sewing_machine#values) [service:sewing_machine](https://wiki.openstreetmap.org/wiki/Key:service:sewing_machine) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:sewing_machine%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:sewing_machine%3Dno) -[](https://taginfo.openstreetmap.org/keys/service:workshop:wood#values) [service:workshop:wood](https://wiki.openstreetmap.org/wiki/Key:service:workshop:wood) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:workshop:wood%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:workshop:wood%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:service:workshop:wood%3Dlimited) -[](https://taginfo.openstreetmap.org/keys/service:workshop:ceramics#values) [service:workshop:ceramics](https://wiki.openstreetmap.org/wiki/Key:service:workshop:ceramics) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:workshop:ceramics%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:workshop:ceramics%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:service:workshop:ceramics%3Dlimited) -[](https://taginfo.openstreetmap.org/keys/service:workshop:metal#values) [service:workshop:metal](https://wiki.openstreetmap.org/wiki/Key:service:workshop:metal) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:workshop:metal%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:workshop:metal%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:service:workshop:metal%3Dlimited) -[](https://taginfo.openstreetmap.org/keys/service:bicycle:diy#values) [service:bicycle:diy](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dlimited) -[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) -[](https://taginfo.openstreetmap.org/keys/drink:club-mate#values) [drink:club-mate](https://wiki.openstreetmap.org/wiki/Key:drink:club-mate) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:drink:club-mate%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:drink:club-mate%3Dno) -[](https://taginfo.openstreetmap.org/keys/start_date#values) [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) | [date](../SpecialInputElements.md#date) | -[](https://taginfo.openstreetmap.org/keys/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired) -[](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers) -[](https://taginfo.openstreetmap.org/keys/internet_access:ssid#values) [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom) ### just_created @@ -519,6 +492,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/hackerspace/hackerspace.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/hackerspace/hackerspace.json) diff --git a/Docs/Layers/health_and_social_places_without_etymology.md b/Docs/Layers/health_and_social_places_without_etymology.md index 38b80b4593b..ae007d01dbf 100644 --- a/Docs/Layers/health_and_social_places_without_etymology.md +++ b/Docs/Layers/health_and_social_places_without_etymology.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# health_and_social_places_without_etymology - health_and_social_places_without_etymology -============================================ - - - - +[object Object] All objects which have an etymology known - - - - This layer is shown at zoomlevel **18** and higher - - - + - This layer is shown at zoomlevel **18** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [etymology-images-from-wikipedia](#etymology-images-from-wikipedia) @@ -44,22 +35,11 @@ All objects which have an etymology known - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [etymology](https://mapcomplete.org/etymology) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [etymology](https://mapcomplete.org/etymology) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -68,24 +48,17 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22clinic%22%5D%5B%22name%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22hospital%22%5D%5B%22name%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22social_facility%22%5D%5B%22name%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [wikidata](../SpecialInputElements.md#wikidata) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name:etymology:wikidata#values) [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | -[](https://taginfo.openstreetmap.org/keys/name:etymology#values) [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology) | [string](../SpecialInputElements.md#string) | [unknown](https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown) ### just_created @@ -242,6 +215,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/themes/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/etymology/etymology.json) diff --git a/Docs/Layers/hospital.md b/Docs/Layers/hospital.md index a2599b6beb7..8c519d70b3d 100644 --- a/Docs/Layers/hospital.md +++ b/Docs/Layers/hospital.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# hospital - hospital -========== - - - - +[object Object] A layer showing hospital grounds - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [name](#name) @@ -42,25 +33,14 @@ A layer showing hospital grounds - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [disaster_response](https://mapcomplete.org/disaster_response) - - [healthcare](https://mapcomplete.org/healthcare) - - [onwheels](https://mapcomplete.org/onwheels) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [disaster_response](https://mapcomplete.org/disaster_response) + - [healthcare](https://mapcomplete.org/healthcare) + - [onwheels](https://mapcomplete.org/onwheels) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -69,28 +49,21 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22hospital%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22clinic%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/amenity#values) [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [clinic](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dclinic) [hospital](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dhospital) -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/opening_hours:visitors#values) [opening_hours:visitors](https://wiki.openstreetmap.org/wiki/Key:opening_hours:visitors) | [opening_hours](../SpecialInputElements.md#opening_hours) | ### just_created @@ -245,6 +218,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/hospital/hospital.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/hospital/hospital.json) diff --git a/Docs/Layers/hotel.md b/Docs/Layers/hotel.md index f3a557084a1..e1a21fe3362 100644 --- a/Docs/Layers/hotel.md +++ b/Docs/Layers/hotel.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# hotel - hotel -======= - - - - +[object Object] Layer showing all hotels - - - - This layer is shown at zoomlevel **13** and higher - - - + - This layer is shown at zoomlevel **13** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -48,54 +39,36 @@ Layer showing all hotels - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [hotels](https://mapcomplete.org/hotels) - - [onwheels](https://mapcomplete.org/onwheels) - - [openlovemap](https://mapcomplete.org/openlovemap) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [hotels](https://mapcomplete.org/hotels) + - [onwheels](https://mapcomplete.org/onwheels) + - [openlovemap](https://mapcomplete.org/openlovemap) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **tourism=hotel** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22tourism%22%3D%22hotel%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) -[](https://taginfo.openstreetmap.org/keys/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired) -[](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers) -[](https://taginfo.openstreetmap.org/keys/internet_access:ssid#values) [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom) ### just_created @@ -311,6 +284,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/hotel/hotel.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/hotel/hotel.json) diff --git a/Docs/Layers/hydrant.md b/Docs/Layers/hydrant.md index e98f22e2dbd..01e8f27a274 100644 --- a/Docs/Layers/hydrant.md +++ b/Docs/Layers/hydrant.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# hydrant - hydrant -========= - - - - +[object Object] Map layer to show fire hydrants. - - - - This layer is shown at zoomlevel **14** and higher - - - + - This layer is shown at zoomlevel **14** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [hydrant-color](#hydrant-color) @@ -46,51 +37,33 @@ Map layer to show fire hydrants. - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [hailhydrant](https://mapcomplete.org/hailhydrant) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [hailhydrant](https://mapcomplete.org/hailhydrant) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **emergency=fire_hydrant** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22emergency%22%3D%22fire_hydrant%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [int](../SpecialInputElements.md#int) | | +| ] [object Object] | [int](../SpecialInputElements.md#int) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/colour#values) [colour](https://wiki.openstreetmap.org/wiki/Key:colour) | [string](../SpecialInputElements.md#string) | [yellow](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow) [red](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred) -[](https://taginfo.openstreetmap.org/keys/fire_hydrant:type#values) [fire_hydrant:type](https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type) | [string](../SpecialInputElements.md#string) | [pillar](https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dpillar) [pipe](https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dpipe) [wall](https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dwall) [underground](https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dunderground) -[](https://taginfo.openstreetmap.org/keys/emergency#values) [emergency](https://wiki.openstreetmap.org/wiki/Key:emergency) | Multiple choice | [fire_hydrant](https://wiki.openstreetmap.org/wiki/Tag:emergency%3Dfire_hydrant) [](https://wiki.openstreetmap.org/wiki/Tag:emergency%3D) [](https://wiki.openstreetmap.org/wiki/Tag:emergency%3D) -[](https://taginfo.openstreetmap.org/keys/fire_hydrant:diameter#values) [fire_hydrant:diameter](https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:diameter) | [int](../SpecialInputElements.md#int) | -[](https://taginfo.openstreetmap.org/keys/couplings#values) [couplings](https://wiki.openstreetmap.org/wiki/Key:couplings) | [int](../SpecialInputElements.md#int) | -[](https://taginfo.openstreetmap.org/keys/couplings:type#values) [couplings:type](https://wiki.openstreetmap.org/wiki/Key:couplings:type) | [string](../SpecialInputElements.md#string) | [Storz](https://wiki.openstreetmap.org/wiki/Tag:couplings:type%3DStorz) [UNI](https://wiki.openstreetmap.org/wiki/Tag:couplings:type%3DUNI) [Barcelona](https://wiki.openstreetmap.org/wiki/Tag:couplings:type%3DBarcelona) -[](https://taginfo.openstreetmap.org/keys/couplings:diameters#values) [couplings:diameters](https://wiki.openstreetmap.org/wiki/Key:couplings:diameters) | [string](../SpecialInputElements.md#string) | ### just_created @@ -279,6 +252,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/hydrant/hydrant.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/hydrant/hydrant.json) diff --git a/Docs/Layers/ice_cream.md b/Docs/Layers/ice_cream.md index eca9ab2321e..a05f5408649 100644 --- a/Docs/Layers/ice_cream.md +++ b/Docs/Layers/ice_cream.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# ice_cream - ice_cream -=========== - - - - +[object Object] A place where ice cream is sold over the counter - - - - This layer is shown at zoomlevel **14** and higher - - - + - This layer is shown at zoomlevel **14** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -50,56 +41,38 @@ A place where ice cream is sold over the counter - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [food](https://mapcomplete.org/food) - - [icecream](https://mapcomplete.org/icecream) - - [personal](https://mapcomplete.org/personal) - - [shops](https://mapcomplete.org/shops) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [food](https://mapcomplete.org/food) + - [icecream](https://mapcomplete.org/icecream) + - [personal](https://mapcomplete.org/personal) + - [shops](https://mapcomplete.org/shops) +## Basic tags for this layer Elements must match the expression **amenity=ice_cream** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22ice_cream%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/diet:sugar_free#values) [diet:sugar_free](https://wiki.openstreetmap.org/wiki/Key:diet:sugar_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:lactose_free#values) [diet:lactose_free](https://wiki.openstreetmap.org/wiki/Key:diet:lactose_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:gluten_free#values) [diet:gluten_free](https://wiki.openstreetmap.org/wiki/Key:diet:gluten_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:vegan#values) [diet:vegan](https://wiki.openstreetmap.org/wiki/Key:diet:vegan) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno) -[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) ### just_created @@ -343,6 +316,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/ice_cream/ice_cream.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/ice_cream/ice_cream.json) diff --git a/Docs/Layers/indoors.md b/Docs/Layers/indoors.md index b5789e6f153..1ebe1258cd4 100644 --- a/Docs/Layers/indoors.md +++ b/Docs/Layers/indoors.md @@ -1,31 +1,22 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# indoors - indoors -========= - - - - +[object Object] Basic indoor mapping: shows room outlines - - - - This layer is shown at zoomlevel **13** and higher - - This layer is needed as dependency for layer [entrance](#entrance) - - - + - This layer is shown at zoomlevel **13** and higher + - This layer is needed as dependency for layer [entrance](#entrance) ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -58,26 +49,15 @@ Basic indoor mapping: shows room outlines - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [indoors](https://mapcomplete.org/indoors) - - [onwheels](https://mapcomplete.org/onwheels) - - [personal](https://mapcomplete.org/personal) - - [stations](https://mapcomplete.org/stations) - - [walls_and_buildings](https://mapcomplete.org/walls_and_buildings) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [indoors](https://mapcomplete.org/indoors) + - [onwheels](https://mapcomplete.org/onwheels) + - [personal](https://mapcomplete.org/personal) + - [stations](https://mapcomplete.org/stations) + - [walls_and_buildings](https://mapcomplete.org/walls_and_buildings) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -89,39 +69,32 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22indoor%22%3D%22room%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22indoor%22%3D%22area%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22indoor%22%3D%22wall%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22indoor%22%3D%22door%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22indoor%22%3D%22level%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [wikidata](../SpecialInputElements.md#wikidata) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/room#values) [room](https://wiki.openstreetmap.org/wiki/Key:room) | Multiple choice | [administration](https://wiki.openstreetmap.org/wiki/Tag:room%3Dadministration) [auditorium](https://wiki.openstreetmap.org/wiki/Tag:room%3Dauditorium) [bedroom](https://wiki.openstreetmap.org/wiki/Tag:room%3Dbedroom) [chapel](https://wiki.openstreetmap.org/wiki/Tag:room%3Dchapel) [class](https://wiki.openstreetmap.org/wiki/Tag:room%3Dclass) [computer](https://wiki.openstreetmap.org/wiki/Tag:room%3Dcomputer) [conference](https://wiki.openstreetmap.org/wiki/Tag:room%3Dconference) [crypt](https://wiki.openstreetmap.org/wiki/Tag:room%3Dcrypt) [kitchen](https://wiki.openstreetmap.org/wiki/Tag:room%3Dkitchen) [laboratory](https://wiki.openstreetmap.org/wiki/Tag:room%3Dlaboratory) [library](https://wiki.openstreetmap.org/wiki/Tag:room%3Dlibrary) [locker](https://wiki.openstreetmap.org/wiki/Tag:room%3Dlocker) [nursery](https://wiki.openstreetmap.org/wiki/Tag:room%3Dnursery) [office](https://wiki.openstreetmap.org/wiki/Tag:room%3Doffice) [prison_cell](https://wiki.openstreetmap.org/wiki/Tag:room%3Dprison_cell) [restaurant](https://wiki.openstreetmap.org/wiki/Tag:room%3Drestaurant) [security_check](https://wiki.openstreetmap.org/wiki/Tag:room%3Dsecurity_check) [sport](https://wiki.openstreetmap.org/wiki/Tag:room%3Dsport) [storage](https://wiki.openstreetmap.org/wiki/Tag:room%3Dstorage) [technical](https://wiki.openstreetmap.org/wiki/Tag:room%3Dtechnical) [toilets](https://wiki.openstreetmap.org/wiki/Tag:room%3Dtoilets) [waiting](https://wiki.openstreetmap.org/wiki/Tag:room%3Dwaiting) -[](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/name:etymology:wikidata#values) [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | -[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [no](https://wiki.openstreetmap.org/wiki/Tag:access%3Dno) [key](https://wiki.openstreetmap.org/wiki/Tag:access%3Dkey) -[](https://taginfo.openstreetmap.org/keys/fee#values) [fee](https://wiki.openstreetmap.org/wiki/Key:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) -[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) -[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) -[](https://taginfo.openstreetmap.org/keys/door:width#values) [door:width](https://wiki.openstreetmap.org/wiki/Key:door:width) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/toilets:position#values) [toilets:position](https://wiki.openstreetmap.org/wiki/Key:toilets:position) | Multiple choice | [seated](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dseated) [urinal](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Durinal) [squat](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dsquat) [seated;urinal](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dseated;urinal) -[](https://taginfo.openstreetmap.org/keys/changing_table#values) [changing_table](https://wiki.openstreetmap.org/wiki/Key:changing_table) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:changing_table%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:changing_table%3Dno) -[](https://taginfo.openstreetmap.org/keys/changing_table:location#values) [changing_table:location](https://wiki.openstreetmap.org/wiki/Key:changing_table:location) | [string](../SpecialInputElements.md#string) | [female_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dfemale_toilet) [male_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dmale_toilet) [wheelchair_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dwheelchair_toilet) [dedicated_room](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Ddedicated_room) -[](https://taginfo.openstreetmap.org/keys/toilets:handwashing#values) [toilets:handwashing](https://wiki.openstreetmap.org/wiki/Key:toilets:handwashing) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dno) -[](https://taginfo.openstreetmap.org/keys/toilets:paper_supplied#values) [toilets:paper_supplied](https://wiki.openstreetmap.org/wiki/Key:toilets:paper_supplied) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:paper_supplied%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:paper_supplied%3Dno) ### just_created @@ -475,6 +448,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/indoors/indoors.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/indoors/indoors.json) diff --git a/Docs/Layers/information_board.md b/Docs/Layers/information_board.md index 930a849d9db..bd3259f5a72 100644 --- a/Docs/Layers/information_board.md +++ b/Docs/Layers/information_board.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# information_board - information_board -=================== - - - - +[object Object] A layer showing touristical, road side information boards (e.g. giving information about the landscape, a building, a feature, a map, …) - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -40,45 +31,27 @@ A layer showing touristical, road side information boards (e.g. giving informati - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [nature](https://mapcomplete.org/nature) - - [personal](https://mapcomplete.org/personal) - - [ski](https://mapcomplete.org/ski) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [nature](https://mapcomplete.org/nature) + - [personal](https://mapcomplete.org/personal) + - [ski](https://mapcomplete.org/ski) +## Basic tags for this layer Elements must match the expression **information=board** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22information%22%3D%22board%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | ### just_created @@ -199,6 +172,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/information_board/information_board.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/information_board/information_board.json) diff --git a/Docs/Layers/item_with_image.md b/Docs/Layers/item_with_image.md index f32d3b5e409..4d379180b50 100644 --- a/Docs/Layers/item_with_image.md +++ b/Docs/Layers/item_with_image.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# item_with_image - item_with_image -================= - - - - +[object Object] All items with an image. All alone, not a layer which is relevant for any MapComplete theme, as it is a random collection of items. However, when put into the databank, this allows to quickly fetch (the URL of) pictures nearby a different object, to quickly link this - - - - This layer is shown at zoomlevel **14** and higher - - - + - This layer is shown at zoomlevel **14** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -38,22 +29,11 @@ All items with an image. All alone, not a layer which is relevant for any MapCom - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [items_with_image](https://mapcomplete.org/items_with_image) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [items_with_image](https://mapcomplete.org/items_with_image) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -72,22 +52,15 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22image%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22image%3A0%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22image%3A1%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22image%3A10%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22image%3A2%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22image%3A3%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22image%3A4%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22image%3A5%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22image%3A6%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22image%3A7%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22image%3A8%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22image%3A9%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | ### just_created @@ -192,6 +165,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/item_with_image/item_with_image.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/item_with_image/item_with_image.json) diff --git a/Docs/Layers/kerbs.md b/Docs/Layers/kerbs.md index 46b45131903..98299592377 100644 --- a/Docs/Layers/kerbs.md +++ b/Docs/Layers/kerbs.md @@ -1,33 +1,24 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# kerbs - kerbs -======= - - - - +[object Object] A layer showing kerbs. - - - - This layer is shown at zoomlevel **13** and higher - - This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) - - This layer will automatically load [kerbs](./kerbs.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) - - This layer is needed as dependency for layer [kerbs](#kerbs) - - - + - This layer is shown at zoomlevel **13** and higher + - This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) + - This layer will automatically load [kerbs](./kerbs.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) + - This layer is needed as dependency for layer [kerbs](#kerbs) ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -45,49 +36,31 @@ A layer showing kerbs. - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [blind_osm](https://mapcomplete.org/blind_osm) - - [kerbs_and_crossings](https://mapcomplete.org/kerbs_and_crossings) - - [onwheels](https://mapcomplete.org/onwheels) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [blind_osm](https://mapcomplete.org/blind_osm) + - [kerbs_and_crossings](https://mapcomplete.org/kerbs_and_crossings) + - [onwheels](https://mapcomplete.org/onwheels) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **barrier=kerb** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22barrier%22%3D%22kerb%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/kerb#values) [kerb](https://wiki.openstreetmap.org/wiki/Key:kerb) | Multiple choice | [raised](https://wiki.openstreetmap.org/wiki/Tag:kerb%3Draised) [lowered](https://wiki.openstreetmap.org/wiki/Tag:kerb%3Dlowered) [flush](https://wiki.openstreetmap.org/wiki/Tag:kerb%3Dflush) -[](https://taginfo.openstreetmap.org/keys/tactile_paving#values) [tactile_paving](https://wiki.openstreetmap.org/wiki/Key:tactile_paving) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dno) -[](https://taginfo.openstreetmap.org/keys/kerb:height#values) [kerb:height](https://wiki.openstreetmap.org/wiki/Key:kerb:height) | [pnat](../SpecialInputElements.md#pnat) | [0](https://wiki.openstreetmap.org/wiki/Tag:kerb:height%3D0) ### just_created @@ -229,32 +202,32 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| kerb-type.0 | *All types of kerbs* (default) | | +| kerb-type.1 | Raised kerb (>3 cm) | kerb=raised | +| kerb-type.2 | Lowered kerb (~3 cm) | kerb=lowered | +| kerb-type.3 | Flush kerb (~0cm) | kerb=flush | +| kerb-type.4 | No kerb | kerb=no | +| kerb-type.5 | Kerb with unknown height | kerb= | -id | question | osmTags ----- | ---------- | --------- -kerb-type.0 | All types of kerbs (default) | -kerb-type.1 | Raised kerb (>3 cm) | kerb=raised -kerb-type.2 | Lowered kerb (~3 cm) | kerb=lowered -kerb-type.3 | Flush kerb (~0cm) | kerb=flush -kerb-type.4 | No kerb | kerb=no -kerb-type.5 | Kerb with unknown height | kerb= + +| id | question | osmTags | +-----|-----|----- | +| tactile_paving_advanced.0 | *With or without tactile paving* (default) | | +| tactile_paving_advanced.1 | With tactile paving | tactile_paving=yes | +| tactile_paving_advanced.2 | Without tactile paving | tactile_paving=no | +| tactile_paving_advanced.3 | No information about tactile paving | tactile_paving= | -id | question | osmTags ----- | ---------- | --------- -tactile_paving_advanced.0 | With or without tactile paving (default) | -tactile_paving_advanced.1 | With tactile paving | tactile_paving=yes -tactile_paving_advanced.2 | Without tactile paving | tactile_paving=no -tactile_paving_advanced.3 | No information about tactile paving | tactile_paving= - - This document is autogenerated from [assets/layers/kerbs/kerbs.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/kerbs/kerbs.json) diff --git a/Docs/Layers/kindergarten_childcare.md b/Docs/Layers/kindergarten_childcare.md index 64b03dd04f1..e7c033ec3fa 100644 --- a/Docs/Layers/kindergarten_childcare.md +++ b/Docs/Layers/kindergarten_childcare.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# kindergarten_childcare - kindergarten_childcare -======================== - - - - +[object Object] Shows kindergartens and preschools. Both are grouped in one layer, as they are regularly confused with each other - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [childcare-type](#childcare-type) @@ -45,23 +36,12 @@ Shows kindergartens and preschools. Both are grouped in one layer, as they are r - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [education](https://mapcomplete.org/education) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [education](https://mapcomplete.org/education) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -71,29 +51,22 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22childcare%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22kindergarten%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22isced%3Alevel%3A2011%22%3D%22early_childhood%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/amenity#values) [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [kindergarten](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dkindergarten) [childcare](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dchildcare) -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [pnat](../SpecialInputElements.md#pnat) | ### just_created @@ -275,6 +248,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/kindergarten_childcare/kindergarten_childcare.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/kindergarten_childcare/kindergarten_childcare.json) diff --git a/Docs/Layers/lighthouse.md b/Docs/Layers/lighthouse.md index 1dcdf259219..cfa2421821e 100644 --- a/Docs/Layers/lighthouse.md +++ b/Docs/Layers/lighthouse.md @@ -1,28 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# lighthouse - lighthouse -============ +[object Object] - - - - - - This layer is shown at zoomlevel **5** and higher - - - + - This layer is shown at zoomlevel **5** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -38,46 +31,28 @@ - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [lighthouses](https://mapcomplete.org/lighthouses) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [lighthouses](https://mapcomplete.org/lighthouses) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **man_made=lighthouse** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22man_made%22%3D%22lighthouse%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [wikidata](../SpecialInputElements.md#wikidata) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/wikidata#values) [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | -[](https://taginfo.openstreetmap.org/keys/height#values) [height](https://wiki.openstreetmap.org/wiki/Key:height) | [pfloat](../SpecialInputElements.md#pfloat) | ### just_created @@ -205,6 +180,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/lighthouse/lighthouse.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/lighthouse/lighthouse.json) diff --git a/Docs/Layers/lit_streets.md b/Docs/Layers/lit_streets.md index a2726ef12da..4ee59883efa 100644 --- a/Docs/Layers/lit_streets.md +++ b/Docs/Layers/lit_streets.md @@ -1,29 +1,22 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# lit_streets - lit_streets -============= +[object Object] - - - - - - This layer is shown at zoomlevel **16** and higher - - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` - - - + - This layer is shown at zoomlevel **16** and higher + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -39,22 +32,11 @@ - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [street_lighting](https://mapcomplete.org/street_lighting) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [street_lighting](https://mapcomplete.org/street_lighting) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -65,23 +47,16 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22highway%22%5D%5B%22lit%22!%3D%22no%22%5D%5B%22lit%22%5D%5B%22service%22!%3D%22driveway%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/lit#values) [lit](https://wiki.openstreetmap.org/wiki/Key:lit) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno) [24/7](https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7) ### just_created @@ -206,6 +181,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/themes/street_lighting/street_lighting.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/street_lighting/street_lighting.json) diff --git a/Docs/Layers/love_hotel.md b/Docs/Layers/love_hotel.md index 8d1efbc71f2..904c8e14270 100644 --- a/Docs/Layers/love_hotel.md +++ b/Docs/Layers/love_hotel.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# love_hotel - love_hotel -============ - - - - +[object Object] A love hotel is a type of short-stay hotel found around the world operated primarily for the purpose of allowing guests privacy for sexual activities - - - - This layer is shown at zoomlevel **10** and higher - - - + - This layer is shown at zoomlevel **10** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -43,49 +34,31 @@ A love hotel is a type of short-stay hotel found around the world operated prima - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [hotels](https://mapcomplete.org/hotels) - - [openlovemap](https://mapcomplete.org/openlovemap) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [hotels](https://mapcomplete.org/hotels) + - [openlovemap](https://mapcomplete.org/openlovemap) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **amenity=love_hotel** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22love_hotel%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | ### just_created @@ -246,6 +219,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/love_hotel/love_hotel.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/love_hotel/love_hotel.json) diff --git a/Docs/Layers/map.md b/Docs/Layers/map.md index 924b8323cfa..0e5f62efff0 100644 --- a/Docs/Layers/map.md +++ b/Docs/Layers/map.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# map - map -===== - - - - +[object Object] A map, meant for tourists which is permanently installed in the public space - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -44,25 +35,14 @@ A map, meant for tourists which is permanently installed in the public space - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [maps](https://mapcomplete.org/maps) - - [nature](https://mapcomplete.org/nature) - - [personal](https://mapcomplete.org/personal) - - [ski](https://mapcomplete.org/ski) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [maps](https://mapcomplete.org/maps) + - [nature](https://mapcomplete.org/nature) + - [personal](https://mapcomplete.org/personal) + - [ski](https://mapcomplete.org/ski) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -71,26 +51,19 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22information%22%3D%22map%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22map%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/map_type#values) [map_type](https://wiki.openstreetmap.org/wiki/Key:map_type) | Multiple choice | [topo](https://wiki.openstreetmap.org/wiki/Tag:map_type%3Dtopo) [street](https://wiki.openstreetmap.org/wiki/Tag:map_type%3Dstreet) [scheme](https://wiki.openstreetmap.org/wiki/Tag:map_type%3Dscheme) [toposcope](https://wiki.openstreetmap.org/wiki/Tag:map_type%3Dtoposcope) -[](https://taginfo.openstreetmap.org/keys/map_size#values) [map_size](https://wiki.openstreetmap.org/wiki/Key:map_size) | Multiple choice | [building](https://wiki.openstreetmap.org/wiki/Tag:map_size%3Dbuilding) [site](https://wiki.openstreetmap.org/wiki/Tag:map_size%3Dsite) [village](https://wiki.openstreetmap.org/wiki/Tag:map_size%3Dvillage) [city](https://wiki.openstreetmap.org/wiki/Tag:map_size%3Dcity) [region](https://wiki.openstreetmap.org/wiki/Tag:map_size%3Dregion) -[](https://taginfo.openstreetmap.org/keys/map_source#values) [map_source](https://wiki.openstreetmap.org/wiki/Key:map_source) | [string](../SpecialInputElements.md#string) | [OpenStreetMap](https://wiki.openstreetmap.org/wiki/Tag:map_source%3DOpenStreetMap) -[](https://taginfo.openstreetmap.org/keys/map_source:attribution#values) [map_source:attribution](https://wiki.openstreetmap.org/wiki/Key:map_source:attribution) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dyes) [incomplete](https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dincomplete) [sticker](https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dsticker) [none](https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dnone) ### just_created @@ -259,6 +232,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/map/map.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/map/map.json) diff --git a/Docs/Layers/maproulette.md b/Docs/Layers/maproulette.md index d3e66bc63b8..4f9471f2539 100644 --- a/Docs/Layers/maproulette.md +++ b/Docs/Layers/maproulette.md @@ -1,31 +1,26 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# maproulette - maproulette -============= - - - - +[object Object] Layer showing all tasks in MapRoulette + - This layer is shown at zoomlevel **15** and higher + - +This layer is loaded from an external source, namely - - This layer is shown at zoomlevel **15** and higher - - This layer is loaded from an external source, namely `https://maproulette.org/api/v2/tasks/box/{x_min}/{y_min}/{x_max}/{y_max}` - - - +`https://maproulette.org/api/v2/tasks/box/{x_min}/{y_min}/{x_max}/{y_max}` ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [status](#status) @@ -42,44 +37,26 @@ Layer showing all tasks in MapRoulette - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [maproulette](https://mapcomplete.org/maproulette) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [maproulette](https://mapcomplete.org/maproulette) +## Basic tags for this layer Elements must match the expression **title~.+** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22title%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/status#values) [status](https://wiki.openstreetmap.org/wiki/Key:status) | Multiple choice | [0](https://wiki.openstreetmap.org/wiki/Tag:status%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:status%3D1) [2](https://wiki.openstreetmap.org/wiki/Tag:status%3D2) [3](https://wiki.openstreetmap.org/wiki/Tag:status%3D3) [4](https://wiki.openstreetmap.org/wiki/Tag:status%3D4) [5](https://wiki.openstreetmap.org/wiki/Tag:status%3D5) [6](https://wiki.openstreetmap.org/wiki/Tag:status%3D6) [9](https://wiki.openstreetmap.org/wiki/Tag:status%3D9) ### just_created @@ -211,39 +188,41 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| status.0 | *Show tasks with all statuses* (default) | | +| status.1 | Show tasks that are created | status=0 | +| status.2 | Show tasks that are fixed | status=1 | +| status.3 | Show tasks that are false positives | status=2 | +| status.4 | Show tasks that are skipped | status=3 | +| status.5 | Show tasks that are deleted | status=4 | +| status.6 | Show tasks that are already fixed | status=5 | +| status.7 | Show tasks that are marked as too hard | status=6 | +| status.8 | Show tasks that are disabled | status=9 | -id | question | osmTags ----- | ---------- | --------- -status.0 | Show tasks with all statuses (default) | -status.1 | Show tasks that are created | status=0 -status.2 | Show tasks that are fixed | status=1 -status.3 | Show tasks that are false positives | status=2 -status.4 | Show tasks that are skipped | status=3 -status.5 | Show tasks that are deleted | status=4 -status.6 | Show tasks that are already fixed | status=5 -status.7 | Show tasks that are marked as too hard | status=6 -status.8 | Show tasks that are disabled | status=9 + +| id | question | osmTags | fields | +-----|-----|-----|----- | +| parent-name.0 | Challenge name contains {search} | | search (string) | -id | question | osmTags | fields ----- | ---------- | --------- | -------- -parent-name.0 | Challenge name contains {search} | | search (string) + + +| id | question | osmTags | fields | +-----|-----|-----|----- | +| parent-id.0 | Challenge ID matches {search} | | search (string) | -id | question | osmTags | fields ----- | ---------- | --------- | -------- -parent-id.0 | Challenge ID matches {search} | | search (string) - - This document is autogenerated from [assets/layers/maproulette/maproulette.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/maproulette/maproulette.json) diff --git a/Docs/Layers/maproulette_challenge.md b/Docs/Layers/maproulette_challenge.md index 9606fc7c39e..da6f0c0a3da 100644 --- a/Docs/Layers/maproulette_challenge.md +++ b/Docs/Layers/maproulette_challenge.md @@ -1,32 +1,27 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# maproulette_challenge - maproulette_challenge -======================= - - - - +[object Object] Layer showing tasks of a single MapRoulette challenge. This layer is intended to be reused and extended in themes; refer to [the documentation](https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Integrating_Maproulette.md) on how to do this. + - This layer is shown at zoomlevel **0** and higher + - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` + - +This layer is loaded from an external source, namely - - This layer is shown at zoomlevel **0** and higher - - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` - - This layer is loaded from an external source, namely `https://maproulette.org/api/v2/challenge/view/27971` - - - +`https://maproulette.org/api/v2/challenge/view/27971` ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [details](#details) @@ -41,47 +36,29 @@ Layer showing tasks of a single MapRoulette challenge. This layer is intended to - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [atm](https://mapcomplete.org/atm) - - [onwheels](https://mapcomplete.org/onwheels) - - [personal](https://mapcomplete.org/personal) - - [street_lighting_assen](https://mapcomplete.org/street_lighting_assen) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [atm](https://mapcomplete.org/atm) + - [onwheels](https://mapcomplete.org/onwheels) + - [personal](https://mapcomplete.org/personal) + - [street_lighting_assen](https://mapcomplete.org/street_lighting_assen) +## Basic tags for this layer Elements must match the expression **mr_taskId~.+** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22mr_taskId%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/mr_taskStatus#values) [mr_taskStatus](https://wiki.openstreetmap.org/wiki/Key:mr_taskStatus) | Multiple choice | [Created](https://wiki.openstreetmap.org/wiki/Tag:mr_taskStatus%3DCreated) [Fixed](https://wiki.openstreetmap.org/wiki/Tag:mr_taskStatus%3DFixed) [False positive](https://wiki.openstreetmap.org/wiki/Tag:mr_taskStatus%3DFalse positive) [Skipped](https://wiki.openstreetmap.org/wiki/Tag:mr_taskStatus%3DSkipped) [Deleted](https://wiki.openstreetmap.org/wiki/Tag:mr_taskStatus%3DDeleted) [Already fixed](https://wiki.openstreetmap.org/wiki/Tag:mr_taskStatus%3DAlready fixed) [Too hard](https://wiki.openstreetmap.org/wiki/Tag:mr_taskStatus%3DToo hard) [Disabled](https://wiki.openstreetmap.org/wiki/Tag:mr_taskStatus%3DDisabled) ### just_created @@ -194,25 +171,23 @@ _This tagrendering has no question and is thus read-only_ - - -#### Filters +#### Filters +| id | question | osmTags | +-----|-----|----- | +| status.0 | *Show tasks with all statuses* (default) | | +| status.1 | Show tasks that are created | mr_taskStatus=Created | +| status.2 | Show tasks that are fixed | mr_taskStatus=Fixed | +| status.3 | Show tasks that are false positives | mr_taskStatus=False positive | +| status.4 | Show tasks that are skipped | mr_taskStatus=Skipped | +| status.5 | Show tasks that are deleted | mr_taskStatus=Deleted | +| status.6 | Show tasks that are already fixed | mr_taskStatus=Already fixed | +| status.7 | Show tasks that are marked as too hard | mr_taskStatus=Too hard | +| status.8 | Show tasks that are disabled | mr_taskStatus=Disabled | + -id | question | osmTags ----- | ---------- | --------- -status.0 | Show tasks with all statuses (default) | -status.1 | Show tasks that are created | mr_taskStatus=Created -status.2 | Show tasks that are fixed | mr_taskStatus=Fixed -status.3 | Show tasks that are false positives | mr_taskStatus=False positive -status.4 | Show tasks that are skipped | mr_taskStatus=Skipped -status.5 | Show tasks that are deleted | mr_taskStatus=Deleted -status.6 | Show tasks that are already fixed | mr_taskStatus=Already fixed -status.7 | Show tasks that are marked as too hard | mr_taskStatus=Too hard -status.8 | Show tasks that are disabled | mr_taskStatus=Disabled - This document is autogenerated from [assets/layers/maproulette_challenge/maproulette_challenge.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/maproulette_challenge/maproulette_challenge.json) diff --git a/Docs/Layers/maxspeed.md b/Docs/Layers/maxspeed.md index 86f0b8e0278..18dd0228b5d 100644 --- a/Docs/Layers/maxspeed.md +++ b/Docs/Layers/maxspeed.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# maxspeed - maxspeed -========== - - - - +[object Object] Shows the allowed speed for every road - - - - This layer is shown at zoomlevel **16** and higher - - - + - This layer is shown at zoomlevel **16** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [maxspeed-maxspeed](#maxspeed-maxspeed) @@ -38,23 +29,12 @@ Shows the allowed speed for every road - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [maxspeed](https://mapcomplete.org/maxspeed) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [maxspeed](https://mapcomplete.org/maxspeed) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -64,23 +44,16 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22highway%22%3D%22residential%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22living_street%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22motorway%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22tertiary%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22unclassified%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22secondary%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22primary%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22trunk%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22motorway%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22tertiary_link%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22secondary_link%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22primary_link%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22trunk_link%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22motorway_link%22%5D%5B%22area%22!%3D%22yes%22%5D%5B%22type%22!%3D%22multipolygon%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/maxspeed#values) [maxspeed](https://wiki.openstreetmap.org/wiki/Key:maxspeed) | [pnat](../SpecialInputElements.md#pnat) | ### just_created @@ -186,6 +159,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/maxspeed/maxspeed.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/maxspeed/maxspeed.json) diff --git a/Docs/Layers/medical_shops.md b/Docs/Layers/medical_shops.md index 6675d2ff8ad..ad49262cdf2 100644 --- a/Docs/Layers/medical_shops.md +++ b/Docs/Layers/medical_shops.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# medical_shops - medical_shops -=============== - - - - +[object Object] A shop - - - - This layer is shown at zoomlevel **13** and higher - - - + - This layer is shown at zoomlevel **13** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -63,22 +54,11 @@ A shop - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [healthcare](https://mapcomplete.org/healthcare) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [healthcare](https://mapcomplete.org/healthcare) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -87,39 +67,32 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22shop%22%3D%22medical_supply%22%5D%5B%22shop%22!%3D%22mall%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22shop%22%3D%22hearing_aids%22%5D%5B%22shop%22!%3D%22mall%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22shop%22%3D%22optician%22%5D%5B%22shop%22!%3D%22mall%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/shop#values) [shop](https://wiki.openstreetmap.org/wiki/Key:shop) | [string](../SpecialInputElements.md#string) | [vacant](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvacant) [agrarian](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dagrarian) [alcohol](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dalcohol) [anime](https://wiki.openstreetmap.org/wiki/Tag:shop%3Danime) [antiques](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dantiques) [appliance](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dappliance) [art](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dart) [baby_goods](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbaby_goods) [bag](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbag) [bakery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbakery) [bathroom_furnishing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbathroom_furnishing) [beauty](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbeauty) [bed](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbed) [beverages](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbeverages) [bicycle](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbicycle) [boat](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dboat) [bookmaker](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbookmaker) [books](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbooks) [brewing_supplies](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbrewing_supplies) [butcher](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbutcher) [camera](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcamera) [candles](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcandles) [cannabis](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcannabis) [car](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar) [car_parts](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar_parts) [car_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar_repair) [caravan](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcaravan) [carpet](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcarpet) [catalogue](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcatalogue) [charity](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcharity) [cheese](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcheese) [chemist](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dchemist) [chocolate](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dchocolate) [clothes](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dclothes) [coffee](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcoffee) [collector](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcollector) [computer](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcomputer) [confectionery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dconfectionery) [convenience](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dconvenience) [copyshop](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcopyshop) [cosmetics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcosmetics) [country_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcountry_store) [craft](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcraft) [curtain](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcurtain) [dairy](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddairy) [deli](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddeli) [department_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddepartment_store) [doityourself](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddoityourself) [doors](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddoors) [dry_cleaning](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddry_cleaning) [e-cigarette](https://wiki.openstreetmap.org/wiki/Tag:shop%3De-cigarette) [electrical](https://wiki.openstreetmap.org/wiki/Tag:shop%3Delectrical) [electronics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Delectronics) [erotic](https://wiki.openstreetmap.org/wiki/Tag:shop%3Derotic) [fabric](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfabric) [farm](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfarm) [fashion_accessories](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfashion_accessories) [fireplace](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfireplace) [fishing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfishing) [flooring](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dflooring) [florist](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dflorist) [frame](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dframe) [frozen_food](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfrozen_food) [fuel](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfuel) [funeral_directors](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfuneral_directors) [furniture](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfurniture) [games](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgames) [garden_centre](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgarden_centre) [gas](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgas) [general](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgeneral) [gift](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgift) [greengrocer](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgreengrocer) [hairdresser](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhairdresser) [hairdresser_supply](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhairdresser_supply) [hardware](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhardware) [health_food](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhealth_food) [hearing_aids](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhearing_aids) [herbalist](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dherbalist) [hifi](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhifi) [honey](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhoney) [household_linen](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhousehold_linen) [houseware](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhouseware) [hunting](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhunting) [interior_decoration](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dinterior_decoration) [jewelry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Djewelry) [kiosk](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dkiosk) [kitchen](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dkitchen) [laundry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlaundry) [leather](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dleather) [lighting](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlighting) [locksmith](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlocksmith) [lottery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlottery) [mall](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmall) [massage](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmassage) [medical_supply](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmedical_supply) [military_surplus](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmilitary_surplus) [mobile_phone](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmobile_phone) [model](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmodel) [money_lender](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmoney_lender) [motorcycle](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmotorcycle) [motorcycle_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmotorcycle_repair) [music](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmusic) [musical_instrument](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmusical_instrument) [newsagent](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dnewsagent) [nutrition_supplements](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dnutrition_supplements) [nuts](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dnuts) [optician](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doptician) [outdoor](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doutdoor) [outpost](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doutpost) [paint](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpaint) [party](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dparty) [pasta](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpasta) [pastry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpastry) [pawnbroker](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpawnbroker) [perfumery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dperfumery) [pet](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpet) [pet_grooming](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpet_grooming) [photo](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dphoto) [pottery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpottery) [printer_ink](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dprinter_ink) [psychic](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpsychic) [pyrotechnics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpyrotechnics) [radiotechnics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dradiotechnics) [religion](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dreligion) [rental](https://wiki.openstreetmap.org/wiki/Tag:shop%3Drental) [repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Drepair) [rice](https://wiki.openstreetmap.org/wiki/Tag:shop%3Drice) [scuba_diving](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dscuba_diving) [seafood](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dseafood) [second_hand](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsecond_hand) [sewing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsewing) [shoe_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dshoe_repair) [shoes](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dshoes) [spices](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dspices) [sports](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsports) [stationery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dstationery) [storage_rental](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dstorage_rental) [supermarket](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsupermarket) [swimming_pool](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dswimming_pool) [tailor](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtailor) [tattoo](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtattoo) [tea](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtea) [telecommunication](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtelecommunication) [ticket](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dticket) [tiles](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtiles) [tobacco](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtobacco) [tool_hire](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtool_hire) [toys](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtoys) [trade](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtrade) [travel_agency](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtravel_agency) [trophy](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtrophy) [tyres](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtyres) [vacuum_cleaner](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvacuum_cleaner) [variety_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvariety_store) [video](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvideo) [video_games](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvideo_games) [watches](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwatches) [water](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwater) [water_sports](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwater_sports) [weapons](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dweapons) [wholesale](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwholesale) [wigs](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwigs) [window_blind](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwindow_blind) [wine](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwine) -[](https://taginfo.openstreetmap.org/keys/brand#values) [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/second_hand#values) [second_hand](https://wiki.openstreetmap.org/wiki/Key:second_hand) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:second_hand%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:second_hand%3Dno) -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/service:binding#values) [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) -[](https://taginfo.openstreetmap.org/keys/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired) -[](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers) -[](https://taginfo.openstreetmap.org/keys/internet_access:ssid#values) [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom) -[](https://taginfo.openstreetmap.org/keys/organic#values) [organic](https://wiki.openstreetmap.org/wiki/Key:organic) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:organic%3Donly) [no](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:sugar_free#values) [diet:sugar_free](https://wiki.openstreetmap.org/wiki/Key:diet:sugar_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:gluten_free#values) [diet:gluten_free](https://wiki.openstreetmap.org/wiki/Key:diet:gluten_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:lactose_free#values) [diet:lactose_free](https://wiki.openstreetmap.org/wiki/Key:diet:lactose_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dno) ### just_created @@ -659,31 +632,33 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes + +| id | question | osmTags | +-----|-----|----- | +| accepts_cash.0 | Accepts cash | payment:cash=yes | -id | question | osmTags ----- | ---------- | --------- -accepts_cash.0 | Accepts cash | payment:cash=yes + + +| id | question | osmTags | +-----|-----|----- | +| accepts_cards.0 | Accepts payment cards | payment:cards=yes | -id | question | osmTags ----- | ---------- | --------- -accepts_cards.0 | Accepts payment cards | payment:cards=yes - - This document is autogenerated from [assets/themes/healthcare/healthcare.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/healthcare/healthcare.json) diff --git a/Docs/Layers/memorial.md b/Docs/Layers/memorial.md index e8bd7ef71bb..34c4b1d16a8 100644 --- a/Docs/Layers/memorial.md +++ b/Docs/Layers/memorial.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# memorial - memorial -========== - - - - +[object Object] Layer showing memorial plaques, based upon a unofficial theme. Can be expanded to have multiple types of memorials later on - - - - This layer is shown at zoomlevel **9** and higher - - - + - This layer is shown at zoomlevel **9** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -53,23 +44,12 @@ Layer showing memorial plaques, based upon a unofficial theme. Can be expanded t - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [memorials](https://mapcomplete.org/memorials) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [memorials](https://mapcomplete.org/memorials) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -78,35 +58,28 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22historic%22%3D%22memorial%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22memorial%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [text](../SpecialInputElements.md#text) | | +| ] [object Object] | [wikidata](../SpecialInputElements.md#wikidata) | | +| ] [object Object] | [wikidata](../SpecialInputElements.md#wikidata) | | +| ] [object Object] | [date](../SpecialInputElements.md#date) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [nat](../SpecialInputElements.md#nat) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [direction](../SpecialInputElements.md#direction) | | +| ] [object Object] | [color](../SpecialInputElements.md#color) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [date](../SpecialInputElements.md#date) | [object Object] | +| ] [object Object] | [text](../SpecialInputElements.md#text) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/memorial#values) [memorial](https://wiki.openstreetmap.org/wiki/Key:memorial) | [string](../SpecialInputElements.md#string) | [statue](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dstatue) [plaque](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dplaque) [bench](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dbench) [ghost_bike](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dghost_bike) [stolperstein](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dstolperstein) [stele](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dstele) [stone](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dstone) [bust](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dbust) [sculpture](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dsculpture) [obelisk](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dobelisk) [cross](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dcross) [blue_plaque](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dblue_plaque) [tank](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dtank) [tree](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dtree) -[](https://taginfo.openstreetmap.org/keys/inscription#values) [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [text](../SpecialInputElements.md#text) | -[](https://taginfo.openstreetmap.org/keys/wikidata#values) [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | -[](https://taginfo.openstreetmap.org/keys/subject:wikidata#values) [subject:wikidata](https://wiki.openstreetmap.org/wiki/Key:subject:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | -[](https://taginfo.openstreetmap.org/keys/start_date#values) [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) | [date](../SpecialInputElements.md#date) | -[](https://taginfo.openstreetmap.org/keys/backrest#values) [backrest](https://wiki.openstreetmap.org/wiki/Key:backrest) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dno) -[](https://taginfo.openstreetmap.org/keys/seats#values) [seats](https://wiki.openstreetmap.org/wiki/Key:seats) | [nat](../SpecialInputElements.md#nat) | -[](https://taginfo.openstreetmap.org/keys/material#values) [material](https://wiki.openstreetmap.org/wiki/Key:material) | [string](../SpecialInputElements.md#string) | [wood](https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood) [metal](https://wiki.openstreetmap.org/wiki/Tag:material%3Dmetal) [stone](https://wiki.openstreetmap.org/wiki/Tag:material%3Dstone) [concrete](https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete) [plastic](https://wiki.openstreetmap.org/wiki/Tag:material%3Dplastic) [steel](https://wiki.openstreetmap.org/wiki/Tag:material%3Dsteel) -[](https://taginfo.openstreetmap.org/keys/direction#values) [direction](https://wiki.openstreetmap.org/wiki/Key:direction) | [direction](../SpecialInputElements.md#direction) | -[](https://taginfo.openstreetmap.org/keys/colour#values) [colour](https://wiki.openstreetmap.org/wiki/Key:colour) | [color](../SpecialInputElements.md#color) | [brown](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dbrown) [green](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgreen) [gray](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgray) [white](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dwhite) [red](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred) [black](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblack) [blue](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblue) [yellow](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow) -[](https://taginfo.openstreetmap.org/keys/survey:date#values) [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D) -[](https://taginfo.openstreetmap.org/keys/inscription#values) [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [text](../SpecialInputElements.md#text) | -[](https://taginfo.openstreetmap.org/keys/historic#values) [historic](https://wiki.openstreetmap.org/wiki/Key:historic) | Multiple choice | [memorial](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial) [](https://wiki.openstreetmap.org/wiki/Tag:historic%3D) ### just_created @@ -392,6 +365,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/memorial/memorial.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/memorial/memorial.json) diff --git a/Docs/Layers/mountain_rescue.md b/Docs/Layers/mountain_rescue.md index 034fdc5bb62..eba9ed16c06 100644 --- a/Docs/Layers/mountain_rescue.md +++ b/Docs/Layers/mountain_rescue.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# mountain_rescue - mountain_rescue -================= - - - - +[object Object] A building where first aid responders store material and might be on watch - - - - This layer is shown at zoomlevel **10** and higher - - - + - This layer is shown at zoomlevel **10** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -40,44 +31,26 @@ A building where first aid responders store material and might be on watch - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [personal](https://mapcomplete.org/personal) - - [ski](https://mapcomplete.org/ski) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [personal](https://mapcomplete.org/personal) + - [ski](https://mapcomplete.org/ski) +## Basic tags for this layer Elements must match the expression **emergency=mountain_rescue** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22emergency%22%3D%22mountain_rescue%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | ### just_created @@ -198,6 +171,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/mountain_rescue/mountain_rescue.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/mountain_rescue/mountain_rescue.json) diff --git a/Docs/Layers/named_streets.md b/Docs/Layers/named_streets.md index d3e509b55c0..e7973f4e076 100644 --- a/Docs/Layers/named_streets.md +++ b/Docs/Layers/named_streets.md @@ -1,54 +1,34 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# named_streets - named_streets -=============== - - - - +[object Object] Hidden layer with all streets which have a name. Useful to detect addresses - - - - This layer is shown at zoomlevel **18** and higher - - This layer is not visible by default and must be enabled in the filter by the user. - - Elements don't have a title set and cannot be toggled nor will they show up in the dashboard. If you import this layer in your theme, override `title` to make this toggleable. - - This layer is not visible by default and the visibility cannot be toggled, effectively resulting in a fully hidden layer. This can be useful, e.g. to calculate some metatags. If you want to render this layer (e.g. for debugging), enable it by setting the URL-parameter layer-=true - - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` - - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` - - This layer is needed as dependency for layer [address](#address) - - - + - This layer is shown at zoomlevel **18** and higher + - This layer is not visible by default and must be enabled in the filter by the user. + - Elements don't have a title set and cannot be toggled nor will they show up in the dashboard. If you import this layer in your theme, override `title` to make this toggleable. + - This layer is not visible by default and the visibility cannot be toggled, effectively resulting in a fully hidden layer. This can be useful, e.g. to calculate some metatags. If you want to render this layer (e.g. for debugging), enable it by setting the URL-parameter layer-=true + - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` + - This layer is needed as dependency for layer [address](#address) ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - Themes using this layer -------------------------- - - - - - - - [grb](https://mapcomplete.org/grb) - - [uk_addresses](https://mapcomplete.org/uk_addresses) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [grb](https://mapcomplete.org/grb) + - [uk_addresses](https://mapcomplete.org/uk_addresses) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -57,11 +37,8 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22name%22%5D%5B%22highway%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes - Supported attributes ----------------------- - - This document is autogenerated from [assets/layers/named_streets/named_streets.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/named_streets/named_streets.json) diff --git a/Docs/Layers/nature_reserve.md b/Docs/Layers/nature_reserve.md index d2015a55be9..eb6dc719105 100644 --- a/Docs/Layers/nature_reserve.md +++ b/Docs/Layers/nature_reserve.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# nature_reserve - nature_reserve -================ - - - - +[object Object] A nature reserve is an area where nature can take its course - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -51,23 +42,12 @@ A nature reserve is an area where nature can take its course - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [nature](https://mapcomplete.org/nature) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [nature](https://mapcomplete.org/nature) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -76,33 +56,26 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22leisure%22%3D%22nature_reserve%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22boundary%22%3D%22protected_area%22%5D%5B%22protect_class%22!%3D%2298%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [wikidata](../SpecialInputElements.md#wikidata) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/access:description#values) [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Natuurpunt](https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt) [Agentschap Natuur en Bos](https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgentschap Natuur en Bos) -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D) -[](https://taginfo.openstreetmap.org/keys/dog#values) [dog](https://wiki.openstreetmap.org/wiki/Key:dog) | Multiple choice | [leashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed) [no](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes) -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/curator#values) [curator](https://wiki.openstreetmap.org/wiki/Key:curator) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/description:0#values) [description:0](https://wiki.openstreetmap.org/wiki/Key:description:0) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/wikidata#values) [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | ### just_created @@ -340,26 +313,26 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| access.0 | Freely accesible | access=yes | -id | question | osmTags ----- | ---------- | --------- -access.0 | Freely accesible | access=yes + +| id | question | osmTags | +-----|-----|----- | +| dogs.0 | *All nature reserves* (default) | | +| dogs.1 | Dogs are allowed to roam freely | dog=yes | +| dogs.2 | Dogs are allowed if they are leashed | dog=yes | dog=leashed | -id | question | osmTags ----- | ---------- | --------- -dogs.0 | All nature reserves (default) | -dogs.1 | Dogs are allowed to roam freely | dog=yes -dogs.2 | Dogs are allowed if they are leashed | dog=yes \| dog=leashed - - This document is autogenerated from [assets/layers/nature_reserve/nature_reserve.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/nature_reserve/nature_reserve.json) diff --git a/Docs/Layers/not_cyclestreets.md b/Docs/Layers/not_cyclestreets.md index 1f7db5167a6..b57feac2d11 100644 --- a/Docs/Layers/not_cyclestreets.md +++ b/Docs/Layers/not_cyclestreets.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# not_cyclestreets - not_cyclestreets -================== - - - - +[object Object] Layer to mark any street as cyclestreet - - - - This layer is shown at zoomlevel **18** and higher - - - + - This layer is shown at zoomlevel **18** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [is_cyclestreet](#is_cyclestreet) - [supplementary_sign](#supplementary_sign) - [future_cyclestreet](#future_cyclestreet) @@ -42,22 +33,11 @@ Layer to mark any street as cyclestreet - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [cyclestreets](https://mapcomplete.org/cyclestreets) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [cyclestreets](https://mapcomplete.org/cyclestreets) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -67,24 +47,17 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22highway%22%3D%22residential%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22tertiary%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22unclassified%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [date](../SpecialInputElements.md#date) | | +| ] [object Object] | Multiple choice | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/traffic_sign#values) [traffic_sign](https://wiki.openstreetmap.org/wiki/Key:traffic_sign) | Multiple choice | [DE:244.1,1020-30](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1020-30) [DE:244.1,1022-12,1024-10](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1022-12,1024-10) [DE:244.1,1022-12](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1022-12) [DE:244.1,1024-10](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1024-10) [DE:244.1](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1) -[](https://taginfo.openstreetmap.org/keys/cyclestreet:start_date#values) [cyclestreet:start_date](https://wiki.openstreetmap.org/wiki/Key:cyclestreet:start_date) | [date](../SpecialInputElements.md#date) | -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | ### is_cyclestreet @@ -234,6 +207,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/themes/cyclestreets/cyclestreets.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/cyclestreets/cyclestreets.json) diff --git a/Docs/Layers/note.md b/Docs/Layers/note.md index 96f8b3c41b6..376eebc38b4 100644 --- a/Docs/Layers/note.md +++ b/Docs/Layers/note.md @@ -1,31 +1,26 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# note - note -====== - - - - +[object Object] This layer shows notes on OpenStreetMap. Having this layer in your theme will trigger the 'add new note' functionality in the 'addNewPoint'-popup (or if your theme has no presets, it'll enable adding notes) + - This layer is shown at zoomlevel **10** and higher + - +This layer is loaded from an external source, namely - - This layer is shown at zoomlevel **10** and higher - - This layer is loaded from an external source, namely `https://api.openstreetmap.org/api/0.6/notes.json?limit=10000&closed=7&bbox={x_min},{y_min},{x_max},{y_max}` - - - +`https://api.openstreetmap.org/api/0.6/notes.json?limit=10000&closed=7&bbox={x_min},{y_min},{x_max},{y_max}` ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [conversation](#conversation) @@ -44,44 +39,26 @@ This layer shows notes on OpenStreetMap. Having this layer in your theme will tr - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [notes](https://mapcomplete.org/notes) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [notes](https://mapcomplete.org/notes) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **date_created~.+** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22date_created%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | ### just_created @@ -219,89 +196,107 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | fields | +-----|-----|-----|----- | +| search.0 | Should mention {search} in the first comment | | search (string) | -id | question | osmTags | fields ----- | ---------- | --------- | -------- -search.0 | Should mention {search} in the first comment | | search (string) + +| id | question | osmTags | fields | +-----|-----|-----|----- | +| not.0 | Should not mention {search} in the first comment | | search (string) | -id | question | osmTags | fields ----- | ---------- | --------- | -------- -not.0 | Should not mention {search} in the first comment | | search (string) + + +| id | question | osmTags | fields | +-----|-----|-----|----- | +| opened_by.0 | Opened by contributor {search} | | search (string) | -id | question | osmTags | fields ----- | ---------- | --------- | -------- -opened_by.0 | Opened by contributor {search} | | search (string) + + +| id | question | osmTags | fields | +-----|-----|-----|----- | +| not_opened_by.0 | Not opened by contributor {search} | | search (string) | -id | question | osmTags | fields ----- | ---------- | --------- | -------- -not_opened_by.0 | Not opened by contributor {search} | | search (string) + + +| id | question | osmTags | fields | +-----|-----|-----|----- | +| edited_by.0 | Last edited by contributor {search} | | search (string) | -id | question | osmTags | fields ----- | ---------- | --------- | -------- -edited_by.0 | Last edited by contributor {search} | | search (string) + + +| id | question | osmTags | fields | +-----|-----|-----|----- | +| not_edited_by.0 | Opened after {search} | | search (string) | -id | question | osmTags | fields ----- | ---------- | --------- | -------- -not_edited_by.0 | Opened after {search} | | search (string) + + +| id | question | osmTags | fields | +-----|-----|-----|----- | +| opened_before.0 | Created before {search} | | search (date) | -id | question | osmTags | fields ----- | ---------- | --------- | -------- -opened_before.0 | Created before {search} | | search (date) + + +| id | question | osmTags | fields | +-----|-----|-----|----- | +| opened_after.0 | Created after {search} | | search (date) | -id | question | osmTags | fields ----- | ---------- | --------- | -------- -opened_after.0 | Created after {search} | | search (date) + + +| id | question | osmTags | +-----|-----|----- | +| anonymous.0 | Only show notes opened by an anonymous contributor | _opened_by_anonymous_user=true | -id | question | osmTags ----- | ---------- | --------- -anonymous.0 | Only show notes opened by an anonymous contributor | _opened_by_anonymous_user=true + + +| id | question | osmTags | +-----|-----|----- | +| is_open.0 | Only show open notes | closed_at= | -id | question | osmTags ----- | ---------- | --------- -is_open.0 | Only show open notes | closed_at= + + +| id | question | osmTags | +-----|-----|----- | +| no_imports.0 | *All Notes* (default) | | +| no_imports.1 | Hide import notes | _is_import_note= | +| no_imports.2 | Show only import Notes | _is_import_note~.+ | -id | question | osmTags ----- | ---------- | --------- -no_imports.0 | All Notes (default) | -no_imports.1 | Hide import notes | _is_import_note= -no_imports.2 | Show only import Notes | _is_import_note~.+ - - This document is autogenerated from [assets/layers/note/note.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/note/note.json) diff --git a/Docs/Layers/observation_tower.md b/Docs/Layers/observation_tower.md index 4fc757ef54f..d667c0ce608 100644 --- a/Docs/Layers/observation_tower.md +++ b/Docs/Layers/observation_tower.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# observation_tower - observation_tower -=================== - - - - +[object Object] Towers with a panoramic view - - - - This layer is shown at zoomlevel **8** and higher - - - + - This layer is shown at zoomlevel **8** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -50,55 +41,37 @@ Towers with a panoramic view - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [observation_towers](https://mapcomplete.org/observation_towers) - - [personal](https://mapcomplete.org/personal) - - [toerisme_vlaanderen](https://mapcomplete.org/toerisme_vlaanderen) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [observation_towers](https://mapcomplete.org/observation_towers) + - [personal](https://mapcomplete.org/personal) + - [toerisme_vlaanderen](https://mapcomplete.org/toerisme_vlaanderen) +## Basic tags for this layer Elements must match the expression **tower:type=observation** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22tower%3Atype%22%3D%22observation%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [wikidata](../SpecialInputElements.md#wikidata) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/height#values) [height](https://wiki.openstreetmap.org/wiki/Key:height) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [guided](https://wiki.openstreetmap.org/wiki/Tag:access%3Dguided) -[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:charge%3D) -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/step_count#values) [step_count](https://wiki.openstreetmap.org/wiki/Key:step_count) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/elevator#values) [elevator](https://wiki.openstreetmap.org/wiki/Key:elevator) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:elevator%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:elevator%3Dno) -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) -[](https://taginfo.openstreetmap.org/keys/wikidata#values) [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | ### just_created @@ -328,6 +301,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/observation_tower/observation_tower.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/observation_tower/observation_tower.json) diff --git a/Docs/Layers/osm_community_index.md b/Docs/Layers/osm_community_index.md index 7eb70c2b3db..7861729015a 100644 --- a/Docs/Layers/osm_community_index.md +++ b/Docs/Layers/osm_community_index.md @@ -1,31 +1,26 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# osm_community_index - osm_community_index -===================== - - - - +[object Object] A layer showing the OpenStreetMap Communities + - This layer is shown at zoomlevel **0** and higher + - +This layer is loaded from an external source, namely - - This layer is shown at zoomlevel **0** and higher - - This layer is loaded from an external source, namely `https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/community_index/tile_{z}_{x}_{y}.geojson` - - - +`https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/community_index/tile_{z}_{x}_{y}.geojson` ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [country_name](#country_name) @@ -40,44 +35,26 @@ A layer showing the OpenStreetMap Communities - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [osm_community_index](https://mapcomplete.org/osm_community_index) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [osm_community_index](https://mapcomplete.org/osm_community_index) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **resources~.+** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22resources%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | ### just_created @@ -183,59 +160,69 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| country.0 | Country | level=country | -id | question | osmTags ----- | ---------- | --------- -country.0 | Country | level=country + +| id | question | osmTags | +-----|-----|----- | +| sub_country.0 | Sub Country Group | level=subcountryGroup | -id | question | osmTags ----- | ---------- | --------- -sub_country.0 | Sub Country Group | level=subcountryGroup + + +| id | question | osmTags | +-----|-----|----- | +| region.0 | Region | level=region | -id | question | osmTags ----- | ---------- | --------- -region.0 | Region | level=region + + +| id | question | osmTags | +-----|-----|----- | +| intermediate_region.0 | Intermediate Region | level=intermediateRegion | -id | question | osmTags ----- | ---------- | --------- -intermediate_region.0 | Intermediate Region | level=intermediateRegion + + +| id | question | osmTags | +-----|-----|----- | +| territory.0 | Territory | level=territory | -id | question | osmTags ----- | ---------- | --------- -territory.0 | Territory | level=territory + + +| id | question | osmTags | +-----|-----|----- | +| world.0 | World | level=world | -id | question | osmTags ----- | ---------- | --------- -world.0 | World | level=world + + +| id | question | osmTags | +-----|-----|----- | +| other.0 | Other Communities | level= | -id | question | osmTags ----- | ---------- | --------- -other.0 | Other Communities | level= - - This document is autogenerated from [assets/layers/osm_community_index/osm_community_index.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/osm_community_index/osm_community_index.json) diff --git a/Docs/Layers/outdoor_seating.md b/Docs/Layers/outdoor_seating.md index 25e01475c4e..4c1437160fe 100644 --- a/Docs/Layers/outdoor_seating.md +++ b/Docs/Layers/outdoor_seating.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# outdoor_seating - outdoor_seating -================= - - - - +[object Object] Outdoor seating areas, usually located near cafes and restaurants. - - - - This layer is shown at zoomlevel **18** and higher - - - + - This layer is shown at zoomlevel **18** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -49,56 +40,38 @@ Outdoor seating areas, usually located near cafes and restaurants. - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [cafes_and_pubs](https://mapcomplete.org/cafes_and_pubs) - - [food](https://mapcomplete.org/food) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [cafes_and_pubs](https://mapcomplete.org/cafes_and_pubs) + - [food](https://mapcomplete.org/food) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **leisure=outdoor_seating** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22leisure%22%3D%22outdoor_seating%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | [object Object] | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) -[](https://taginfo.openstreetmap.org/keys/seasonal#values) [seasonal](https://wiki.openstreetmap.org/wiki/Key:seasonal) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:seasonal%3Dno) [spring](https://wiki.openstreetmap.org/wiki/Tag:seasonal%3Dspring) [summer](https://wiki.openstreetmap.org/wiki/Tag:seasonal%3Dsummer) [autumn](https://wiki.openstreetmap.org/wiki/Tag:seasonal%3Dautumn) [winter](https://wiki.openstreetmap.org/wiki/Tag:seasonal%3Dwinter) [dry_season](https://wiki.openstreetmap.org/wiki/Tag:seasonal%3Ddry_season) -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired) -[](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers) -[](https://taginfo.openstreetmap.org/keys/internet_access:ssid#values) [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom) -[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) -[](https://taginfo.openstreetmap.org/keys/heating#values) [heating](https://wiki.openstreetmap.org/wiki/Key:heating) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:heating%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:heating%3Dno) -[](https://taginfo.openstreetmap.org/keys/covered#values) [covered](https://wiki.openstreetmap.org/wiki/Key:covered) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:covered%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:covered%3Dno) -[](https://taginfo.openstreetmap.org/keys/smoking#values) [smoking](https://wiki.openstreetmap.org/wiki/Key:smoking) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:smoking%3Dno) ### just_created @@ -326,6 +299,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/outdoor_seating/outdoor_seating.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/outdoor_seating/outdoor_seating.json) diff --git a/Docs/Layers/parcel_lockers.md b/Docs/Layers/parcel_lockers.md index 1317017df79..67580eba5a1 100644 --- a/Docs/Layers/parcel_lockers.md +++ b/Docs/Layers/parcel_lockers.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# parcel_lockers - parcel_lockers -================ - - - - +[object Object] Layer showing parcel lockers for collecting and sending parcels. - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -47,23 +38,12 @@ Layer showing parcel lockers for collecting and sending parcels. - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [personal](https://mapcomplete.org/personal) - - [postboxes](https://mapcomplete.org/postboxes) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [personal](https://mapcomplete.org/personal) + - [postboxes](https://mapcomplete.org/postboxes) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -72,28 +52,21 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22parcel_locker%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22vending%22%3D%22parcel_pickup%3Bparcel_mail_in%22%5D%5B%22amenity%22%3D%22vending_machine%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [nsi](../SpecialInputElements.md#nsi) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/brand#values) [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [nsi](../SpecialInputElements.md#nsi) | -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) -[](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/parcel_mail_in#values) [parcel_mail_in](https://wiki.openstreetmap.org/wiki/Key:parcel_mail_in) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:parcel_mail_in%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:parcel_mail_in%3Dno) -[](https://taginfo.openstreetmap.org/keys/parcel_pickup#values) [parcel_pickup](https://wiki.openstreetmap.org/wiki/Key:parcel_pickup) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:parcel_pickup%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:parcel_pickup%3Dno) ### just_created @@ -276,17 +249,15 @@ _This tagrendering has no question and is thus read-only_ - - -#### Filters +#### Filters +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | + -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes - This document is autogenerated from [assets/layers/parcel_lockers/parcel_lockers.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/parcel_lockers/parcel_lockers.json) diff --git a/Docs/Layers/parking.md b/Docs/Layers/parking.md index 1a9ca8f9e4a..b405d96ec05 100644 --- a/Docs/Layers/parking.md +++ b/Docs/Layers/parking.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# parking - parking -========= - - - - +[object Object] A layer showing car parkings - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -45,50 +36,32 @@ A layer showing car parkings - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [onwheels](https://mapcomplete.org/onwheels) - - [parkings](https://mapcomplete.org/parkings) - - [personal](https://mapcomplete.org/personal) - - [transit](https://mapcomplete.org/transit) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [onwheels](https://mapcomplete.org/onwheels) + - [parkings](https://mapcomplete.org/parkings) + - [personal](https://mapcomplete.org/personal) + - [transit](https://mapcomplete.org/transit) +## Basic tags for this layer Elements must match the expression **amenity=parking** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22parking%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/parking#values) [parking](https://wiki.openstreetmap.org/wiki/Key:parking) | Multiple choice | [surface](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dsurface) [street_side](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dstreet_side) [underground](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dunderground) [multi-storey](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dmulti-storey) [rooftop](https://wiki.openstreetmap.org/wiki/Tag:parking%3Drooftop) [lane](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dlane) [carports](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dcarports) [garage_boxes](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dgarage_boxes) [layby](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dlayby) [sheds](https://wiki.openstreetmap.org/wiki/Tag:parking%3Dsheds) -[](https://taginfo.openstreetmap.org/keys/capacity:disabled#values) [capacity:disabled](https://wiki.openstreetmap.org/wiki/Key:capacity:disabled) | [pnat](../SpecialInputElements.md#pnat) | [0](https://wiki.openstreetmap.org/wiki/Tag:capacity:disabled%3D0) -[](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [pnat](../SpecialInputElements.md#pnat) | ### just_created @@ -276,6 +249,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/parking/parking.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/parking/parking.json) diff --git a/Docs/Layers/parking_spaces.md b/Docs/Layers/parking_spaces.md index 5dc0211a6c1..c155c229455 100644 --- a/Docs/Layers/parking_spaces.md +++ b/Docs/Layers/parking_spaces.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# parking_spaces - parking_spaces -================ - - - - +[object Object] Layer showing individual parking spaces. - - - - This layer is shown at zoomlevel **18** and higher - - - + - This layer is shown at zoomlevel **18** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -40,46 +31,28 @@ Layer showing individual parking spaces. - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [parkings](https://mapcomplete.org/parkings) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [parkings](https://mapcomplete.org/parkings) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **amenity=parking_space** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22parking_space%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/parking_space#values) [parking_space](https://wiki.openstreetmap.org/wiki/Key:parking_space) | Multiple choice | [normal](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Dnormal) [disabled](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Ddisabled) [charging](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Dcharging) [delivery](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Ddelivery) [hgv](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Dhgv) [caravan](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Dcaravan) [bus](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Dbus) [motorcycle](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Dmotorcycle) [parent](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Dparent) [staff](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Dstaff) [taxi](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Dtaxi) [trailer](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Dtrailer) [car_sharing](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Dcar_sharing) -[](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | Multiple choice | [1](https://wiki.openstreetmap.org/wiki/Tag:capacity%3D1) ### just_created @@ -214,6 +187,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/parking_spaces/parking_spaces.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/parking_spaces/parking_spaces.json) diff --git a/Docs/Layers/parking_spaces_disabled.md b/Docs/Layers/parking_spaces_disabled.md index 800528a9ebf..730010431ec 100644 --- a/Docs/Layers/parking_spaces_disabled.md +++ b/Docs/Layers/parking_spaces_disabled.md @@ -1,32 +1,23 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# parking_spaces_disabled - parking_spaces_disabled -========================= - - - - +[object Object] Layer showing individual parking spaces. - - - - This layer is shown at zoomlevel **18** and higher - - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a tagrendering needs this layer (_stolen_entrances) - - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _enclosing_building) - - - + - This layer is shown at zoomlevel **18** and higher + - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a tagrendering needs this layer (_stolen_entrances) + - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _enclosing_building) ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -41,43 +32,25 @@ Layer showing individual parking spaces. - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [onwheels](https://mapcomplete.org/onwheels) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [onwheels](https://mapcomplete.org/onwheels) +## Basic tags for this layer Elements must match the expression **parking_space=disabled** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22parking_space%22%3D%22disabled%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | ### just_created @@ -190,6 +163,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/themes/onwheels/onwheels.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/onwheels/onwheels.json) diff --git a/Docs/Layers/parking_ticket_machine.md b/Docs/Layers/parking_ticket_machine.md index 2fecb28cadc..298c1f399c9 100644 --- a/Docs/Layers/parking_ticket_machine.md +++ b/Docs/Layers/parking_ticket_machine.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# parking_ticket_machine - parking_ticket_machine -======================== - - - - +[object Object] Layer with parking ticket machines to pay for parking. - - - - This layer is shown at zoomlevel **16** and higher - - - + - This layer is shown at zoomlevel **16** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -42,24 +33,13 @@ Layer with parking ticket machines to pay for parking. - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [parkings](https://mapcomplete.org/parkings) - - [personal](https://mapcomplete.org/personal) - - [vending_machine](https://mapcomplete.org/vending_machine) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [parkings](https://mapcomplete.org/parkings) + - [personal](https://mapcomplete.org/personal) + - [vending_machine](https://mapcomplete.org/vending_machine) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -68,25 +48,18 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22vending%22%3D%22parking_tickets%22%5D%5B%22amenity%22%3D%22vending_machine%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/payment:coins:denominations#values) [payment:coins:denominations](https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations) | Multiple choice | [0.01 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.01 EUR) [0.02 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.02 EUR) [0.05 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 EUR) [0.10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 EUR) [0.20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 EUR) [0.50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 EUR) [1 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 EUR) [2 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 EUR) [0.05 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 CHF) [0.10 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 CHF) [0.20 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 CHF) [0.50 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 CHF) [1 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 CHF) [2 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 CHF) [5 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D5 CHF) -[](https://taginfo.openstreetmap.org/keys/payment:notes:denominations#values) [payment:notes:denominations](https://wiki.openstreetmap.org/wiki/Key:payment:notes:denominations) | Multiple choice | [5 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D5 EUR) [10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D10 EUR) [20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D20 EUR) [50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D50 EUR) [100 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D100 EUR) [200 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D200 EUR) [500 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D500 EUR) [10 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D10 CHF) [20 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D20 CHF) [50 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D50 CHF) [100 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D100 CHF) [200 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D200 CHF) [1000 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D1000 CHF) -[](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | ### just_created @@ -266,6 +239,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/parking_ticket_machine/parking_ticket_machine.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/parking_ticket_machine/parking_ticket_machine.json) diff --git a/Docs/Layers/parks_and_forests_without_etymology.md b/Docs/Layers/parks_and_forests_without_etymology.md index 9b1167f033c..854c0ea01b9 100644 --- a/Docs/Layers/parks_and_forests_without_etymology.md +++ b/Docs/Layers/parks_and_forests_without_etymology.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# parks_and_forests_without_etymology - parks_and_forests_without_etymology -===================================== - - - - +[object Object] All objects which have an etymology known - - - - This layer is shown at zoomlevel **18** and higher - - - + - This layer is shown at zoomlevel **18** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [etymology-images-from-wikipedia](#etymology-images-from-wikipedia) @@ -44,22 +35,11 @@ All objects which have an etymology known - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [etymology](https://mapcomplete.org/etymology) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [etymology](https://mapcomplete.org/etymology) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -68,24 +48,17 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22landuse%22%3D%22forest%22%5D%5B%22name%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22leisure%22%3D%22park%22%5D%5B%22name%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [wikidata](../SpecialInputElements.md#wikidata) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name:etymology:wikidata#values) [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | -[](https://taginfo.openstreetmap.org/keys/name:etymology#values) [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology) | [string](../SpecialInputElements.md#string) | [unknown](https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown) ### just_created @@ -242,6 +215,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/themes/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/etymology/etymology.json) diff --git a/Docs/Layers/pedestrian_path.md b/Docs/Layers/pedestrian_path.md index 4127f26dce4..cfd76e8a8d2 100644 --- a/Docs/Layers/pedestrian_path.md +++ b/Docs/Layers/pedestrian_path.md @@ -1,53 +1,33 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# pedestrian_path - pedestrian_path -================= - - - - +[object Object] Pedestrian footpaths, especially used for indoor navigation and snapping entrances to this layer - - - - This layer is shown at zoomlevel **18** and higher - - Elements don't have a title set and cannot be toggled nor will they show up in the dashboard. If you import this layer in your theme, override `title` to make this toggleable. - - This layer is needed as dependency for layer [entrance](#entrance) - - - + - This layer is shown at zoomlevel **18** and higher + - Elements don't have a title set and cannot be toggled nor will they show up in the dashboard. If you import this layer in your theme, override `title` to make this toggleable. + - This layer is needed as dependency for layer [entrance](#entrance) ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - Themes using this layer -------------------------- - - - - - - - [indoors](https://mapcomplete.org/indoors) - - [onwheels](https://mapcomplete.org/onwheels) - - [personal](https://mapcomplete.org/personal) - - [stations](https://mapcomplete.org/stations) - - [walls_and_buildings](https://mapcomplete.org/walls_and_buildings) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [indoors](https://mapcomplete.org/indoors) + - [onwheels](https://mapcomplete.org/onwheels) + - [personal](https://mapcomplete.org/personal) + - [stations](https://mapcomplete.org/stations) + - [walls_and_buildings](https://mapcomplete.org/walls_and_buildings) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -58,11 +38,8 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22highway%22%3D%22footway%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22path%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22corridor%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22steps%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes - Supported attributes ----------------------- - - This document is autogenerated from [assets/layers/pedestrian_path/pedestrian_path.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/pedestrian_path/pedestrian_path.json) diff --git a/Docs/Layers/pharmacy.md b/Docs/Layers/pharmacy.md index 2de39c14c83..0afc7acd495 100644 --- a/Docs/Layers/pharmacy.md +++ b/Docs/Layers/pharmacy.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# pharmacy - pharmacy -========== - - - - +[object Object] A layer showing pharmacies, which (probably) dispense prescription drugs - - - - This layer is shown at zoomlevel **13** and higher - - - + - This layer is shown at zoomlevel **13** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -48,52 +39,34 @@ A layer showing pharmacies, which (probably) dispense prescription drugs - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [healthcare](https://mapcomplete.org/healthcare) - - [onwheels](https://mapcomplete.org/onwheels) - - [personal](https://mapcomplete.org/personal) - - [shops](https://mapcomplete.org/shops) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [healthcare](https://mapcomplete.org/healthcare) + - [onwheels](https://mapcomplete.org/onwheels) + - [personal](https://mapcomplete.org/personal) + - [shops](https://mapcomplete.org/shops) +## Basic tags for this layer Elements must match the expression **amenity=pharmacy** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22pharmacy%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) ### just_created @@ -293,31 +266,33 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| drive-through.0 | Has drive through | drive_through=yes | -id | question | osmTags ----- | ---------- | --------- -drive-through.0 | Has drive through | drive_through=yes + +| id | question | osmTags | +-----|-----|----- | +| dispensing.0 | Pharmacy able to provide prescription drugs | dispensing=yes | -id | question | osmTags ----- | ---------- | --------- -dispensing.0 | Pharmacy able to provide prescription drugs | dispensing=yes + + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes - - This document is autogenerated from [assets/layers/pharmacy/pharmacy.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/pharmacy/pharmacy.json) diff --git a/Docs/Layers/physiotherapist.md b/Docs/Layers/physiotherapist.md index 24a92363a0f..a8e48457e92 100644 --- a/Docs/Layers/physiotherapist.md +++ b/Docs/Layers/physiotherapist.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# physiotherapist - physiotherapist -================= - - - - +[object Object] This layer shows physiotherapists - - - - This layer is shown at zoomlevel **13** and higher - - - + - This layer is shown at zoomlevel **13** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -46,49 +37,31 @@ This layer shows physiotherapists - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [healthcare](https://mapcomplete.org/healthcare) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [healthcare](https://mapcomplete.org/healthcare) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **healthcare=physiotherapist** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22healthcare%22%3D%22physiotherapist%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | ### just_created @@ -272,17 +245,15 @@ _This tagrendering has no question and is thus read-only_ - - -#### Filters +#### Filters +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | + -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes - This document is autogenerated from [assets/layers/physiotherapist/physiotherapist.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/physiotherapist/physiotherapist.json) diff --git a/Docs/Layers/picnic_table.md b/Docs/Layers/picnic_table.md index 96584a6cede..e813409da5c 100644 --- a/Docs/Layers/picnic_table.md +++ b/Docs/Layers/picnic_table.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# picnic_table - picnic_table -============== - - - - +[object Object] The layer showing picnic tables - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -43,49 +34,31 @@ The layer showing picnic tables - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [benches](https://mapcomplete.org/benches) - - [nature](https://mapcomplete.org/nature) - - [personal](https://mapcomplete.org/personal) - - [playgrounds](https://mapcomplete.org/playgrounds) - - [toerisme_vlaanderen](https://mapcomplete.org/toerisme_vlaanderen) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [benches](https://mapcomplete.org/benches) + - [nature](https://mapcomplete.org/nature) + - [personal](https://mapcomplete.org/personal) + - [playgrounds](https://mapcomplete.org/playgrounds) + - [toerisme_vlaanderen](https://mapcomplete.org/toerisme_vlaanderen) +## Basic tags for this layer Elements must match the expression **leisure=picnic_table** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22leisure%22%3D%22picnic_table%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/material#values) [material](https://wiki.openstreetmap.org/wiki/Key:material) | [string](../SpecialInputElements.md#string) | [wood](https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood) [concrete](https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete) [plastic](https://wiki.openstreetmap.org/wiki/Tag:material%3Dplastic) ### just_created @@ -244,6 +217,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/picnic_table/picnic_table.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/picnic_table/picnic_table.json) diff --git a/Docs/Layers/play_forest.md b/Docs/Layers/play_forest.md index 95daa9b0dd8..2425307e6e1 100644 --- a/Docs/Layers/play_forest.md +++ b/Docs/Layers/play_forest.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# play_forest - play_forest -============= - - - - +[object Object] Een speelbos is een vrij toegankelijke zone in een bos - - - - This layer is shown at zoomlevel **13** and higher - - - + - This layer is shown at zoomlevel **13** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -43,48 +34,30 @@ Een speelbos is een vrij toegankelijke zone in een bos - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [play_forests](https://mapcomplete.org/play_forests) - - [speelplekken](https://mapcomplete.org/speelplekken) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [play_forests](https://mapcomplete.org/play_forests) + - [speelplekken](https://mapcomplete.org/speelplekken) +## Basic tags for this layer Elements must match the expression **playground=forest** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22playground%22%3D%22forest%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Agenstchap Natuur en Bos](https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgenstchap Natuur en Bos) -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | Multiple choice | [08:00-22:00](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D08:00-22:00) [Jul-Aug 08:00-22:00](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3DJul-Aug 08:00-22:00) -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | ### just_created @@ -238,6 +211,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/play_forest/play_forest.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/play_forest/play_forest.json) diff --git a/Docs/Layers/playground.md b/Docs/Layers/playground.md index 4edbfeef41e..a2c3b5ff425 100644 --- a/Docs/Layers/playground.md +++ b/Docs/Layers/playground.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# playground - playground -============ - - - - +[object Object] Playgrounds - - - - This layer is shown at zoomlevel **13** and higher - - - + - This layer is shown at zoomlevel **13** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -53,25 +44,14 @@ Playgrounds - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [personal](https://mapcomplete.org/personal) - - [playgrounds](https://mapcomplete.org/playgrounds) - - [speelplekken](https://mapcomplete.org/speelplekken) - - [toerisme_vlaanderen](https://mapcomplete.org/toerisme_vlaanderen) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [personal](https://mapcomplete.org/personal) + - [playgrounds](https://mapcomplete.org/playgrounds) + - [speelplekken](https://mapcomplete.org/speelplekken) + - [toerisme_vlaanderen](https://mapcomplete.org/toerisme_vlaanderen) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -80,33 +60,26 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22leisure%22%3D%22playground%22%5D%5B%22playground%22!%3D%22forest%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [nat](../SpecialInputElements.md#nat) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | [object Object] [object Object] | +| ] [object Object] | [date](../SpecialInputElements.md#date) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/surface#values) [surface](https://wiki.openstreetmap.org/wiki/Key:surface) | [string](../SpecialInputElements.md#string) | [grass](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dgrass) [sand](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dsand) [woodchips](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dwoodchips) [paving_stones](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaving_stones) [asphalt](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dasphalt) [concrete](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dconcrete) [tartan](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dtartan) [rubber](https://wiki.openstreetmap.org/wiki/Tag:surface%3Drubber) -[](https://taginfo.openstreetmap.org/keys/lit#values) [lit](https://wiki.openstreetmap.org/wiki/Key:lit) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno) -[](https://taginfo.openstreetmap.org/keys/min_age#values) [min_age](https://wiki.openstreetmap.org/wiki/Key:min_age) | [nat](../SpecialInputElements.md#nat) | -[](https://taginfo.openstreetmap.org/keys/max_age#values) [max_age](https://wiki.openstreetmap.org/wiki/Key:max_age) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [sunrise-sunset](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dsunrise-sunset) [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) -[](https://taginfo.openstreetmap.org/keys/check_date#values) [check_date](https://wiki.openstreetmap.org/wiki/Key:check_date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:check_date%3D) ### just_created @@ -375,6 +348,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/playground/playground.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/playground/playground.json) diff --git a/Docs/Layers/playground_equipment.md b/Docs/Layers/playground_equipment.md index fd4cee299e9..5d23687bea1 100644 --- a/Docs/Layers/playground_equipment.md +++ b/Docs/Layers/playground_equipment.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# playground_equipment - playground_equipment -====================== - - - - +[object Object] Layer showing playground equipment - - - - This layer is shown at zoomlevel **18** and higher - - - + - This layer is shown at zoomlevel **18** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -42,46 +33,28 @@ Layer showing playground equipment - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [personal](https://mapcomplete.org/personal) - - [playgrounds](https://mapcomplete.org/playgrounds) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [personal](https://mapcomplete.org/personal) + - [playgrounds](https://mapcomplete.org/playgrounds) +## Basic tags for this layer Elements must match the expression **playground~.+** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22playground%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/playground#values) [playground](https://wiki.openstreetmap.org/wiki/Key:playground) | [string](../SpecialInputElements.md#string) | [swing](https://wiki.openstreetmap.org/wiki/Tag:playground%3Dswing) [structure](https://wiki.openstreetmap.org/wiki/Tag:playground%3Dstructure) [slide](https://wiki.openstreetmap.org/wiki/Tag:playground%3Dslide) [sandpit](https://wiki.openstreetmap.org/wiki/Tag:playground%3Dsandpit) [springy](https://wiki.openstreetmap.org/wiki/Tag:playground%3Dspringy) [climbingframe](https://wiki.openstreetmap.org/wiki/Tag:playground%3Dclimbingframe) [seesaw](https://wiki.openstreetmap.org/wiki/Tag:playground%3Dseesaw) [playhouse](https://wiki.openstreetmap.org/wiki/Tag:playground%3Dplayhouse) [roundabout](https://wiki.openstreetmap.org/wiki/Tag:playground%3Droundabout) [basketswing](https://wiki.openstreetmap.org/wiki/Tag:playground%3Dbasketswing) [zipwire](https://wiki.openstreetmap.org/wiki/Tag:playground%3Dzipwire) [horizontal_bar](https://wiki.openstreetmap.org/wiki/Tag:playground%3Dhorizontal_bar) [hopscotch](https://wiki.openstreetmap.org/wiki/Tag:playground%3Dhopscotch) [splash_pad](https://wiki.openstreetmap.org/wiki/Tag:playground%3Dsplash_pad) [climbingwall](https://wiki.openstreetmap.org/wiki/Tag:playground%3Dclimbingwall) [map](https://wiki.openstreetmap.org/wiki/Tag:playground%3Dmap) [bridge](https://wiki.openstreetmap.org/wiki/Tag:playground%3Dbridge) [cushion](https://wiki.openstreetmap.org/wiki/Tag:playground%3Dcushion) [activitypanel](https://wiki.openstreetmap.org/wiki/Tag:playground%3Dactivitypanel) [teenshelter](https://wiki.openstreetmap.org/wiki/Tag:playground%3Dteenshelter) [funnel_ball](https://wiki.openstreetmap.org/wiki/Tag:playground%3Dfunnel_ball) [spinning_circle](https://wiki.openstreetmap.org/wiki/Tag:playground%3Dspinning_circle) -[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) ### just_created @@ -244,6 +217,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/playground_equipment/playground_equipment.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/playground_equipment/playground_equipment.json) diff --git a/Docs/Layers/post_offices_with_atm.md b/Docs/Layers/post_offices_with_atm.md index 7a1c029769b..75faeee9f27 100644 --- a/Docs/Layers/post_offices_with_atm.md +++ b/Docs/Layers/post_offices_with_atm.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# post_offices_with_atm - post_offices_with_atm -======================= - - - - +[object Object] A layer showing post offices. - - - - This layer is shown at zoomlevel **14** and higher - - - + - This layer is shown at zoomlevel **14** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -49,22 +40,11 @@ A layer showing post offices. - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [atm](https://mapcomplete.org/atm) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [atm](https://mapcomplete.org/atm) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -73,32 +53,25 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22atm%22%3D%22yes%22%5D%5B%22amenity%22%3D%22post_office%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22atm%22%3D%22yes%22%5D%5B%22post_office%22%3D%22post_partner%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [nsi](../SpecialInputElements.md#nsi) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/post_office#values) [post_office](https://wiki.openstreetmap.org/wiki/Key:post_office) | Multiple choice | [post_partner](https://wiki.openstreetmap.org/wiki/Tag:post_office%3Dpost_partner) [](https://wiki.openstreetmap.org/wiki/Tag:post_office%3D) -[](https://taginfo.openstreetmap.org/keys/brand#values) [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [nsi](../SpecialInputElements.md#nsi) | -[](https://taginfo.openstreetmap.org/keys/post_office:brand#values) [post_office:brand](https://wiki.openstreetmap.org/wiki/Key:post_office:brand) | [string](../SpecialInputElements.md#string) | [DHL](https://wiki.openstreetmap.org/wiki/Tag:post_office:brand%3DDHL) [DPD](https://wiki.openstreetmap.org/wiki/Tag:post_office:brand%3DDPD) [GLS](https://wiki.openstreetmap.org/wiki/Tag:post_office:brand%3DGLS) [UPS](https://wiki.openstreetmap.org/wiki/Tag:post_office:brand%3DUPS) [DHL Paketshop](https://wiki.openstreetmap.org/wiki/Tag:post_office:brand%3DDHL Paketshop) [Hermes PaketShop](https://wiki.openstreetmap.org/wiki/Tag:post_office:brand%3DHermes PaketShop) [PostNL](https://wiki.openstreetmap.org/wiki/Tag:post_office:brand%3DPostNL) [bpost](https://wiki.openstreetmap.org/wiki/Tag:post_office:brand%3Dbpost) -[](https://taginfo.openstreetmap.org/keys/post_office:letter_from#values) [post_office:letter_from](https://wiki.openstreetmap.org/wiki/Key:post_office:letter_from) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:post_office:letter_from%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:post_office:letter_from%3Dno) -[](https://taginfo.openstreetmap.org/keys/post_office:parcel_from#values) [post_office:parcel_from](https://wiki.openstreetmap.org/wiki/Key:post_office:parcel_from) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:post_office:parcel_from%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:post_office:parcel_from%3Dno) -[](https://taginfo.openstreetmap.org/keys/post_office:parcel_pickup#values) [post_office:parcel_pickup](https://wiki.openstreetmap.org/wiki/Key:post_office:parcel_pickup) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:post_office:parcel_pickup%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:post_office:parcel_pickup%3Dno) -[](https://taginfo.openstreetmap.org/keys/post_office:parcel_to#values) [post_office:parcel_to](https://wiki.openstreetmap.org/wiki/Key:post_office:parcel_to) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:post_office:parcel_to%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:post_office:parcel_to%3Dno) -[](https://taginfo.openstreetmap.org/keys/post_office:stamps#values) [post_office:stamps](https://wiki.openstreetmap.org/wiki/Key:post_office:stamps) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:post_office:stamps%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:post_office:stamps%3Dno) -[](https://taginfo.openstreetmap.org/keys/atm#values) [atm](https://wiki.openstreetmap.org/wiki/Key:atm) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dno) [separate](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dseparate) ### just_created @@ -317,52 +290,60 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes + +| id | question | osmTags | +-----|-----|----- | +| letter_from.0 | Offers letter posting | post_office:letter_from~.+ & post_office:letter_from!~^(no)$ | -id | question | osmTags ----- | ---------- | --------- -letter_from.0 | Offers letter posting | post_office:letter_from~.+ & post_office:letter_from!~^(no)$ + + +| id | question | osmTags | +-----|-----|----- | +| parcel_from.0 | Offers parcel posting | post_office:parcel_from~.+ & post_office:parcel_from!~^(no)$ | -id | question | osmTags ----- | ---------- | --------- -parcel_from.0 | Offers parcel posting | post_office:parcel_from~.+ & post_office:parcel_from!~^(no)$ + + +| id | question | osmTags | +-----|-----|----- | +| parcel_pickup.0 | Offers pickup of missed parcels | post_office:parcel_pickup~.+ & post_office:parcel_pickup!~^(no)$ | -id | question | osmTags ----- | ---------- | --------- -parcel_pickup.0 | Offers pickup of missed parcels | post_office:parcel_pickup~.+ & post_office:parcel_pickup!~^(no)$ + + +| id | question | osmTags | +-----|-----|----- | +| parcel_to.0 | Accepts pickup of parcels sent here | post_office:parcel_to~.+ & post_office:parcel_to!~^(no)$ | -id | question | osmTags ----- | ---------- | --------- -parcel_to.0 | Accepts pickup of parcels sent here | post_office:parcel_to~.+ & post_office:parcel_to!~^(no)$ + + +| id | question | osmTags | +-----|-----|----- | +| stamps.0 | Sells stamps | post_office:stamps~.+ & post_office:stamps!~^(no)$ | -id | question | osmTags ----- | ---------- | --------- -stamps.0 | Sells stamps | post_office:stamps~.+ & post_office:stamps!~^(no)$ - - This document is autogenerated from [assets/themes/atm/atm.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/atm/atm.json) diff --git a/Docs/Layers/postboxes.md b/Docs/Layers/postboxes.md index 964a2508c7d..af5878f4c0e 100644 --- a/Docs/Layers/postboxes.md +++ b/Docs/Layers/postboxes.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# postboxes - postboxes -=========== - - - - +[object Object] The layer showing postboxes. - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -39,44 +30,26 @@ The layer showing postboxes. - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [personal](https://mapcomplete.org/personal) - - [postboxes](https://mapcomplete.org/postboxes) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [personal](https://mapcomplete.org/personal) + - [postboxes](https://mapcomplete.org/postboxes) +## Basic tags for this layer Elements must match the expression **amenity=post_box** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22post_box%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | ### just_created @@ -189,6 +162,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/postboxes/postboxes.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/postboxes/postboxes.json) diff --git a/Docs/Layers/postoffices.md b/Docs/Layers/postoffices.md index 4ac17b95966..5b90a09b9dd 100644 --- a/Docs/Layers/postoffices.md +++ b/Docs/Layers/postoffices.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# postoffices - postoffices -============= - - - - +[object Object] A layer showing post offices. - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -49,24 +40,13 @@ A layer showing post offices. - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [atm](https://mapcomplete.org/atm) - - [personal](https://mapcomplete.org/personal) - - [postboxes](https://mapcomplete.org/postboxes) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [atm](https://mapcomplete.org/atm) + - [personal](https://mapcomplete.org/personal) + - [postboxes](https://mapcomplete.org/postboxes) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -75,32 +55,25 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22post_office%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22post_office%22%3D%22post_partner%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [nsi](../SpecialInputElements.md#nsi) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/post_office#values) [post_office](https://wiki.openstreetmap.org/wiki/Key:post_office) | Multiple choice | [post_partner](https://wiki.openstreetmap.org/wiki/Tag:post_office%3Dpost_partner) [](https://wiki.openstreetmap.org/wiki/Tag:post_office%3D) -[](https://taginfo.openstreetmap.org/keys/brand#values) [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [nsi](../SpecialInputElements.md#nsi) | -[](https://taginfo.openstreetmap.org/keys/post_office:brand#values) [post_office:brand](https://wiki.openstreetmap.org/wiki/Key:post_office:brand) | [string](../SpecialInputElements.md#string) | [DHL](https://wiki.openstreetmap.org/wiki/Tag:post_office:brand%3DDHL) [DPD](https://wiki.openstreetmap.org/wiki/Tag:post_office:brand%3DDPD) [GLS](https://wiki.openstreetmap.org/wiki/Tag:post_office:brand%3DGLS) [UPS](https://wiki.openstreetmap.org/wiki/Tag:post_office:brand%3DUPS) [DHL Paketshop](https://wiki.openstreetmap.org/wiki/Tag:post_office:brand%3DDHL Paketshop) [Hermes PaketShop](https://wiki.openstreetmap.org/wiki/Tag:post_office:brand%3DHermes PaketShop) [PostNL](https://wiki.openstreetmap.org/wiki/Tag:post_office:brand%3DPostNL) [bpost](https://wiki.openstreetmap.org/wiki/Tag:post_office:brand%3Dbpost) -[](https://taginfo.openstreetmap.org/keys/post_office:letter_from#values) [post_office:letter_from](https://wiki.openstreetmap.org/wiki/Key:post_office:letter_from) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:post_office:letter_from%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:post_office:letter_from%3Dno) -[](https://taginfo.openstreetmap.org/keys/post_office:parcel_from#values) [post_office:parcel_from](https://wiki.openstreetmap.org/wiki/Key:post_office:parcel_from) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:post_office:parcel_from%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:post_office:parcel_from%3Dno) -[](https://taginfo.openstreetmap.org/keys/post_office:parcel_pickup#values) [post_office:parcel_pickup](https://wiki.openstreetmap.org/wiki/Key:post_office:parcel_pickup) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:post_office:parcel_pickup%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:post_office:parcel_pickup%3Dno) -[](https://taginfo.openstreetmap.org/keys/post_office:parcel_to#values) [post_office:parcel_to](https://wiki.openstreetmap.org/wiki/Key:post_office:parcel_to) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:post_office:parcel_to%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:post_office:parcel_to%3Dno) -[](https://taginfo.openstreetmap.org/keys/post_office:stamps#values) [post_office:stamps](https://wiki.openstreetmap.org/wiki/Key:post_office:stamps) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:post_office:stamps%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:post_office:stamps%3Dno) -[](https://taginfo.openstreetmap.org/keys/atm#values) [atm](https://wiki.openstreetmap.org/wiki/Key:atm) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dno) [separate](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dseparate) ### just_created @@ -319,52 +292,60 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes + +| id | question | osmTags | +-----|-----|----- | +| letter_from.0 | Offers letter posting | post_office:letter_from~.+ & post_office:letter_from!~^(no)$ | -id | question | osmTags ----- | ---------- | --------- -letter_from.0 | Offers letter posting | post_office:letter_from~.+ & post_office:letter_from!~^(no)$ + + +| id | question | osmTags | +-----|-----|----- | +| parcel_from.0 | Offers parcel posting | post_office:parcel_from~.+ & post_office:parcel_from!~^(no)$ | -id | question | osmTags ----- | ---------- | --------- -parcel_from.0 | Offers parcel posting | post_office:parcel_from~.+ & post_office:parcel_from!~^(no)$ + + +| id | question | osmTags | +-----|-----|----- | +| parcel_pickup.0 | Offers pickup of missed parcels | post_office:parcel_pickup~.+ & post_office:parcel_pickup!~^(no)$ | -id | question | osmTags ----- | ---------- | --------- -parcel_pickup.0 | Offers pickup of missed parcels | post_office:parcel_pickup~.+ & post_office:parcel_pickup!~^(no)$ + + +| id | question | osmTags | +-----|-----|----- | +| parcel_to.0 | Accepts pickup of parcels sent here | post_office:parcel_to~.+ & post_office:parcel_to!~^(no)$ | -id | question | osmTags ----- | ---------- | --------- -parcel_to.0 | Accepts pickup of parcels sent here | post_office:parcel_to~.+ & post_office:parcel_to!~^(no)$ + + +| id | question | osmTags | +-----|-----|----- | +| stamps.0 | Sells stamps | post_office:stamps~.+ & post_office:stamps!~^(no)$ | -id | question | osmTags ----- | ---------- | --------- -stamps.0 | Sells stamps | post_office:stamps~.+ & post_office:stamps!~^(no)$ - - This document is autogenerated from [assets/layers/postoffices/postoffices.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/postoffices/postoffices.json) diff --git a/Docs/Layers/pt_shelter.md b/Docs/Layers/pt_shelter.md index 9d4e231229d..000cdd875e3 100644 --- a/Docs/Layers/pt_shelter.md +++ b/Docs/Layers/pt_shelter.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# pt_shelter - pt_shelter -============ - - - - +[object Object] Layer showing shelter structures - - - - This layer is shown at zoomlevel **18** and higher - - - + - This layer is shown at zoomlevel **18** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -39,22 +30,11 @@ Layer showing shelter structures - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [transit](https://mapcomplete.org/transit) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [transit](https://mapcomplete.org/transit) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -63,22 +43,15 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22shelter%22%5D%5B%22shelter_type%22%3D%22public_transport%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | ### just_created @@ -191,6 +164,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/themes/transit/transit.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/transit/transit.json) diff --git a/Docs/Layers/public_bookcase.md b/Docs/Layers/public_bookcase.md index 1b745927bb0..0aa74497328 100644 --- a/Docs/Layers/public_bookcase.md +++ b/Docs/Layers/public_bookcase.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# public_bookcase - public_bookcase -================= - - - - +[object Object] A streetside cabinet with books, accessible to anyone - - - - This layer is shown at zoomlevel **7** and higher - - - + - This layer is shown at zoomlevel **7** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -51,54 +42,36 @@ A streetside cabinet with books, accessible to anyone - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [bookcases](https://mapcomplete.org/bookcases) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [bookcases](https://mapcomplete.org/bookcases) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **amenity=public_bookcase** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22public_bookcase%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | +| ] [object Object] | [nat](../SpecialInputElements.md#nat) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | +| ] [object Object] | [date](../SpecialInputElements.md#date) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D) -[](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [nat](../SpecialInputElements.md#nat) | -[](https://taginfo.openstreetmap.org/keys/books#values) [books](https://wiki.openstreetmap.org/wiki/Key:books) | [string](../SpecialInputElements.md#string) | [children](https://wiki.openstreetmap.org/wiki/Tag:books%3Dchildren) [adults](https://wiki.openstreetmap.org/wiki/Tag:books%3Dadults) -[](https://taginfo.openstreetmap.org/keys/indoor#values) [indoor](https://wiki.openstreetmap.org/wiki/Key:indoor) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno) -[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/brand#values) [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:ref%3D) -[](https://taginfo.openstreetmap.org/keys/start_date#values) [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) | [date](../SpecialInputElements.md#date) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | ### just_created @@ -322,42 +295,46 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| kid-books.0 | Has children books | books~^(.*children.*)$ | -id | question | osmTags ----- | ---------- | --------- -kid-books.0 | Has children books | books~^(.*children.*)$ + +| id | question | osmTags | +-----|-----|----- | +| adult-books.0 | Has books for adults | books~^(.*adults.*)$ | -id | question | osmTags ----- | ---------- | --------- -adult-books.0 | Has books for adults | books~^(.*adults.*)$ + + +| id | question | osmTags | +-----|-----|----- | +| inside.0 | *Indoor or outdoor* (default) | | +| inside.1 | Located indoors | indoor=yes | +| inside.2 | Located outdoors | indoor=no | indoor= | -id | question | osmTags ----- | ---------- | --------- -inside.0 | Indoor or outdoor (default) | -inside.1 | Located indoors | indoor=yes -inside.2 | Located outdoors | indoor=no \| indoor= + + +| id | question | osmTags | +-----|-----|----- | +| has_image.0 | *With and without images* (default) | | +| has_image.1 | Has at least one image | image~.+ | image:0~.+ | image:1~.+ | image:2~.+ | image:3~.+ | mapillary~.+ | +| has_image.2 | Probably does not have an image | image= & image:0= & image:1= & image:2= & image:3= & mapillary= | -id | question | osmTags ----- | ---------- | --------- -has_image.0 | With and without images (default) | -has_image.1 | Has at least one image | image~.+ \| image:0~.+ \| image:1~.+ \| image:2~.+ \| image:3~.+ \| mapillary~.+ -has_image.2 | Probably does not have an image | image= & image:0= & image:1= & image:2= & image:3= & mapillary= - - This document is autogenerated from [assets/layers/public_bookcase/public_bookcase.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/public_bookcase/public_bookcase.json) diff --git a/Docs/Layers/railway_platforms.md b/Docs/Layers/railway_platforms.md index a496e0734a0..3411c8019d4 100644 --- a/Docs/Layers/railway_platforms.md +++ b/Docs/Layers/railway_platforms.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# railway_platforms - railway_platforms -=================== - - - - +[object Object] Find every platform in the station, and the train routes that use them. - - - - This layer is shown at zoomlevel **18** and higher - - - + - This layer is shown at zoomlevel **18** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [ref](#ref) @@ -39,45 +30,27 @@ Find every platform in the station, and the train routes that use them. - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [stations](https://mapcomplete.org/stations) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [stations](https://mapcomplete.org/stations) +## Basic tags for this layer Elements must match the expression **railway=platform** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22railway%22%3D%22platform%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) ### just_created @@ -201,6 +174,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/railway_platforms/railway_platforms.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/railway_platforms/railway_platforms.json) diff --git a/Docs/Layers/rainbow_crossing_high_zoom.md b/Docs/Layers/rainbow_crossing_high_zoom.md index 4885754fbf0..1e19c9bebf7 100644 --- a/Docs/Layers/rainbow_crossing_high_zoom.md +++ b/Docs/Layers/rainbow_crossing_high_zoom.md @@ -1,31 +1,22 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# rainbow_crossing_high_zoom - rainbow_crossing_high_zoom -============================ - - - - +[object Object] A layer showing pedestrian crossings with rainbow paintings - - - - This layer is shown at zoomlevel **10** and higher - - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` - - - + - This layer is shown at zoomlevel **10** and higher + - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -40,43 +31,25 @@ A layer showing pedestrian crossings with rainbow paintings - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [rainbow_crossings](https://mapcomplete.org/rainbow_crossings) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [rainbow_crossings](https://mapcomplete.org/rainbow_crossings) +## Basic tags for this layer Elements must match the expression **surface:colour=rainbow** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22surface%3Acolour%22%3D%22rainbow%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | ### just_created @@ -192,6 +165,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/themes/rainbow_crossings/rainbow_crossings.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/rainbow_crossings/rainbow_crossings.json) diff --git a/Docs/Layers/rainbow_crossings.md b/Docs/Layers/rainbow_crossings.md index 0560041b3af..e039a9d2870 100644 --- a/Docs/Layers/rainbow_crossings.md +++ b/Docs/Layers/rainbow_crossings.md @@ -1,31 +1,22 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# rainbow_crossings - rainbow_crossings -=================== - - - - +[object Object] A layer showing pedestrian crossings with rainbow paintings - - - - This layer is shown at zoomlevel **17** and higher - - This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) - - - + - This layer is shown at zoomlevel **17** and higher + - This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -40,23 +31,12 @@ A layer showing pedestrian crossings with rainbow paintings - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [personal](https://mapcomplete.org/personal) - - [rainbow_crossings](https://mapcomplete.org/rainbow_crossings) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [personal](https://mapcomplete.org/personal) + - [rainbow_crossings](https://mapcomplete.org/rainbow_crossings) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -66,22 +46,15 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22highway%22%3D%22crossing%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22surface%3Acolour%22%3D%22rainbow%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22footway%22%3D%22crossing%22%5D%5B%22highway%22%3D%22footway%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | ### just_created @@ -197,6 +170,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/rainbow_crossings/rainbow_crossings.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/rainbow_crossings/rainbow_crossings.json) diff --git a/Docs/Layers/reception_desk.md b/Docs/Layers/reception_desk.md index b46ca29b4d7..800d715f005 100644 --- a/Docs/Layers/reception_desk.md +++ b/Docs/Layers/reception_desk.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# reception_desk - reception_desk -================ - - - - +[object Object] A layer showing where the reception desks are and which asks some accessibility information - - - - This layer is shown at zoomlevel **0** and higher - - - + - This layer is shown at zoomlevel **0** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -42,47 +33,29 @@ A layer showing where the reception desks are and which asks some accessibility - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [onwheels](https://mapcomplete.org/onwheels) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [onwheels](https://mapcomplete.org/onwheels) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **amenity=reception_desk** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22reception_desk%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/desk:height#values) [desk:height](https://wiki.openstreetmap.org/wiki/Key:desk:height) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/hearing_loop#values) [hearing_loop](https://wiki.openstreetmap.org/wiki/Key:hearing_loop) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dno) ### just_created @@ -232,6 +205,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/reception_desk/reception_desk.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/reception_desk/reception_desk.json) diff --git a/Docs/Layers/recycling.md b/Docs/Layers/recycling.md index c56dd42c495..ec7f621134a 100644 --- a/Docs/Layers/recycling.md +++ b/Docs/Layers/recycling.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# recycling - recycling -=========== - - - - +[object Object] A layer with recycling containers and centres - - - - This layer is shown at zoomlevel **10** and higher - - - + - This layer is shown at zoomlevel **10** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -52,54 +43,36 @@ A layer with recycling containers and centres - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [personal](https://mapcomplete.org/personal) - - [waste](https://mapcomplete.org/waste) - - [waste_assen](https://mapcomplete.org/waste_assen) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [personal](https://mapcomplete.org/personal) + - [waste](https://mapcomplete.org/waste) + - [waste_assen](https://mapcomplete.org/waste_assen) +## Basic tags for this layer Elements must match the expression **amenity=recycling** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22recycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] | +| ] [object Object] | [date](../SpecialInputElements.md#date) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/location#values) [location](https://wiki.openstreetmap.org/wiki/Key:location) | Multiple choice | [underground](https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground) [indoor](https://wiki.openstreetmap.org/wiki/Tag:location%3Dindoor) [](https://wiki.openstreetmap.org/wiki/Tag:location%3D) -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) -[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [residents](https://wiki.openstreetmap.org/wiki/Tag:access%3Dresidents) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) -[](https://taginfo.openstreetmap.org/keys/survey:date#values) [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D) ### just_created @@ -397,53 +370,55 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes + +| id | question | osmTags | +-----|-----|----- | +| recyclingType.0 | *All recycling types* (default) | | +| recyclingType.1 | Recycling of batteries | recycling:batteries=yes | +| recyclingType.2 | Recycling of beverage cartons | recycling:beverage_cartons=yes | +| recyclingType.3 | Recycling of cans | recycling:cans=yes | +| recyclingType.4 | Recycling of clothes | recycling:clothes=yes | +| recyclingType.5 | Recycling of cooking oil | recycling:cooking_oil=yes | +| recyclingType.6 | Recycling of engine oil | recycling:engine_oil=yes | +| recyclingType.7 | Recycling of fluorescent tubes | recycling:fluorescent_tubes=yes | +| recyclingType.8 | Recycling of green waste | recycling:green_waste=yes | recycling:organic=yes | +| recyclingType.9 | Recycling of glass bottles | recycling:glass_bottles=yes | +| recyclingType.10 | Recycling of glass | recycling:glass=yes | +| recyclingType.11 | Recycling of light bulbs | recycling:light_bulbs=yes | +| recyclingType.12 | Recycling of newspapers | recycling:newspaper=yes | +| recyclingType.13 | Recycling of paper | recycling:paper=yes | +| recyclingType.14 | Recycling of plastic bottles | recycling:plastic_bottles=yes | +| recyclingType.15 | Recycling of plastic packaging | recycling:plastic_packaging=yes | +| recyclingType.16 | Recycling of plastic | recycling:plastic=yes | +| recyclingType.17 | Recycling of scrap metal | recycling:scrap_metal=yes | +| recyclingType.18 | Recycling of small electrical appliances | recycling:small_appliances=yes | recycling:small_electrical_appliances=yes | +| recyclingType.19 | Recycling of residual waste | recycling:waste=yes | +| recyclingType.20 | Recycling of printer cartridges | recycling:printer_cartridges=yes | +| recyclingType.21 | Recycling of bicycles | recycling:bicycles=yes | +| recyclingType.22 | Recycling of plastic packaging, metal packaging and drink cartons (PMD) | recycling:pmd=yes | -id | question | osmTags ----- | ---------- | --------- -recyclingType.0 | All recycling types (default) | -recyclingType.1 | Recycling of batteries | recycling:batteries=yes -recyclingType.2 | Recycling of beverage cartons | recycling:beverage_cartons=yes -recyclingType.3 | Recycling of cans | recycling:cans=yes -recyclingType.4 | Recycling of clothes | recycling:clothes=yes -recyclingType.5 | Recycling of cooking oil | recycling:cooking_oil=yes -recyclingType.6 | Recycling of engine oil | recycling:engine_oil=yes -recyclingType.7 | Recycling of fluorescent tubes | recycling:fluorescent_tubes=yes -recyclingType.8 | Recycling of green waste | recycling:green_waste=yes \| recycling:organic=yes -recyclingType.9 | Recycling of glass bottles | recycling:glass_bottles=yes -recyclingType.10 | Recycling of glass | recycling:glass=yes -recyclingType.11 | Recycling of light bulbs | recycling:light_bulbs=yes -recyclingType.12 | Recycling of newspapers | recycling:newspaper=yes -recyclingType.13 | Recycling of paper | recycling:paper=yes -recyclingType.14 | Recycling of plastic bottles | recycling:plastic_bottles=yes -recyclingType.15 | Recycling of plastic packaging | recycling:plastic_packaging=yes -recyclingType.16 | Recycling of plastic | recycling:plastic=yes -recyclingType.17 | Recycling of scrap metal | recycling:scrap_metal=yes -recyclingType.18 | Recycling of small electrical appliances | recycling:small_appliances=yes \| recycling:small_electrical_appliances=yes -recyclingType.19 | Recycling of residual waste | recycling:waste=yes -recyclingType.20 | Recycling of printer cartridges | recycling:printer_cartridges=yes -recyclingType.21 | Recycling of bicycles | recycling:bicycles=yes -recyclingType.22 | Recycling of plastic packaging, metal packaging and drink cartons (PMD) | recycling:pmd=yes + + +| id | question | osmTags | +-----|-----|----- | +| public-access.0 | Only public access | access=yes | access= | -id | question | osmTags ----- | ---------- | --------- -public-access.0 | Only public access | access=yes \| access= - - This document is autogenerated from [assets/layers/recycling/recycling.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/recycling/recycling.json) diff --git a/Docs/Layers/route_marker.md b/Docs/Layers/route_marker.md index a5c8bb3422a..6bcfb9d9e29 100644 --- a/Docs/Layers/route_marker.md +++ b/Docs/Layers/route_marker.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# route_marker - route_marker -============== - - - - +[object Object] Route markers are small markers often found along official hiking/cycling/riding/skiing routes to indicate the direction of the route. - - - - This layer is shown at zoomlevel **14** and higher - - - + - This layer is shown at zoomlevel **14** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -41,44 +32,26 @@ Route markers are small markers often found along official hiking/cycling/riding - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [cyclenodes](https://mapcomplete.org/cyclenodes) - - [walkingnodes](https://mapcomplete.org/walkingnodes) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [cyclenodes](https://mapcomplete.org/cyclenodes) + - [walkingnodes](https://mapcomplete.org/walkingnodes) +## Basic tags for this layer Elements must match the expression **information=route_marker** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22information%22%3D%22route_marker%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | ### just_created @@ -216,6 +189,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/route_marker/route_marker.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/route_marker/route_marker.json) diff --git a/Docs/Layers/school.md b/Docs/Layers/school.md index 274e2476f8e..88adb73cb5a 100644 --- a/Docs/Layers/school.md +++ b/Docs/Layers/school.md @@ -1,32 +1,23 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# school - school -======== - - - - +[object Object] Schools giving primary and secondary education and post-secondary, non-tertiary education. Note that this level of education does not imply an age of the pupiles - - - - This layer is shown at zoomlevel **12** and higher - - This layer will automatically load [school](./school.md) into the layout as it depends on it: a calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _enclosing) - - This layer is needed as dependency for layer [school](#school) - - - + - This layer is shown at zoomlevel **12** and higher + - This layer will automatically load [school](./school.md) into the layout as it depends on it: a calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _enclosing) + - This layer is needed as dependency for layer [school](#school) ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [school-name](#school-name) @@ -48,52 +39,34 @@ Schools giving primary and secondary education and post-secondary, non-tertiary - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [education](https://mapcomplete.org/education) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [education](https://mapcomplete.org/education) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **amenity=school** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22school%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/school#values) [school](https://wiki.openstreetmap.org/wiki/Key:school) | Multiple choice | [kindergarten](https://wiki.openstreetmap.org/wiki/Tag:school%3Dkindergarten) [primary](https://wiki.openstreetmap.org/wiki/Tag:school%3Dprimary) [secondary](https://wiki.openstreetmap.org/wiki/Tag:school%3Dsecondary) [lower_secondary](https://wiki.openstreetmap.org/wiki/Tag:school%3Dlower_secondary) [middle_secondary](https://wiki.openstreetmap.org/wiki/Tag:school%3Dmiddle_secondary) [upper_secondary](https://wiki.openstreetmap.org/wiki/Tag:school%3Dupper_secondary) [post_secondary](https://wiki.openstreetmap.org/wiki/Tag:school%3Dpost_secondary) -[](https://taginfo.openstreetmap.org/keys/school:gender#values) [school:gender](https://wiki.openstreetmap.org/wiki/Key:school:gender) | Multiple choice | [mixed](https://wiki.openstreetmap.org/wiki/Tag:school:gender%3Dmixed) [separated](https://wiki.openstreetmap.org/wiki/Tag:school:gender%3Dseparated) [male](https://wiki.openstreetmap.org/wiki/Tag:school:gender%3Dmale) [female](https://wiki.openstreetmap.org/wiki/Tag:school:gender%3Dfemale) -[](https://taginfo.openstreetmap.org/keys/school:for#values) [school:for](https://wiki.openstreetmap.org/wiki/Key:school:for) | [string](../SpecialInputElements.md#string) | [mainstream](https://wiki.openstreetmap.org/wiki/Tag:school:for%3Dmainstream) [adults](https://wiki.openstreetmap.org/wiki/Tag:school:for%3Dadults) [autism](https://wiki.openstreetmap.org/wiki/Tag:school:for%3Dautism) [learning_disabilities](https://wiki.openstreetmap.org/wiki/Tag:school:for%3Dlearning_disabilities) [blind](https://wiki.openstreetmap.org/wiki/Tag:school:for%3Dblind) [deaf](https://wiki.openstreetmap.org/wiki/Tag:school:for%3Ddeaf) [disabilities](https://wiki.openstreetmap.org/wiki/Tag:school:for%3Ddisabilities) [special_needs](https://wiki.openstreetmap.org/wiki/Tag:school:for%3Dspecial_needs) -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | ### just_created @@ -299,6 +272,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/school/school.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/school/school.json) diff --git a/Docs/Layers/shelter.md b/Docs/Layers/shelter.md index 64f6c256d0b..7a4a8fad3b2 100644 --- a/Docs/Layers/shelter.md +++ b/Docs/Layers/shelter.md @@ -1,31 +1,22 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# shelter - shelter -========= - - - - +[object Object] Layer showing shelter structures - - - - This layer is shown at zoomlevel **13** and higher - - This layer is needed as dependency for layer [advertising](#advertising) - - - + - This layer is shown at zoomlevel **13** and higher + - This layer is needed as dependency for layer [advertising](#advertising) ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -41,46 +32,28 @@ Layer showing shelter structures - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [advertising](https://mapcomplete.org/advertising) - - [nature](https://mapcomplete.org/nature) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [advertising](https://mapcomplete.org/advertising) + - [nature](https://mapcomplete.org/nature) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **amenity=shelter** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22shelter%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/shelter_type#values) [shelter_type](https://wiki.openstreetmap.org/wiki/Key:shelter_type) | [string](../SpecialInputElements.md#string) | [public_transport](https://wiki.openstreetmap.org/wiki/Tag:shelter_type%3Dpublic_transport) [picnic_shelter](https://wiki.openstreetmap.org/wiki/Tag:shelter_type%3Dpicnic_shelter) [gazebo](https://wiki.openstreetmap.org/wiki/Tag:shelter_type%3Dgazebo) [weather_shelter](https://wiki.openstreetmap.org/wiki/Tag:shelter_type%3Dweather_shelter) [lean_to](https://wiki.openstreetmap.org/wiki/Tag:shelter_type%3Dlean_to) [pavilion](https://wiki.openstreetmap.org/wiki/Tag:shelter_type%3Dpavilion) [basic_hut](https://wiki.openstreetmap.org/wiki/Tag:shelter_type%3Dbasic_hut) ### just_created @@ -209,6 +182,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/shelter/shelter.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/shelter/shelter.json) diff --git a/Docs/Layers/shops.md b/Docs/Layers/shops.md index b1462f68d33..45baeed0f12 100644 --- a/Docs/Layers/shops.md +++ b/Docs/Layers/shops.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# shops - shops -======= - - - - +[object Object] A shop - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -63,30 +54,19 @@ A shop - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [climbing](https://mapcomplete.org/climbing) - - [healthcare](https://mapcomplete.org/healthcare) - - [onwheels](https://mapcomplete.org/onwheels) - - [openlovemap](https://mapcomplete.org/openlovemap) - - [personal](https://mapcomplete.org/personal) - - [pets](https://mapcomplete.org/pets) - - [postboxes](https://mapcomplete.org/postboxes) - - [shops](https://mapcomplete.org/shops) - - [stations](https://mapcomplete.org/stations) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [climbing](https://mapcomplete.org/climbing) + - [healthcare](https://mapcomplete.org/healthcare) + - [onwheels](https://mapcomplete.org/onwheels) + - [openlovemap](https://mapcomplete.org/openlovemap) + - [personal](https://mapcomplete.org/personal) + - [pets](https://mapcomplete.org/pets) + - [postboxes](https://mapcomplete.org/postboxes) + - [shops](https://mapcomplete.org/shops) + - [stations](https://mapcomplete.org/stations) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -95,39 +75,32 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22craft%22%3D%22shoe_repair%22%5D%5B%22shop%22!%3D%22mall%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22craft%22%3D%22key_cutter%22%5D%5B%22shop%22!%3D%22mall%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22shop%22%5D%5B%22shop%22!%3D%22mall%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/shop#values) [shop](https://wiki.openstreetmap.org/wiki/Key:shop) | [string](../SpecialInputElements.md#string) | [vacant](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvacant) [agrarian](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dagrarian) [alcohol](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dalcohol) [anime](https://wiki.openstreetmap.org/wiki/Tag:shop%3Danime) [antiques](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dantiques) [appliance](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dappliance) [art](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dart) [baby_goods](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbaby_goods) [bag](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbag) [bakery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbakery) [bathroom_furnishing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbathroom_furnishing) [beauty](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbeauty) [bed](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbed) [beverages](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbeverages) [bicycle](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbicycle) [boat](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dboat) [bookmaker](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbookmaker) [books](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbooks) [brewing_supplies](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbrewing_supplies) [butcher](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbutcher) [camera](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcamera) [candles](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcandles) [cannabis](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcannabis) [car](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar) [car_parts](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar_parts) [car_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar_repair) [caravan](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcaravan) [carpet](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcarpet) [catalogue](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcatalogue) [charity](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcharity) [cheese](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcheese) [chemist](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dchemist) [chocolate](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dchocolate) [clothes](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dclothes) [coffee](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcoffee) [collector](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcollector) [computer](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcomputer) [confectionery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dconfectionery) [convenience](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dconvenience) [copyshop](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcopyshop) [cosmetics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcosmetics) [country_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcountry_store) [craft](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcraft) [curtain](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcurtain) [dairy](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddairy) [deli](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddeli) [department_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddepartment_store) [doityourself](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddoityourself) [doors](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddoors) [dry_cleaning](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddry_cleaning) [e-cigarette](https://wiki.openstreetmap.org/wiki/Tag:shop%3De-cigarette) [electrical](https://wiki.openstreetmap.org/wiki/Tag:shop%3Delectrical) [electronics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Delectronics) [erotic](https://wiki.openstreetmap.org/wiki/Tag:shop%3Derotic) [fabric](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfabric) [farm](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfarm) [fashion_accessories](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfashion_accessories) [fireplace](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfireplace) [fishing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfishing) [flooring](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dflooring) [florist](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dflorist) [frame](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dframe) [frozen_food](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfrozen_food) [fuel](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfuel) [funeral_directors](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfuneral_directors) [furniture](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfurniture) [games](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgames) [garden_centre](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgarden_centre) [gas](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgas) [general](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgeneral) [gift](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgift) [greengrocer](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgreengrocer) [hairdresser](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhairdresser) [hairdresser_supply](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhairdresser_supply) [hardware](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhardware) [health_food](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhealth_food) [hearing_aids](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhearing_aids) [herbalist](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dherbalist) [hifi](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhifi) [honey](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhoney) [household_linen](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhousehold_linen) [houseware](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhouseware) [hunting](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhunting) [interior_decoration](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dinterior_decoration) [jewelry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Djewelry) [kiosk](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dkiosk) [kitchen](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dkitchen) [laundry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlaundry) [leather](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dleather) [lighting](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlighting) [locksmith](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlocksmith) [lottery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlottery) [mall](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmall) [massage](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmassage) [medical_supply](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmedical_supply) [military_surplus](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmilitary_surplus) [mobile_phone](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmobile_phone) [model](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmodel) [money_lender](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmoney_lender) [motorcycle](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmotorcycle) [motorcycle_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmotorcycle_repair) [music](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmusic) [musical_instrument](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmusical_instrument) [newsagent](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dnewsagent) [nutrition_supplements](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dnutrition_supplements) [nuts](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dnuts) [optician](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doptician) [outdoor](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doutdoor) [outpost](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doutpost) [paint](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpaint) [party](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dparty) [pasta](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpasta) [pastry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpastry) [pawnbroker](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpawnbroker) [perfumery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dperfumery) [pet](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpet) [pet_grooming](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpet_grooming) [photo](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dphoto) [pottery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpottery) [printer_ink](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dprinter_ink) [psychic](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpsychic) [pyrotechnics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpyrotechnics) [radiotechnics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dradiotechnics) [religion](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dreligion) [rental](https://wiki.openstreetmap.org/wiki/Tag:shop%3Drental) [repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Drepair) [rice](https://wiki.openstreetmap.org/wiki/Tag:shop%3Drice) [scuba_diving](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dscuba_diving) [seafood](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dseafood) [second_hand](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsecond_hand) [sewing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsewing) [shoe_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dshoe_repair) [shoes](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dshoes) [spices](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dspices) [sports](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsports) [stationery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dstationery) [storage_rental](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dstorage_rental) [supermarket](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsupermarket) [swimming_pool](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dswimming_pool) [tailor](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtailor) [tattoo](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtattoo) [tea](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtea) [telecommunication](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtelecommunication) [ticket](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dticket) [tiles](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtiles) [tobacco](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtobacco) [tool_hire](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtool_hire) [toys](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtoys) [trade](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtrade) [travel_agency](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtravel_agency) [trophy](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtrophy) [tyres](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtyres) [vacuum_cleaner](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvacuum_cleaner) [variety_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvariety_store) [video](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvideo) [video_games](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvideo_games) [watches](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwatches) [water](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwater) [water_sports](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwater_sports) [weapons](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dweapons) [wholesale](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwholesale) [wigs](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwigs) [window_blind](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwindow_blind) [wine](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwine) -[](https://taginfo.openstreetmap.org/keys/brand#values) [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/second_hand#values) [second_hand](https://wiki.openstreetmap.org/wiki/Key:second_hand) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:second_hand%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:second_hand%3Dno) -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/service:binding#values) [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) -[](https://taginfo.openstreetmap.org/keys/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired) -[](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers) -[](https://taginfo.openstreetmap.org/keys/internet_access:ssid#values) [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom) -[](https://taginfo.openstreetmap.org/keys/organic#values) [organic](https://wiki.openstreetmap.org/wiki/Key:organic) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:organic%3Donly) [no](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:sugar_free#values) [diet:sugar_free](https://wiki.openstreetmap.org/wiki/Key:diet:sugar_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:gluten_free#values) [diet:gluten_free](https://wiki.openstreetmap.org/wiki/Key:diet:gluten_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:lactose_free#values) [diet:lactose_free](https://wiki.openstreetmap.org/wiki/Key:diet:lactose_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dno) ### just_created @@ -667,92 +640,108 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes + +| id | question | osmTags | fields | +-----|-----|-----|----- | +| shop-type.0 | Only show shops selling {search} | | search (string) | -id | question | osmTags | fields ----- | ---------- | --------- | -------- -shop-type.0 | Only show shops selling {search} | | search (string) + + +| id | question | osmTags | fields | +-----|-----|-----|----- | +| shop-name.0 | Only show shops with name {search} | | search (string) | -id | question | osmTags | fields ----- | ---------- | --------- | -------- -shop-name.0 | Only show shops with name {search} | | search (string) + + +| id | question | osmTags | +-----|-----|----- | +| accepts_cash.0 | Accepts cash | payment:cash=yes | -id | question | osmTags ----- | ---------- | --------- -accepts_cash.0 | Accepts cash | payment:cash=yes + + +| id | question | osmTags | +-----|-----|----- | +| accepts_cards.0 | Accepts payment cards | payment:cards=yes | -id | question | osmTags ----- | ---------- | --------- -accepts_cards.0 | Accepts payment cards | payment:cards=yes + + +| id | question | osmTags | +-----|-----|----- | +| has_organic.0 | Has organic options | organic=yes | organic=only | -id | question | osmTags ----- | ---------- | --------- -has_organic.0 | Has organic options | organic=yes \| organic=only + + +| id | question | osmTags | +-----|-----|----- | +| second_hand.0 | Only show shops selling second-hand items | shop=second_hand | shop=charity | second_hand=yes | second_hand=only | -id | question | osmTags ----- | ---------- | --------- -second_hand.0 | Only show shops selling second-hand items | shop=second_hand \| shop=charity \| second_hand=yes \| second_hand=only + + +| id | question | osmTags | +-----|-----|----- | +| sugar_free.0 | *All types* (default) | | +| sugar_free.1 | This shop only sells sugar free products | diet:sugar_free=only | +| sugar_free.2 | This shop has a big sugar free offering | diet:sugar_free=yes | +| sugar_free.3 | This shop has a limited sugar free offering | diet:sugar_free=limited | +| sugar_free.4 | This shop has no sugar free offering | diet:sugar_free=no | -id | question | osmTags ----- | ---------- | --------- -sugar_free.0 | All types (default) | -sugar_free.1 | This shop only sells sugar free products | diet:sugar_free=only -sugar_free.2 | This shop has a big sugar free offering | diet:sugar_free=yes -sugar_free.3 | This shop has a limited sugar free offering | diet:sugar_free=limited -sugar_free.4 | This shop has no sugar free offering | diet:sugar_free=no + + +| id | question | osmTags | +-----|-----|----- | +| gluten_free.0 | *All types* (default) | | +| gluten_free.1 | This shop only sells gluten free products | diet:gluten_free=only | +| gluten_free.2 | This shop has a big gluten free offering | diet:gluten_free=yes | +| gluten_free.3 | This shop has a limited gluten free offering | diet:gluten_free=limited | +| gluten_free.4 | This shop has no gluten free offering | diet:gluten_free=no | -id | question | osmTags ----- | ---------- | --------- -gluten_free.0 | All types (default) | -gluten_free.1 | This shop only sells gluten free products | diet:gluten_free=only -gluten_free.2 | This shop has a big gluten free offering | diet:gluten_free=yes -gluten_free.3 | This shop has a limited gluten free offering | diet:gluten_free=limited -gluten_free.4 | This shop has no gluten free offering | diet:gluten_free=no + + +| id | question | osmTags | +-----|-----|----- | +| lactose_free.0 | *All types* (default) | | +| lactose_free.1 | Only sells lactose free products | diet:lactose_free=only | +| lactose_free.2 | Big lactose free offering | diet:lactose_free=yes | +| lactose_free.3 | Limited lactose free offering | diet:lactose_free=limited | +| lactose_free.4 | No lactose free offering | diet:lactose_free=no | -id | question | osmTags ----- | ---------- | --------- -lactose_free.0 | All types (default) | -lactose_free.1 | Only sells lactose free products | diet:lactose_free=only -lactose_free.2 | Big lactose free offering | diet:lactose_free=yes -lactose_free.3 | Limited lactose free offering | diet:lactose_free=limited -lactose_free.4 | No lactose free offering | diet:lactose_free=no - - This document is autogenerated from [assets/layers/shops/shops.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/shops/shops.json) diff --git a/Docs/Layers/shops_with_climbing_shoe_repair.md b/Docs/Layers/shops_with_climbing_shoe_repair.md index 55bbadda481..3e944dd5636 100644 --- a/Docs/Layers/shops_with_climbing_shoe_repair.md +++ b/Docs/Layers/shops_with_climbing_shoe_repair.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# shops_with_climbing_shoe_repair - shops_with_climbing_shoe_repair -================================= - - - - +[object Object] A shop - - - - This layer is shown at zoomlevel **8** and higher - - - + - This layer is shown at zoomlevel **8** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [repairs_climbing_shoes](#repairs_climbing_shoes) - [just_created](#just_created) - [nothing_known](#nothing_known) @@ -64,22 +55,11 @@ A shop - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [climbing](https://mapcomplete.org/climbing) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [climbing](https://mapcomplete.org/climbing) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -88,40 +68,33 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22service%3Aclimbing_shoes%3Arepair%22%3D%22yes%22%5D%5B%22craft%22%3D%22shoemaker%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22service%3Aclimbing_shoes%3Arepair%22%3D%22yes%22%5D%5B%22shop%22%3D%22shoe_repair%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/service:climbing_shoes:repair#values) [service:climbing_shoes:repair](https://wiki.openstreetmap.org/wiki/Key:service:climbing_shoes:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_shoes:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_shoes:repair%3Dno) -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/shop#values) [shop](https://wiki.openstreetmap.org/wiki/Key:shop) | [string](../SpecialInputElements.md#string) | [vacant](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvacant) [agrarian](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dagrarian) [alcohol](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dalcohol) [anime](https://wiki.openstreetmap.org/wiki/Tag:shop%3Danime) [antiques](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dantiques) [appliance](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dappliance) [art](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dart) [baby_goods](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbaby_goods) [bag](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbag) [bakery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbakery) [bathroom_furnishing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbathroom_furnishing) [beauty](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbeauty) [bed](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbed) [beverages](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbeverages) [bicycle](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbicycle) [boat](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dboat) [bookmaker](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbookmaker) [books](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbooks) [brewing_supplies](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbrewing_supplies) [butcher](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbutcher) [camera](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcamera) [candles](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcandles) [cannabis](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcannabis) [car](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar) [car_parts](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar_parts) [car_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar_repair) [caravan](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcaravan) [carpet](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcarpet) [catalogue](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcatalogue) [charity](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcharity) [cheese](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcheese) [chemist](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dchemist) [chocolate](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dchocolate) [clothes](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dclothes) [coffee](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcoffee) [collector](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcollector) [computer](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcomputer) [confectionery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dconfectionery) [convenience](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dconvenience) [copyshop](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcopyshop) [cosmetics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcosmetics) [country_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcountry_store) [craft](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcraft) [curtain](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcurtain) [dairy](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddairy) [deli](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddeli) [department_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddepartment_store) [doityourself](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddoityourself) [doors](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddoors) [dry_cleaning](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddry_cleaning) [e-cigarette](https://wiki.openstreetmap.org/wiki/Tag:shop%3De-cigarette) [electrical](https://wiki.openstreetmap.org/wiki/Tag:shop%3Delectrical) [electronics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Delectronics) [erotic](https://wiki.openstreetmap.org/wiki/Tag:shop%3Derotic) [fabric](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfabric) [farm](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfarm) [fashion_accessories](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfashion_accessories) [fireplace](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfireplace) [fishing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfishing) [flooring](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dflooring) [florist](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dflorist) [frame](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dframe) [frozen_food](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfrozen_food) [fuel](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfuel) [funeral_directors](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfuneral_directors) [furniture](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfurniture) [games](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgames) [garden_centre](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgarden_centre) [gas](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgas) [general](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgeneral) [gift](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgift) [greengrocer](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgreengrocer) [hairdresser](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhairdresser) [hairdresser_supply](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhairdresser_supply) [hardware](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhardware) [health_food](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhealth_food) [hearing_aids](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhearing_aids) [herbalist](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dherbalist) [hifi](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhifi) [honey](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhoney) [household_linen](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhousehold_linen) [houseware](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhouseware) [hunting](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhunting) [interior_decoration](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dinterior_decoration) [jewelry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Djewelry) [kiosk](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dkiosk) [kitchen](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dkitchen) [laundry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlaundry) [leather](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dleather) [lighting](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlighting) [locksmith](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlocksmith) [lottery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlottery) [mall](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmall) [massage](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmassage) [medical_supply](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmedical_supply) [military_surplus](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmilitary_surplus) [mobile_phone](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmobile_phone) [model](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmodel) [money_lender](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmoney_lender) [motorcycle](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmotorcycle) [motorcycle_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmotorcycle_repair) [music](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmusic) [musical_instrument](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmusical_instrument) [newsagent](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dnewsagent) [nutrition_supplements](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dnutrition_supplements) [nuts](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dnuts) [optician](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doptician) [outdoor](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doutdoor) [outpost](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doutpost) [paint](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpaint) [party](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dparty) [pasta](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpasta) [pastry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpastry) [pawnbroker](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpawnbroker) [perfumery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dperfumery) [pet](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpet) [pet_grooming](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpet_grooming) [photo](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dphoto) [pottery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpottery) [printer_ink](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dprinter_ink) [psychic](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpsychic) [pyrotechnics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpyrotechnics) [radiotechnics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dradiotechnics) [religion](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dreligion) [rental](https://wiki.openstreetmap.org/wiki/Tag:shop%3Drental) [repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Drepair) [rice](https://wiki.openstreetmap.org/wiki/Tag:shop%3Drice) [scuba_diving](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dscuba_diving) [seafood](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dseafood) [second_hand](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsecond_hand) [sewing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsewing) [shoe_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dshoe_repair) [shoes](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dshoes) [spices](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dspices) [sports](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsports) [stationery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dstationery) [storage_rental](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dstorage_rental) [supermarket](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsupermarket) [swimming_pool](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dswimming_pool) [tailor](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtailor) [tattoo](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtattoo) [tea](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtea) [telecommunication](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtelecommunication) [ticket](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dticket) [tiles](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtiles) [tobacco](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtobacco) [tool_hire](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtool_hire) [toys](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtoys) [trade](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtrade) [travel_agency](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtravel_agency) [trophy](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtrophy) [tyres](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtyres) [vacuum_cleaner](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvacuum_cleaner) [variety_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvariety_store) [video](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvideo) [video_games](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvideo_games) [watches](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwatches) [water](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwater) [water_sports](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwater_sports) [weapons](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dweapons) [wholesale](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwholesale) [wigs](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwigs) [window_blind](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwindow_blind) [wine](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwine) -[](https://taginfo.openstreetmap.org/keys/brand#values) [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/second_hand#values) [second_hand](https://wiki.openstreetmap.org/wiki/Key:second_hand) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:second_hand%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:second_hand%3Dno) -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/service:binding#values) [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) -[](https://taginfo.openstreetmap.org/keys/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired) -[](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers) -[](https://taginfo.openstreetmap.org/keys/internet_access:ssid#values) [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom) -[](https://taginfo.openstreetmap.org/keys/organic#values) [organic](https://wiki.openstreetmap.org/wiki/Key:organic) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:organic%3Donly) [no](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:sugar_free#values) [diet:sugar_free](https://wiki.openstreetmap.org/wiki/Key:diet:sugar_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:gluten_free#values) [diet:gluten_free](https://wiki.openstreetmap.org/wiki/Key:diet:gluten_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:lactose_free#values) [diet:lactose_free](https://wiki.openstreetmap.org/wiki/Key:diet:lactose_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dno) ### repairs_climbing_shoes @@ -670,92 +643,108 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes + +| id | question | osmTags | fields | +-----|-----|-----|----- | +| shop-type.0 | Only show shops selling {search} | | search (string) | -id | question | osmTags | fields ----- | ---------- | --------- | -------- -shop-type.0 | Only show shops selling {search} | | search (string) + + +| id | question | osmTags | fields | +-----|-----|-----|----- | +| shop-name.0 | Only show shops with name {search} | | search (string) | -id | question | osmTags | fields ----- | ---------- | --------- | -------- -shop-name.0 | Only show shops with name {search} | | search (string) + + +| id | question | osmTags | +-----|-----|----- | +| accepts_cash.0 | Accepts cash | payment:cash=yes | -id | question | osmTags ----- | ---------- | --------- -accepts_cash.0 | Accepts cash | payment:cash=yes + + +| id | question | osmTags | +-----|-----|----- | +| accepts_cards.0 | Accepts payment cards | payment:cards=yes | -id | question | osmTags ----- | ---------- | --------- -accepts_cards.0 | Accepts payment cards | payment:cards=yes + + +| id | question | osmTags | +-----|-----|----- | +| has_organic.0 | Has organic options | organic=yes | organic=only | -id | question | osmTags ----- | ---------- | --------- -has_organic.0 | Has organic options | organic=yes \| organic=only + + +| id | question | osmTags | +-----|-----|----- | +| second_hand.0 | Only show shops selling second-hand items | shop=second_hand | shop=charity | second_hand=yes | second_hand=only | -id | question | osmTags ----- | ---------- | --------- -second_hand.0 | Only show shops selling second-hand items | shop=second_hand \| shop=charity \| second_hand=yes \| second_hand=only + + +| id | question | osmTags | +-----|-----|----- | +| sugar_free.0 | *All types* (default) | | +| sugar_free.1 | This shop only sells sugar free products | diet:sugar_free=only | +| sugar_free.2 | This shop has a big sugar free offering | diet:sugar_free=yes | +| sugar_free.3 | This shop has a limited sugar free offering | diet:sugar_free=limited | +| sugar_free.4 | This shop has no sugar free offering | diet:sugar_free=no | -id | question | osmTags ----- | ---------- | --------- -sugar_free.0 | All types (default) | -sugar_free.1 | This shop only sells sugar free products | diet:sugar_free=only -sugar_free.2 | This shop has a big sugar free offering | diet:sugar_free=yes -sugar_free.3 | This shop has a limited sugar free offering | diet:sugar_free=limited -sugar_free.4 | This shop has no sugar free offering | diet:sugar_free=no + + +| id | question | osmTags | +-----|-----|----- | +| gluten_free.0 | *All types* (default) | | +| gluten_free.1 | This shop only sells gluten free products | diet:gluten_free=only | +| gluten_free.2 | This shop has a big gluten free offering | diet:gluten_free=yes | +| gluten_free.3 | This shop has a limited gluten free offering | diet:gluten_free=limited | +| gluten_free.4 | This shop has no gluten free offering | diet:gluten_free=no | -id | question | osmTags ----- | ---------- | --------- -gluten_free.0 | All types (default) | -gluten_free.1 | This shop only sells gluten free products | diet:gluten_free=only -gluten_free.2 | This shop has a big gluten free offering | diet:gluten_free=yes -gluten_free.3 | This shop has a limited gluten free offering | diet:gluten_free=limited -gluten_free.4 | This shop has no gluten free offering | diet:gluten_free=no + + +| id | question | osmTags | +-----|-----|----- | +| lactose_free.0 | *All types* (default) | | +| lactose_free.1 | Only sells lactose free products | diet:lactose_free=only | +| lactose_free.2 | Big lactose free offering | diet:lactose_free=yes | +| lactose_free.3 | Limited lactose free offering | diet:lactose_free=limited | +| lactose_free.4 | No lactose free offering | diet:lactose_free=no | -id | question | osmTags ----- | ---------- | --------- -lactose_free.0 | All types (default) | -lactose_free.1 | Only sells lactose free products | diet:lactose_free=only -lactose_free.2 | Big lactose free offering | diet:lactose_free=yes -lactose_free.3 | Limited lactose free offering | diet:lactose_free=limited -lactose_free.4 | No lactose free offering | diet:lactose_free=no - - This document is autogenerated from [assets/themes/climbing/climbing.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/climbing/climbing.json) diff --git a/Docs/Layers/shower.md b/Docs/Layers/shower.md index 6d5f7ac84da..541a4250304 100644 --- a/Docs/Layers/shower.md +++ b/Docs/Layers/shower.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# shower - shower -======== - - - - +[object Object] A layer showing (public) showers - - - - This layer is shown at zoomlevel **8** and higher - - - + - This layer is shown at zoomlevel **8** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -49,50 +40,32 @@ A layer showing (public) showers - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [personal](https://mapcomplete.org/personal) - - [toilets](https://mapcomplete.org/toilets) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [personal](https://mapcomplete.org/personal) + - [toilets](https://mapcomplete.org/toilets) +## Basic tags for this layer Elements must match the expression **amenity=shower** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22shower%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [key](https://wiki.openstreetmap.org/wiki/Tag:access%3Dkey) -[](https://taginfo.openstreetmap.org/keys/fee#values) [fee](https://wiki.openstreetmap.org/wiki/Key:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) -[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/hot_water#values) [hot_water](https://wiki.openstreetmap.org/wiki/Key:hot_water) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:hot_water%3Dyes) [fee](https://wiki.openstreetmap.org/wiki/Tag:hot_water%3Dfee) [no](https://wiki.openstreetmap.org/wiki/Tag:hot_water%3Dno) ### just_created @@ -314,31 +287,33 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| free.0 | Free to use | fee=no | fee=0 | charge=0 | -id | question | osmTags ----- | ---------- | --------- -free.0 | Free to use | fee=no \| fee=0 \| charge=0 + +| id | question | osmTags | +-----|-----|----- | +| hot-water.0 | Hot water available | hot_water=yes | hot_water=fee | -id | question | osmTags ----- | ---------- | --------- -hot-water.0 | Hot water available | hot_water=yes \| hot_water=fee + + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes - - This document is autogenerated from [assets/layers/shower/shower.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/shower/shower.json) diff --git a/Docs/Layers/ski_piste.md b/Docs/Layers/ski_piste.md index 3c3ddf51944..23bcfb7fcb7 100644 --- a/Docs/Layers/ski_piste.md +++ b/Docs/Layers/ski_piste.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# ski_piste - ski_piste -=========== - - - - +[object Object] Ski and snowboard pistes - - - - This layer is shown at zoomlevel **11** and higher - - - + - This layer is shown at zoomlevel **11** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -40,23 +31,12 @@ Ski and snowboard pistes - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [personal](https://mapcomplete.org/personal) - - [ski](https://mapcomplete.org/ski) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [personal](https://mapcomplete.org/personal) + - [ski](https://mapcomplete.org/ski) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -65,23 +45,16 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22piste%3Atype%22%3D%22downhill%22%5D%5B%22area%22!%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22piste%3Atype%22%3D%22connection%22%5D%5B%22area%22!%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/piste:difficulty#values) [piste:difficulty](https://wiki.openstreetmap.org/wiki/Key:piste:difficulty) | Multiple choice | [novice](https://wiki.openstreetmap.org/wiki/Tag:piste:difficulty%3Dnovice) [easy](https://wiki.openstreetmap.org/wiki/Tag:piste:difficulty%3Deasy) [intermediate](https://wiki.openstreetmap.org/wiki/Tag:piste:difficulty%3Dintermediate) [advanced](https://wiki.openstreetmap.org/wiki/Tag:piste:difficulty%3Dadvanced) [expert](https://wiki.openstreetmap.org/wiki/Tag:piste:difficulty%3Dexpert) [freeride](https://wiki.openstreetmap.org/wiki/Tag:piste:difficulty%3Dfreeride) ### just_created @@ -207,6 +180,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/ski_piste/ski_piste.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/ski_piste/ski_piste.json) diff --git a/Docs/Layers/slow_roads.md b/Docs/Layers/slow_roads.md index e046cd28826..f00d610a2f6 100644 --- a/Docs/Layers/slow_roads.md +++ b/Docs/Layers/slow_roads.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# slow_roads - slow_roads -============ - - - - +[object Object] All carfree roads - - - - This layer is shown at zoomlevel **16** and higher - - - + - This layer is shown at zoomlevel **16** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -41,22 +32,11 @@ All carfree roads - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [speelplekken](https://mapcomplete.org/speelplekken) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [speelplekken](https://mapcomplete.org/speelplekken) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -66,25 +46,18 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22highway%22%3D%22pedestrian%22%5D%5B%22access%22!%3D%22no%22%5D%5B%22access%22!%3D%22private%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22footway%22%5D%5B%22access%22!%3D%22no%22%5D%5B%22access%22!%3D%22private%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22path%22%5D%5B%22access%22!%3D%22no%22%5D%5B%22access%22!%3D%22private%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22bridleway%22%5D%5B%22access%22!%3D%22no%22%5D%5B%22access%22!%3D%22private%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22living_street%22%5D%5B%22access%22!%3D%22no%22%5D%5B%22access%22!%3D%22private%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22track%22%5D%5B%22access%22!%3D%22no%22%5D%5B%22access%22!%3D%22private%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/highway#values) [highway](https://wiki.openstreetmap.org/wiki/Key:highway) | Multiple choice | [living_street](https://wiki.openstreetmap.org/wiki/Tag:highway%3Dliving_street) [pedestrian](https://wiki.openstreetmap.org/wiki/Tag:highway%3Dpedestrian) [footway](https://wiki.openstreetmap.org/wiki/Tag:highway%3Dfootway) [path](https://wiki.openstreetmap.org/wiki/Tag:highway%3Dpath) [bridleway](https://wiki.openstreetmap.org/wiki/Tag:highway%3Dbridleway) [track](https://wiki.openstreetmap.org/wiki/Tag:highway%3Dtrack) -[](https://taginfo.openstreetmap.org/keys/surface#values) [surface](https://wiki.openstreetmap.org/wiki/Key:surface) | [string](../SpecialInputElements.md#string) | [grass](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dgrass) [ground](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dground) [sand](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dsand) [paving_stones](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaving_stones) [asphalt](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dasphalt) [concrete](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dconcrete) -[](https://taginfo.openstreetmap.org/keys/lit#values) [lit](https://wiki.openstreetmap.org/wiki/Key:lit) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno) ### just_created @@ -230,6 +203,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/slow_roads/slow_roads.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/slow_roads/slow_roads.json) diff --git a/Docs/Layers/souvenir_coin.md b/Docs/Layers/souvenir_coin.md index d8f17a74601..b2719f2fc97 100644 --- a/Docs/Layers/souvenir_coin.md +++ b/Docs/Layers/souvenir_coin.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# souvenir_coin - souvenir_coin -=============== - - - - +[object Object] Layer showing machines selling souvenir coins - - - - This layer is shown at zoomlevel **0** and higher - - - + - This layer is shown at zoomlevel **0** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -51,23 +42,12 @@ Layer showing machines selling souvenir coins - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [elongated_coin](https://mapcomplete.org/elongated_coin) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [elongated_coin](https://mapcomplete.org/elongated_coin) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -76,30 +56,23 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22vending_machine%22%5D%5B%22vending%22~%22%5E%28.*souvenir_coins.*%29%24%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | [date](../SpecialInputElements.md#date) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) -[](https://taginfo.openstreetmap.org/keys/coin:design_count#values) [coin:design_count](https://wiki.openstreetmap.org/wiki/Key:coin:design_count) | [pnat](../SpecialInputElements.md#pnat) | [1](https://wiki.openstreetmap.org/wiki/Tag:coin:design_count%3D1) [2](https://wiki.openstreetmap.org/wiki/Tag:coin:design_count%3D2) [3](https://wiki.openstreetmap.org/wiki/Tag:coin:design_count%3D3) [4](https://wiki.openstreetmap.org/wiki/Tag:coin:design_count%3D4) -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [2 EUR](https://wiki.openstreetmap.org/wiki/Tag:charge%3D2 EUR) -[](https://taginfo.openstreetmap.org/keys/payment:coins:denominations#values) [payment:coins:denominations](https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations) | Multiple choice | [0.01 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.01 EUR) [0.02 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.02 EUR) [0.05 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 EUR) [0.10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 EUR) [0.20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 EUR) [0.50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 EUR) [1 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 EUR) [2 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 EUR) [0.05 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 CHF) [0.10 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 CHF) [0.20 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 CHF) [0.50 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 CHF) [1 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 CHF) [2 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 CHF) [5 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D5 CHF) -[](https://taginfo.openstreetmap.org/keys/indoor#values) [indoor](https://wiki.openstreetmap.org/wiki/Key:indoor) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno) -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/check_date#values) [check_date](https://wiki.openstreetmap.org/wiki/Key:check_date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:check_date%3D) ### just_created @@ -359,31 +332,33 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes + +| id | question | osmTags | +-----|-----|----- | +| accepts_debit_cards.0 | Accepts debit cards | payment:debit_cards=yes | -id | question | osmTags ----- | ---------- | --------- -accepts_debit_cards.0 | Accepts debit cards | payment:debit_cards=yes + + +| id | question | osmTags | +-----|-----|----- | +| accepts_credit_cards.0 | Accepts credit cards | payment:credit_cards=yes | -id | question | osmTags ----- | ---------- | --------- -accepts_credit_cards.0 | Accepts credit cards | payment:credit_cards=yes - - This document is autogenerated from [assets/layers/souvenir_coin/souvenir_coin.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/souvenir_coin/souvenir_coin.json) diff --git a/Docs/Layers/souvenir_note.md b/Docs/Layers/souvenir_note.md index 99f53ca240a..141cbd3e0ad 100644 --- a/Docs/Layers/souvenir_note.md +++ b/Docs/Layers/souvenir_note.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# souvenir_note - souvenir_note -=============== - - - - +[object Object] Layer showing machines selling souvenir banknotes - - - - This layer is shown at zoomlevel **0** and higher - - - + - This layer is shown at zoomlevel **0** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -51,23 +42,12 @@ Layer showing machines selling souvenir banknotes - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [elongated_coin](https://mapcomplete.org/elongated_coin) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [elongated_coin](https://mapcomplete.org/elongated_coin) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -76,30 +56,23 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22vending_machine%22%5D%5B%22vending%22~%22%5E%28.*souvenir_notes.*%29%24%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | [date](../SpecialInputElements.md#date) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) -[](https://taginfo.openstreetmap.org/keys/note:design_count#values) [note:design_count](https://wiki.openstreetmap.org/wiki/Key:note:design_count) | [pnat](../SpecialInputElements.md#pnat) | [1](https://wiki.openstreetmap.org/wiki/Tag:note:design_count%3D1) [2](https://wiki.openstreetmap.org/wiki/Tag:note:design_count%3D2) [3](https://wiki.openstreetmap.org/wiki/Tag:note:design_count%3D3) [4](https://wiki.openstreetmap.org/wiki/Tag:note:design_count%3D4) -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [2 EUR](https://wiki.openstreetmap.org/wiki/Tag:charge%3D2 EUR) [3 EUR](https://wiki.openstreetmap.org/wiki/Tag:charge%3D3 EUR) -[](https://taginfo.openstreetmap.org/keys/payment:coins:denominations#values) [payment:coins:denominations](https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations) | Multiple choice | [0.01 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.01 EUR) [0.02 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.02 EUR) [0.05 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 EUR) [0.10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 EUR) [0.20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 EUR) [0.50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 EUR) [1 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 EUR) [2 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 EUR) [0.05 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 CHF) [0.10 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 CHF) [0.20 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 CHF) [0.50 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 CHF) [1 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 CHF) [2 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 CHF) [5 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D5 CHF) -[](https://taginfo.openstreetmap.org/keys/indoor#values) [indoor](https://wiki.openstreetmap.org/wiki/Key:indoor) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno) -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/check_date#values) [check_date](https://wiki.openstreetmap.org/wiki/Key:check_date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:check_date%3D) ### just_created @@ -360,31 +333,33 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes + +| id | question | osmTags | +-----|-----|----- | +| accepts_debit_cards.0 | Accepts debit cards | payment:debit_cards=yes | -id | question | osmTags ----- | ---------- | --------- -accepts_debit_cards.0 | Accepts debit cards | payment:debit_cards=yes + + +| id | question | osmTags | +-----|-----|----- | +| accepts_credit_cards.0 | Accepts credit cards | payment:credit_cards=yes | -id | question | osmTags ----- | ---------- | --------- -accepts_credit_cards.0 | Accepts credit cards | payment:credit_cards=yes - - This document is autogenerated from [assets/layers/souvenir_note/souvenir_note.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/souvenir_note/souvenir_note.json) diff --git a/Docs/Layers/speed_camera.md b/Docs/Layers/speed_camera.md index 35dfbb14930..ec7f77bf9a8 100644 --- a/Docs/Layers/speed_camera.md +++ b/Docs/Layers/speed_camera.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# speed_camera - speed_camera -============== - - - - +[object Object] Layer showing speed cameras - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -42,47 +33,29 @@ Layer showing speed cameras - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [maxspeed](https://mapcomplete.org/maxspeed) - - [personal](https://mapcomplete.org/personal) - - [surveillance](https://mapcomplete.org/surveillance) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [maxspeed](https://mapcomplete.org/maxspeed) + - [personal](https://mapcomplete.org/personal) + - [surveillance](https://mapcomplete.org/surveillance) +## Basic tags for this layer Elements must match the expression **highway=speed_camera** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22highway%22%3D%22speed_camera%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [direction](../SpecialInputElements.md#direction) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/maxspeed#values) [maxspeed](https://wiki.openstreetmap.org/wiki/Key:maxspeed) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/direction#values) [direction](https://wiki.openstreetmap.org/wiki/Key:direction) | [direction](../SpecialInputElements.md#direction) | ### just_created @@ -223,6 +196,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/speed_camera/speed_camera.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/speed_camera/speed_camera.json) diff --git a/Docs/Layers/speed_display.md b/Docs/Layers/speed_display.md index 3a538414d15..465276b6c3c 100644 --- a/Docs/Layers/speed_display.md +++ b/Docs/Layers/speed_display.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# speed_display - speed_display -=============== - - - - +[object Object] Layer showing speed displays that alert drivers of their speed. - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [maxspeed](#maxspeed) @@ -38,46 +29,28 @@ Layer showing speed displays that alert drivers of their speed. - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [maxspeed](https://mapcomplete.org/maxspeed) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [maxspeed](https://mapcomplete.org/maxspeed) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **highway=speed_display** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22highway%22%3D%22speed_display%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/maxspeed#values) [maxspeed](https://wiki.openstreetmap.org/wiki/Key:maxspeed) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/inscription#values) [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [string](../SpecialInputElements.md#string) | ### just_created @@ -185,6 +158,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/speed_display/speed_display.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/speed_display/speed_display.json) diff --git a/Docs/Layers/sport_pitch.md b/Docs/Layers/sport_pitch.md index 0a19c22c1cd..29c55363dc5 100644 --- a/Docs/Layers/sport_pitch.md +++ b/Docs/Layers/sport_pitch.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# sport_pitch - sport_pitch -============= - - - - +[object Object] A sport pitch - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -48,54 +39,36 @@ A sport pitch - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [personal](https://mapcomplete.org/personal) - - [speelplekken](https://mapcomplete.org/speelplekken) - - [sport_pitches](https://mapcomplete.org/sport_pitches) - - [sports](https://mapcomplete.org/sports) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [personal](https://mapcomplete.org/personal) + - [speelplekken](https://mapcomplete.org/speelplekken) + - [sport_pitches](https://mapcomplete.org/sport_pitches) + - [sports](https://mapcomplete.org/sports) +## Basic tags for this layer Elements must match the expression **leisure=pitch** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22leisure%22%3D%22pitch%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/sport#values) [sport](https://wiki.openstreetmap.org/wiki/Key:sport) | [string](../SpecialInputElements.md#string) | [basketball](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dbasketball) [soccer](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dsoccer) [table_tennis](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dtable_tennis) [tennis](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dtennis) [korfball](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dkorfball) [skateboard](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dskateboard) -[](https://taginfo.openstreetmap.org/keys/hoops#values) [hoops](https://wiki.openstreetmap.org/wiki/Key:hoops) | Multiple choice | [1](https://wiki.openstreetmap.org/wiki/Tag:hoops%3D1) [2](https://wiki.openstreetmap.org/wiki/Tag:hoops%3D2) [4](https://wiki.openstreetmap.org/wiki/Tag:hoops%3D4) -[](https://taginfo.openstreetmap.org/keys/surface#values) [surface](https://wiki.openstreetmap.org/wiki/Key:surface) | [string](../SpecialInputElements.md#string) | [grass](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dgrass) [sand](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dsand) [paving_stones](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaving_stones) [asphalt](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dasphalt) [concrete](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dconcrete) [fine_gravel](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dfine_gravel) [tartan](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dtartan) -[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:access%3Dlimited) [members](https://wiki.openstreetmap.org/wiki/Tag:access%3Dmembers) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) -[](https://taginfo.openstreetmap.org/keys/reservation#values) [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) ### just_created @@ -311,36 +284,38 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| accessibility.0 | Publicly accessible | access=yes | access=public | access= | -id | question | osmTags ----- | ---------- | --------- -accessibility.0 | Publicly accessible | access=yes \| access=public \| access= + +| id | question | osmTags | +-----|-----|----- | +| available_sports.0 | *All sports* (default) | | +| available_sports.1 | Basketball fields | sport=basketball | +| available_sports.2 | Soccer fields | sport=soccer | +| available_sports.3 | Ping-pong tables | sport=table_tennis | +| available_sports.4 | Tennis fields | sport=tennis | +| available_sports.5 | Badminton fields | sport=badminton | -id | question | osmTags ----- | ---------- | --------- -available_sports.0 | All sports (default) | -available_sports.1 | Basketball fields | sport=basketball -available_sports.2 | Soccer fields | sport=soccer -available_sports.3 | Ping-pong tables | sport=table_tennis -available_sports.4 | Tennis fields | sport=tennis -available_sports.5 | Badminton fields | sport=badminton + + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes - - This document is autogenerated from [assets/layers/sport_pitch/sport_pitch.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/sport_pitch/sport_pitch.json) diff --git a/Docs/Layers/sport_places_without_etymology.md b/Docs/Layers/sport_places_without_etymology.md index a98bc26e1ba..2391a322ed7 100644 --- a/Docs/Layers/sport_places_without_etymology.md +++ b/Docs/Layers/sport_places_without_etymology.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# sport_places_without_etymology - sport_places_without_etymology -================================ - - - - +[object Object] All objects which have an etymology known - - - - This layer is shown at zoomlevel **18** and higher - - - + - This layer is shown at zoomlevel **18** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [etymology-images-from-wikipedia](#etymology-images-from-wikipedia) @@ -44,22 +35,11 @@ All objects which have an etymology known - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [etymology](https://mapcomplete.org/etymology) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [etymology](https://mapcomplete.org/etymology) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -68,24 +48,17 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22leisure%22%3D%22sports_centre%22%5D%5B%22name%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22leisure%22%3D%22stadium%22%5D%5B%22name%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22leisure%22%3D%22swimming_pool%22%5D%5B%22name%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [wikidata](../SpecialInputElements.md#wikidata) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name:etymology:wikidata#values) [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | -[](https://taginfo.openstreetmap.org/keys/name:etymology#values) [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology) | [string](../SpecialInputElements.md#string) | [unknown](https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown) ### just_created @@ -242,6 +215,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/themes/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/etymology/etymology.json) diff --git a/Docs/Layers/sport_shops.md b/Docs/Layers/sport_shops.md index 581ec5ac8af..bf792becc78 100644 --- a/Docs/Layers/sport_shops.md +++ b/Docs/Layers/sport_shops.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# sport_shops - sport_shops -============= - - - - +[object Object] A shop - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -63,60 +54,42 @@ A shop - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [sports](https://mapcomplete.org/sports) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [sports](https://mapcomplete.org/sports) +## Basic tags for this layer Elements must match the expression **shop=sports** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22shop%22%3D%22sports%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/shop#values) [shop](https://wiki.openstreetmap.org/wiki/Key:shop) | [string](../SpecialInputElements.md#string) | [vacant](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvacant) [agrarian](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dagrarian) [alcohol](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dalcohol) [anime](https://wiki.openstreetmap.org/wiki/Tag:shop%3Danime) [antiques](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dantiques) [appliance](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dappliance) [art](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dart) [baby_goods](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbaby_goods) [bag](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbag) [bakery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbakery) [bathroom_furnishing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbathroom_furnishing) [beauty](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbeauty) [bed](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbed) [beverages](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbeverages) [bicycle](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbicycle) [boat](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dboat) [bookmaker](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbookmaker) [books](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbooks) [brewing_supplies](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbrewing_supplies) [butcher](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbutcher) [camera](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcamera) [candles](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcandles) [cannabis](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcannabis) [car](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar) [car_parts](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar_parts) [car_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar_repair) [caravan](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcaravan) [carpet](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcarpet) [catalogue](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcatalogue) [charity](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcharity) [cheese](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcheese) [chemist](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dchemist) [chocolate](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dchocolate) [clothes](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dclothes) [coffee](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcoffee) [collector](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcollector) [computer](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcomputer) [confectionery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dconfectionery) [convenience](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dconvenience) [copyshop](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcopyshop) [cosmetics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcosmetics) [country_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcountry_store) [craft](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcraft) [curtain](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcurtain) [dairy](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddairy) [deli](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddeli) [department_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddepartment_store) [doityourself](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddoityourself) [doors](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddoors) [dry_cleaning](https://wiki.openstreetmap.org/wiki/Tag:shop%3Ddry_cleaning) [e-cigarette](https://wiki.openstreetmap.org/wiki/Tag:shop%3De-cigarette) [electrical](https://wiki.openstreetmap.org/wiki/Tag:shop%3Delectrical) [electronics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Delectronics) [erotic](https://wiki.openstreetmap.org/wiki/Tag:shop%3Derotic) [fabric](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfabric) [farm](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfarm) [fashion_accessories](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfashion_accessories) [fireplace](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfireplace) [fishing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfishing) [flooring](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dflooring) [florist](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dflorist) [frame](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dframe) [frozen_food](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfrozen_food) [fuel](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfuel) [funeral_directors](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfuneral_directors) [furniture](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dfurniture) [games](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgames) [garden_centre](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgarden_centre) [gas](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgas) [general](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgeneral) [gift](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgift) [greengrocer](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dgreengrocer) [hairdresser](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhairdresser) [hairdresser_supply](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhairdresser_supply) [hardware](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhardware) [health_food](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhealth_food) [hearing_aids](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhearing_aids) [herbalist](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dherbalist) [hifi](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhifi) [honey](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhoney) [household_linen](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhousehold_linen) [houseware](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhouseware) [hunting](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhunting) [interior_decoration](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dinterior_decoration) [jewelry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Djewelry) [kiosk](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dkiosk) [kitchen](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dkitchen) [laundry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlaundry) [leather](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dleather) [lighting](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlighting) [locksmith](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlocksmith) [lottery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dlottery) [mall](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmall) [massage](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmassage) [medical_supply](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmedical_supply) [military_surplus](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmilitary_surplus) [mobile_phone](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmobile_phone) [model](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmodel) [money_lender](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmoney_lender) [motorcycle](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmotorcycle) [motorcycle_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmotorcycle_repair) [music](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmusic) [musical_instrument](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dmusical_instrument) [newsagent](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dnewsagent) [nutrition_supplements](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dnutrition_supplements) [nuts](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dnuts) [optician](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doptician) [outdoor](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doutdoor) [outpost](https://wiki.openstreetmap.org/wiki/Tag:shop%3Doutpost) [paint](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpaint) [party](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dparty) [pasta](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpasta) [pastry](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpastry) [pawnbroker](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpawnbroker) [perfumery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dperfumery) [pet](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpet) [pet_grooming](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpet_grooming) [photo](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dphoto) [pottery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpottery) [printer_ink](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dprinter_ink) [psychic](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpsychic) [pyrotechnics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dpyrotechnics) [radiotechnics](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dradiotechnics) [religion](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dreligion) [rental](https://wiki.openstreetmap.org/wiki/Tag:shop%3Drental) [repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Drepair) [rice](https://wiki.openstreetmap.org/wiki/Tag:shop%3Drice) [scuba_diving](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dscuba_diving) [seafood](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dseafood) [second_hand](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsecond_hand) [sewing](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsewing) [shoe_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dshoe_repair) [shoes](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dshoes) [spices](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dspices) [sports](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsports) [stationery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dstationery) [storage_rental](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dstorage_rental) [supermarket](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsupermarket) [swimming_pool](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dswimming_pool) [tailor](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtailor) [tattoo](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtattoo) [tea](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtea) [telecommunication](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtelecommunication) [ticket](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dticket) [tiles](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtiles) [tobacco](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtobacco) [tool_hire](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtool_hire) [toys](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtoys) [trade](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtrade) [travel_agency](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtravel_agency) [trophy](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtrophy) [tyres](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dtyres) [vacuum_cleaner](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvacuum_cleaner) [variety_store](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvariety_store) [video](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvideo) [video_games](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dvideo_games) [watches](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwatches) [water](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwater) [water_sports](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwater_sports) [weapons](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dweapons) [wholesale](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwholesale) [wigs](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwigs) [window_blind](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwindow_blind) [wine](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dwine) -[](https://taginfo.openstreetmap.org/keys/brand#values) [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/second_hand#values) [second_hand](https://wiki.openstreetmap.org/wiki/Key:second_hand) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:second_hand%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:second_hand%3Dno) -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/service:binding#values) [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) -[](https://taginfo.openstreetmap.org/keys/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired) -[](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers) -[](https://taginfo.openstreetmap.org/keys/internet_access:ssid#values) [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom) -[](https://taginfo.openstreetmap.org/keys/organic#values) [organic](https://wiki.openstreetmap.org/wiki/Key:organic) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:organic%3Donly) [no](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:sugar_free#values) [diet:sugar_free](https://wiki.openstreetmap.org/wiki/Key:diet:sugar_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:sugar_free%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:gluten_free#values) [diet:gluten_free](https://wiki.openstreetmap.org/wiki/Key:diet:gluten_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:gluten_free%3Dno) -[](https://taginfo.openstreetmap.org/keys/diet:lactose_free#values) [diet:lactose_free](https://wiki.openstreetmap.org/wiki/Key:diet:lactose_free) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:lactose_free%3Dno) ### just_created @@ -656,92 +629,108 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes + +| id | question | osmTags | fields | +-----|-----|-----|----- | +| shop-type.0 | Only show shops selling {search} | | search (string) | -id | question | osmTags | fields ----- | ---------- | --------- | -------- -shop-type.0 | Only show shops selling {search} | | search (string) + + +| id | question | osmTags | fields | +-----|-----|-----|----- | +| shop-name.0 | Only show shops with name {search} | | search (string) | -id | question | osmTags | fields ----- | ---------- | --------- | -------- -shop-name.0 | Only show shops with name {search} | | search (string) + + +| id | question | osmTags | +-----|-----|----- | +| accepts_cash.0 | Accepts cash | payment:cash=yes | -id | question | osmTags ----- | ---------- | --------- -accepts_cash.0 | Accepts cash | payment:cash=yes + + +| id | question | osmTags | +-----|-----|----- | +| accepts_cards.0 | Accepts payment cards | payment:cards=yes | -id | question | osmTags ----- | ---------- | --------- -accepts_cards.0 | Accepts payment cards | payment:cards=yes + + +| id | question | osmTags | +-----|-----|----- | +| has_organic.0 | Has organic options | organic=yes | organic=only | -id | question | osmTags ----- | ---------- | --------- -has_organic.0 | Has organic options | organic=yes \| organic=only + + +| id | question | osmTags | +-----|-----|----- | +| second_hand.0 | Only show shops selling second-hand items | shop=second_hand | shop=charity | second_hand=yes | second_hand=only | -id | question | osmTags ----- | ---------- | --------- -second_hand.0 | Only show shops selling second-hand items | shop=second_hand \| shop=charity \| second_hand=yes \| second_hand=only + + +| id | question | osmTags | +-----|-----|----- | +| sugar_free.0 | *All types* (default) | | +| sugar_free.1 | This shop only sells sugar free products | diet:sugar_free=only | +| sugar_free.2 | This shop has a big sugar free offering | diet:sugar_free=yes | +| sugar_free.3 | This shop has a limited sugar free offering | diet:sugar_free=limited | +| sugar_free.4 | This shop has no sugar free offering | diet:sugar_free=no | -id | question | osmTags ----- | ---------- | --------- -sugar_free.0 | All types (default) | -sugar_free.1 | This shop only sells sugar free products | diet:sugar_free=only -sugar_free.2 | This shop has a big sugar free offering | diet:sugar_free=yes -sugar_free.3 | This shop has a limited sugar free offering | diet:sugar_free=limited -sugar_free.4 | This shop has no sugar free offering | diet:sugar_free=no + + +| id | question | osmTags | +-----|-----|----- | +| gluten_free.0 | *All types* (default) | | +| gluten_free.1 | This shop only sells gluten free products | diet:gluten_free=only | +| gluten_free.2 | This shop has a big gluten free offering | diet:gluten_free=yes | +| gluten_free.3 | This shop has a limited gluten free offering | diet:gluten_free=limited | +| gluten_free.4 | This shop has no gluten free offering | diet:gluten_free=no | -id | question | osmTags ----- | ---------- | --------- -gluten_free.0 | All types (default) | -gluten_free.1 | This shop only sells gluten free products | diet:gluten_free=only -gluten_free.2 | This shop has a big gluten free offering | diet:gluten_free=yes -gluten_free.3 | This shop has a limited gluten free offering | diet:gluten_free=limited -gluten_free.4 | This shop has no gluten free offering | diet:gluten_free=no + + +| id | question | osmTags | +-----|-----|----- | +| lactose_free.0 | *All types* (default) | | +| lactose_free.1 | Only sells lactose free products | diet:lactose_free=only | +| lactose_free.2 | Big lactose free offering | diet:lactose_free=yes | +| lactose_free.3 | Limited lactose free offering | diet:lactose_free=limited | +| lactose_free.4 | No lactose free offering | diet:lactose_free=no | -id | question | osmTags ----- | ---------- | --------- -lactose_free.0 | All types (default) | -lactose_free.1 | Only sells lactose free products | diet:lactose_free=only -lactose_free.2 | Big lactose free offering | diet:lactose_free=yes -lactose_free.3 | Limited lactose free offering | diet:lactose_free=limited -lactose_free.4 | No lactose free offering | diet:lactose_free=no - - This document is autogenerated from [assets/themes/sports/sports.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/sports/sports.json) diff --git a/Docs/Layers/sports_centre.md b/Docs/Layers/sports_centre.md index ca58020472c..c79e089c126 100644 --- a/Docs/Layers/sports_centre.md +++ b/Docs/Layers/sports_centre.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# sports_centre - sports_centre -=============== - - - - +[object Object] Indoor and outdoor sports centres can be found on this layer - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -45,49 +36,31 @@ Indoor and outdoor sports centres can be found on this layer - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [personal](https://mapcomplete.org/personal) - - [sports](https://mapcomplete.org/sports) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [personal](https://mapcomplete.org/personal) + - [sports](https://mapcomplete.org/sports) +## Basic tags for this layer Elements must match the expression **leisure=sports_centre** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22leisure%22%3D%22sports_centre%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) ### just_created @@ -262,17 +235,15 @@ _This tagrendering has no question and is thus read-only_ - - -#### Filters +#### Filters +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | + -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes - This document is autogenerated from [assets/layers/sports_centre/sports_centre.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/sports_centre/sports_centre.json) diff --git a/Docs/Layers/stairs.md b/Docs/Layers/stairs.md index 28f16caac22..87fca3f001c 100644 --- a/Docs/Layers/stairs.md +++ b/Docs/Layers/stairs.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# stairs - stairs -======== - - - - +[object Object] Layer showing stairs and escalators - - - - This layer is shown at zoomlevel **17** and higher - - - + - This layer is shown at zoomlevel **17** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -45,50 +36,32 @@ Layer showing stairs and escalators - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [blind_osm](https://mapcomplete.org/blind_osm) - - [personal](https://mapcomplete.org/personal) - - [stations](https://mapcomplete.org/stations) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [blind_osm](https://mapcomplete.org/blind_osm) + - [personal](https://mapcomplete.org/personal) + - [stations](https://mapcomplete.org/stations) +## Basic tags for this layer Elements must match the expression **highway=steps** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22highway%22%3D%22steps%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [slope](../SpecialInputElements.md#slope) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [string](../SpecialInputElements.md#string) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/conveying#values) [conveying](https://wiki.openstreetmap.org/wiki/Key:conveying) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:conveying%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:conveying%3Dno) -[](https://taginfo.openstreetmap.org/keys/handrail#values) [handrail](https://wiki.openstreetmap.org/wiki/Key:handrail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:handrail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:handrail%3Dno) -[](https://taginfo.openstreetmap.org/keys/tactile_writing#values) [tactile_writing](https://wiki.openstreetmap.org/wiki/Key:tactile_writing) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:tactile_writing%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:tactile_writing%3Dno) -[](https://taginfo.openstreetmap.org/keys/incline#values) [incline](https://wiki.openstreetmap.org/wiki/Key:incline) | [slope](../SpecialInputElements.md#slope) | ### just_created @@ -276,6 +249,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/stairs/stairs.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/stairs/stairs.json) diff --git a/Docs/Layers/street_lamps.md b/Docs/Layers/street_lamps.md index 46f25dd4a1b..e4e9be492ca 100644 --- a/Docs/Layers/street_lamps.md +++ b/Docs/Layers/street_lamps.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# street_lamps - street_lamps -============== - - - - +[object Object] A layer showing street lights - - - - This layer is shown at zoomlevel **16** and higher - - - + - This layer is shown at zoomlevel **16** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -48,53 +39,35 @@ A layer showing street lights - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [personal](https://mapcomplete.org/personal) - - [street_lighting](https://mapcomplete.org/street_lighting) - - [street_lighting_assen](https://mapcomplete.org/street_lighting_assen) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [personal](https://mapcomplete.org/personal) + - [street_lighting](https://mapcomplete.org/street_lighting) + - [street_lighting_assen](https://mapcomplete.org/street_lighting_assen) +## Basic tags for this layer Elements must match the expression **highway=street_lamp** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22highway%22%3D%22street_lamp%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [color](../SpecialInputElements.md#color) | [object Object] [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [direction](../SpecialInputElements.md#direction) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/support#values) [support](https://wiki.openstreetmap.org/wiki/Key:support) | Multiple choice | [catenary](https://wiki.openstreetmap.org/wiki/Tag:support%3Dcatenary) [ceiling](https://wiki.openstreetmap.org/wiki/Tag:support%3Dceiling) [ground](https://wiki.openstreetmap.org/wiki/Tag:support%3Dground) [pedestal](https://wiki.openstreetmap.org/wiki/Tag:support%3Dpedestal) [pole](https://wiki.openstreetmap.org/wiki/Tag:support%3Dpole) [wall](https://wiki.openstreetmap.org/wiki/Tag:support%3Dwall) [wall_mount](https://wiki.openstreetmap.org/wiki/Tag:support%3Dwall_mount) -[](https://taginfo.openstreetmap.org/keys/lamp_mount#values) [lamp_mount](https://wiki.openstreetmap.org/wiki/Key:lamp_mount) | Multiple choice | [straight_mast](https://wiki.openstreetmap.org/wiki/Tag:lamp_mount%3Dstraight_mast) [bent_mast](https://wiki.openstreetmap.org/wiki/Tag:lamp_mount%3Dbent_mast) -[](https://taginfo.openstreetmap.org/keys/light:method#values) [light:method](https://wiki.openstreetmap.org/wiki/Key:light:method) | Multiple choice | [LED](https://wiki.openstreetmap.org/wiki/Tag:light:method%3DLED) [incandescent](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dincandescent) [halogen](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dhalogen) [discharge](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Ddischarge) [mercury](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dmercury) [metal-halide](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dmetal-halide) [fluorescent](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dfluorescent) [sodium](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dsodium) [low_pressure_sodium](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dlow_pressure_sodium) [high_pressure_sodium](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dhigh_pressure_sodium) [gas](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dgas) -[](https://taginfo.openstreetmap.org/keys/light:colour#values) [light:colour](https://wiki.openstreetmap.org/wiki/Key:light:colour) | [color](../SpecialInputElements.md#color) | [white](https://wiki.openstreetmap.org/wiki/Tag:light:colour%3Dwhite) [green](https://wiki.openstreetmap.org/wiki/Tag:light:colour%3Dgreen) [orange](https://wiki.openstreetmap.org/wiki/Tag:light:colour%3Dorange) -[](https://taginfo.openstreetmap.org/keys/light:count#values) [light:count](https://wiki.openstreetmap.org/wiki/Key:light:count) | [pnat](../SpecialInputElements.md#pnat) | [1](https://wiki.openstreetmap.org/wiki/Tag:light:count%3D1) [2](https://wiki.openstreetmap.org/wiki/Tag:light:count%3D2) -[](https://taginfo.openstreetmap.org/keys/light:lit#values) [light:lit](https://wiki.openstreetmap.org/wiki/Key:light:lit) | Multiple choice | [dusk-dawn](https://wiki.openstreetmap.org/wiki/Tag:light:lit%3Ddusk-dawn) [24/7](https://wiki.openstreetmap.org/wiki/Tag:light:lit%3D24/7) [motion](https://wiki.openstreetmap.org/wiki/Tag:light:lit%3Dmotion) [demand](https://wiki.openstreetmap.org/wiki/Tag:light:lit%3Ddemand) -[](https://taginfo.openstreetmap.org/keys/light:direction#values) [light:direction](https://wiki.openstreetmap.org/wiki/Key:light:direction) | [direction](../SpecialInputElements.md#direction) | ### just_created @@ -312,6 +285,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/street_lamps/street_lamps.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/street_lamps/street_lamps.json) diff --git a/Docs/Layers/streets_without_etymology.md b/Docs/Layers/streets_without_etymology.md index 0def84c555f..410453c4cdb 100644 --- a/Docs/Layers/streets_without_etymology.md +++ b/Docs/Layers/streets_without_etymology.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# streets_without_etymology - streets_without_etymology -=========================== - - - - +[object Object] All objects which have an etymology known - - - - This layer is shown at zoomlevel **15** and higher - - - + - This layer is shown at zoomlevel **15** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [etymology-images-from-wikipedia](#etymology-images-from-wikipedia) @@ -44,22 +35,11 @@ All objects which have an etymology known - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [etymology](https://mapcomplete.org/etymology) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [etymology](https://mapcomplete.org/etymology) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -69,24 +49,17 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22highway%22!%3D%22bus_stop%22%5D%5B%22name%22%5D%5B%22highway%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [wikidata](../SpecialInputElements.md#wikidata) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name:etymology:wikidata#values) [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | -[](https://taginfo.openstreetmap.org/keys/name:etymology#values) [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology) | [string](../SpecialInputElements.md#string) | [unknown](https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown) ### just_created @@ -243,6 +216,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/themes/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/etymology/etymology.json) diff --git a/Docs/Layers/stripclub.md b/Docs/Layers/stripclub.md index 8723f6addff..c85fd1c75cf 100644 --- a/Docs/Layers/stripclub.md +++ b/Docs/Layers/stripclub.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# stripclub - stripclub -=========== - - - - +[object Object] A venue where erotic dance, striptease, or lap dances are performed commercially. - - - - This layer is shown at zoomlevel **6** and higher - - - + - This layer is shown at zoomlevel **6** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -44,48 +35,30 @@ A venue where erotic dance, striptease, or lap dances are performed commercially - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [openlovemap](https://mapcomplete.org/openlovemap) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [openlovemap](https://mapcomplete.org/openlovemap) +## Basic tags for this layer Elements must match the expression **amenity=stripclub** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22stripclub%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | ### just_created @@ -257,6 +230,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/stripclub/stripclub.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/stripclub/stripclub.json) diff --git a/Docs/Layers/surveillance_camera.md b/Docs/Layers/surveillance_camera.md index 5543bc0bb81..f180ccb673c 100644 --- a/Docs/Layers/surveillance_camera.md +++ b/Docs/Layers/surveillance_camera.md @@ -1,32 +1,23 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# surveillance_camera - surveillance_camera -===================== - - - - +[object Object] This layer shows surveillance cameras and allows a contributor to update information and add new cameras - - - - This layer is shown at zoomlevel **12** and higher - - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[1]) - - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[3]) - - - + - This layer is shown at zoomlevel **12** and higher + - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[1]) + - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[3]) ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -50,23 +41,12 @@ This layer shows surveillance cameras and allows a contributor to update informa - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [personal](https://mapcomplete.org/personal) - - [surveillance](https://mapcomplete.org/surveillance) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [personal](https://mapcomplete.org/personal) + - [surveillance](https://mapcomplete.org/surveillance) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -75,31 +55,24 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22man_made%22%3D%22surveillance%22%5D%5B%22surveillance%3Atype%22%3D%22camera%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22man_made%22%3D%22surveillance%22%5D%5B%22surveillance%3Atype%22%3D%22ALPR%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22man_made%22%3D%22surveillance%22%5D%5B%22surveillance%3Atype%22%3D%22ANPR%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [direction](../SpecialInputElements.md#direction) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [nat](../SpecialInputElements.md#nat) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/surveillance:type#values) [surveillance:type](https://wiki.openstreetmap.org/wiki/Key:surveillance:type) | Multiple choice | [camera](https://wiki.openstreetmap.org/wiki/Tag:surveillance:type%3Dcamera) [ALPR](https://wiki.openstreetmap.org/wiki/Tag:surveillance:type%3DALPR) -[](https://taginfo.openstreetmap.org/keys/camera:type#values) [camera:type](https://wiki.openstreetmap.org/wiki/Key:camera:type) | Multiple choice | [fixed](https://wiki.openstreetmap.org/wiki/Tag:camera:type%3Dfixed) [dome](https://wiki.openstreetmap.org/wiki/Tag:camera:type%3Ddome) [panning](https://wiki.openstreetmap.org/wiki/Tag:camera:type%3Dpanning) -[](https://taginfo.openstreetmap.org/keys/camera:direction#values) [camera:direction](https://wiki.openstreetmap.org/wiki/Key:camera:direction) | [direction](../SpecialInputElements.md#direction) | -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/surveillance#values) [surveillance](https://wiki.openstreetmap.org/wiki/Key:surveillance) | Multiple choice | [public](https://wiki.openstreetmap.org/wiki/Tag:surveillance%3Dpublic) [outdoor](https://wiki.openstreetmap.org/wiki/Tag:surveillance%3Doutdoor) [indoor](https://wiki.openstreetmap.org/wiki/Tag:surveillance%3Dindoor) -[](https://taginfo.openstreetmap.org/keys/indoor#values) [indoor](https://wiki.openstreetmap.org/wiki/Key:indoor) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno) -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [nat](../SpecialInputElements.md#nat) | -[](https://taginfo.openstreetmap.org/keys/surveillance:zone#values) [surveillance:zone](https://wiki.openstreetmap.org/wiki/Key:surveillance:zone) | [string](../SpecialInputElements.md#string) | [parking](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dparking) [traffic](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dtraffic) [entrance](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dentrance) [corridor](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dcorridor) [public_transport_platform](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dpublic_transport_platform) [shop](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dshop) -[](https://taginfo.openstreetmap.org/keys/camera:mount#values) [camera:mount](https://wiki.openstreetmap.org/wiki/Key:camera:mount) | [string](../SpecialInputElements.md#string) | [wall](https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dwall) [pole](https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dpole) [ceiling](https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dceiling) [street_lamp](https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dstreet_lamp) [tree](https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dtree) ### just_created @@ -312,6 +285,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/surveillance_camera/surveillance_camera.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/surveillance_camera/surveillance_camera.json) diff --git a/Docs/Layers/tertiary_education.md b/Docs/Layers/tertiary_education.md index 0e6560f502a..e1483195959 100644 --- a/Docs/Layers/tertiary_education.md +++ b/Docs/Layers/tertiary_education.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# tertiary_education - tertiary_education -==================== - - - - +[object Object] Layer with all tertiary education institutes (ISCED:2011 levels 6,7 and 8) - - - - This layer is shown at zoomlevel **0** and higher - - - + - This layer is shown at zoomlevel **0** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [institution-kind](#institution-kind) @@ -44,23 +35,12 @@ Layer with all tertiary education institutes (ISCED:2011 levels 6,7 and 8) - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [education](https://mapcomplete.org/education) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [education](https://mapcomplete.org/education) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -70,29 +50,22 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22college%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22university%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22school%22%5D%5B%22isced%3A2011%3Alevel%22~%22%5E%28.*bachelor.*%29%24%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22school%22%5D%5B%22isced%3A2011%3Alevel%22~%22%5E%28.*master.*%29%24%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [pnat](../SpecialInputElements.md#pnat) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [email](../SpecialInputElements.md#email) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/amenity#values) [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [college](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcollege) [university](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Duniversity) -[](https://taginfo.openstreetmap.org/keys/isced:2011:level#values) [isced:2011:level](https://wiki.openstreetmap.org/wiki/Key:isced:2011:level) | Multiple choice | [bachelor](https://wiki.openstreetmap.org/wiki/Tag:isced:2011:level%3Dbachelor) [master](https://wiki.openstreetmap.org/wiki/Tag:isced:2011:level%3Dmaster) [doctorate](https://wiki.openstreetmap.org/wiki/Tag:isced:2011:level%3Ddoctorate) -[](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [pnat](../SpecialInputElements.md#pnat) | -[](https://taginfo.openstreetmap.org/keys/school:gender#values) [school:gender](https://wiki.openstreetmap.org/wiki/Key:school:gender) | Multiple choice | [mixed](https://wiki.openstreetmap.org/wiki/Tag:school:gender%3Dmixed) [separated](https://wiki.openstreetmap.org/wiki/Tag:school:gender%3Dseparated) [male](https://wiki.openstreetmap.org/wiki/Tag:school:gender%3Dmale) [female](https://wiki.openstreetmap.org/wiki/Tag:school:gender%3Dfemale) -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | ### just_created @@ -266,6 +239,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/tertiary_education/tertiary_education.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/tertiary_education/tertiary_education.json) diff --git a/Docs/Layers/ticket_machine.md b/Docs/Layers/ticket_machine.md index 398742ddf38..1a7cd5f0d62 100644 --- a/Docs/Layers/ticket_machine.md +++ b/Docs/Layers/ticket_machine.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# ticket_machine - ticket_machine -================ - - - - +[object Object] Find ticket machines for public transport tickets - - - - This layer is shown at zoomlevel **18** and higher - - - + - This layer is shown at zoomlevel **18** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -46,24 +37,13 @@ Find ticket machines for public transport tickets - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [personal](https://mapcomplete.org/personal) - - [stations](https://mapcomplete.org/stations) - - [vending_machine](https://mapcomplete.org/vending_machine) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [personal](https://mapcomplete.org/personal) + - [stations](https://mapcomplete.org/stations) + - [vending_machine](https://mapcomplete.org/vending_machine) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -72,26 +52,19 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22vending%22%3D%22public_transport_tickets%22%5D%5B%22amenity%22%3D%22vending_machine%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Nederlandse Spoorwegen](https://wiki.openstreetmap.org/wiki/Tag:operator%3DNederlandse Spoorwegen) -[](https://taginfo.openstreetmap.org/keys/payment:coins:denominations#values) [payment:coins:denominations](https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations) | Multiple choice | [0.01 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.01 EUR) [0.02 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.02 EUR) [0.05 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 EUR) [0.10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 EUR) [0.20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 EUR) [0.50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 EUR) [1 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 EUR) [2 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 EUR) [0.05 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 CHF) [0.10 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 CHF) [0.20 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 CHF) [0.50 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 CHF) [1 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 CHF) [2 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 CHF) [5 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D5 CHF) -[](https://taginfo.openstreetmap.org/keys/payment:notes:denominations#values) [payment:notes:denominations](https://wiki.openstreetmap.org/wiki/Key:payment:notes:denominations) | Multiple choice | [5 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D5 EUR) [10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D10 EUR) [20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D20 EUR) [50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D50 EUR) [100 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D100 EUR) [200 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D200 EUR) [500 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D500 EUR) [10 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D10 CHF) [20 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D20 CHF) [50 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D50 CHF) [100 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D100 CHF) [200 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D200 CHF) [1000 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D1000 CHF) ### just_created @@ -313,6 +286,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/ticket_machine/ticket_machine.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/ticket_machine/ticket_machine.json) diff --git a/Docs/Layers/ticket_validator.md b/Docs/Layers/ticket_validator.md index e90d56718ec..aea656f0664 100644 --- a/Docs/Layers/ticket_validator.md +++ b/Docs/Layers/ticket_validator.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# ticket_validator - ticket_validator -================== - - - - +[object Object] Find ticket validators to validate public transport tickets - - - - This layer is shown at zoomlevel **18** and higher - - - + - This layer is shown at zoomlevel **18** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -45,46 +36,28 @@ Find ticket validators to validate public transport tickets - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [stations](https://mapcomplete.org/stations) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [stations](https://mapcomplete.org/stations) +## Basic tags for this layer Elements must match the expression **amenity=ticket_validator** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22ticket_validator%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/barrier#values) [barrier](https://wiki.openstreetmap.org/wiki/Key:barrier) | Multiple choice | [gate](https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dgate) -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Nederlandse Spoorwegen](https://wiki.openstreetmap.org/wiki/Tag:operator%3DNederlandse Spoorwegen) ### just_created @@ -267,6 +240,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/ticket_validator/ticket_validator.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/ticket_validator/ticket_validator.json) diff --git a/Docs/Layers/toekomstige_fietsstraat.md b/Docs/Layers/toekomstige_fietsstraat.md index 99cfce966dc..7f24ca6aaac 100644 --- a/Docs/Layers/toekomstige_fietsstraat.md +++ b/Docs/Layers/toekomstige_fietsstraat.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# toekomstige_fietsstraat - toekomstige_fietsstraat -========================= - - - - +[object Object] This street will become a cyclestreet soon - - - - This layer is shown at zoomlevel **9** and higher - - - + - This layer is shown at zoomlevel **9** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [is_cyclestreet](#is_cyclestreet) - [supplementary_sign](#supplementary_sign) - [future_cyclestreet](#future_cyclestreet) @@ -42,22 +33,11 @@ This street will become a cyclestreet soon - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [cyclestreets](https://mapcomplete.org/cyclestreets) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [cyclestreets](https://mapcomplete.org/cyclestreets) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -66,24 +46,17 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22proposed%3Abicycle_road%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22proposed%3Acyclestreet%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [date](../SpecialInputElements.md#date) | | +| ] [object Object] | Multiple choice | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/traffic_sign#values) [traffic_sign](https://wiki.openstreetmap.org/wiki/Key:traffic_sign) | Multiple choice | [DE:244.1,1020-30](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1020-30) [DE:244.1,1022-12,1024-10](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1022-12,1024-10) [DE:244.1,1022-12](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1022-12) [DE:244.1,1024-10](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1024-10) [DE:244.1](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1) -[](https://taginfo.openstreetmap.org/keys/cyclestreet:start_date#values) [cyclestreet:start_date](https://wiki.openstreetmap.org/wiki/Key:cyclestreet:start_date) | [date](../SpecialInputElements.md#date) | -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | ### is_cyclestreet @@ -233,6 +206,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/themes/cyclestreets/cyclestreets.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/cyclestreets/cyclestreets.json) diff --git a/Docs/Layers/toilet.md b/Docs/Layers/toilet.md index 8d03e3089a3..4a4a35801d5 100644 --- a/Docs/Layers/toilet.md +++ b/Docs/Layers/toilet.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# toilet - toilet -======== - - - - +[object Object] A layer showing (public) toilets - - - - This layer is shown at zoomlevel **10** and higher - - - + - This layer is shown at zoomlevel **10** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -59,67 +50,49 @@ A layer showing (public) toilets - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [climbing](https://mapcomplete.org/climbing) - - [nature](https://mapcomplete.org/nature) - - [onwheels](https://mapcomplete.org/onwheels) - - [personal](https://mapcomplete.org/personal) - - [ski](https://mapcomplete.org/ski) - - [stations](https://mapcomplete.org/stations) - - [toerisme_vlaanderen](https://mapcomplete.org/toerisme_vlaanderen) - - [toilets](https://mapcomplete.org/toilets) - - [velopark](https://mapcomplete.org/velopark) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [climbing](https://mapcomplete.org/climbing) + - [nature](https://mapcomplete.org/nature) + - [onwheels](https://mapcomplete.org/onwheels) + - [personal](https://mapcomplete.org/personal) + - [ski](https://mapcomplete.org/ski) + - [stations](https://mapcomplete.org/stations) + - [toerisme_vlaanderen](https://mapcomplete.org/toerisme_vlaanderen) + - [toilets](https://mapcomplete.org/toilets) + - [velopark](https://mapcomplete.org/velopark) +## Basic tags for this layer Elements must match the expression **amenity=toilets** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22toilets%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [no](https://wiki.openstreetmap.org/wiki/Tag:access%3Dno) [key](https://wiki.openstreetmap.org/wiki/Tag:access%3Dkey) -[](https://taginfo.openstreetmap.org/keys/fee#values) [fee](https://wiki.openstreetmap.org/wiki/Key:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) -[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) -[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) -[](https://taginfo.openstreetmap.org/keys/door:width#values) [door:width](https://wiki.openstreetmap.org/wiki/Key:door:width) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/toilets:position#values) [toilets:position](https://wiki.openstreetmap.org/wiki/Key:toilets:position) | Multiple choice | [seated](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dseated) [urinal](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Durinal) [squat](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dsquat) [seated;urinal](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dseated;urinal) -[](https://taginfo.openstreetmap.org/keys/gender_segregated#values) [gender_segregated](https://wiki.openstreetmap.org/wiki/Key:gender_segregated) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:gender_segregated%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:gender_segregated%3Dno) -[](https://taginfo.openstreetmap.org/keys/toilets:menstrual_products#values) [toilets:menstrual_products](https://wiki.openstreetmap.org/wiki/Key:toilets:menstrual_products) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products%3Dno) -[](https://taginfo.openstreetmap.org/keys/toilets:menstrual_products:location#values) [toilets:menstrual_products:location](https://wiki.openstreetmap.org/wiki/Key:toilets:menstrual_products:location) | [string](../SpecialInputElements.md#string) | [female_toilet](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products:location%3Dfemale_toilet) [male_toilet](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products:location%3Dmale_toilet) [wheelchair_toilet](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products:location%3Dwheelchair_toilet) -[](https://taginfo.openstreetmap.org/keys/changing_table#values) [changing_table](https://wiki.openstreetmap.org/wiki/Key:changing_table) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:changing_table%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:changing_table%3Dno) -[](https://taginfo.openstreetmap.org/keys/changing_table:location#values) [changing_table:location](https://wiki.openstreetmap.org/wiki/Key:changing_table:location) | [string](../SpecialInputElements.md#string) | [female_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dfemale_toilet) [male_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dmale_toilet) [wheelchair_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dwheelchair_toilet) [dedicated_room](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Ddedicated_room) -[](https://taginfo.openstreetmap.org/keys/toilets:handwashing#values) [toilets:handwashing](https://wiki.openstreetmap.org/wiki/Key:toilets:handwashing) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dno) -[](https://taginfo.openstreetmap.org/keys/toilets:paper_supplied#values) [toilets:paper_supplied](https://wiki.openstreetmap.org/wiki/Key:toilets:paper_supplied) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:paper_supplied%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:paper_supplied%3Dno) -[](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) | ### just_created @@ -461,38 +434,42 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| wheelchair.0 | Wheelchair accessible | wheelchair=yes | wheelchair=designated | -id | question | osmTags ----- | ---------- | --------- -wheelchair.0 | Wheelchair accessible | wheelchair=yes \| wheelchair=designated + +| id | question | osmTags | +-----|-----|----- | +| changing_table.0 | Has a changing table | changing_table=yes | -id | question | osmTags ----- | ---------- | --------- -changing_table.0 | Has a changing table | changing_table=yes + + +| id | question | osmTags | +-----|-----|----- | +| free.0 | Free to use | fee=no | fee=0 | charge=0 | -id | question | osmTags ----- | ---------- | --------- -free.0 | Free to use | fee=no \| fee=0 \| charge=0 + + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes - - This document is autogenerated from [assets/layers/toilet/toilet.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/toilet/toilet.json) diff --git a/Docs/Layers/toilet_at_amenity.md b/Docs/Layers/toilet_at_amenity.md index 2c04809ef32..efef247c6b9 100644 --- a/Docs/Layers/toilet_at_amenity.md +++ b/Docs/Layers/toilet_at_amenity.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# toilet_at_amenity - toilet_at_amenity -=================== - - - - +[object Object] A layer showing (public) toilets located at different places. - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -56,59 +47,41 @@ A layer showing (public) toilets located at different places. - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [personal](https://mapcomplete.org/personal) - - [toilets](https://mapcomplete.org/toilets) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [personal](https://mapcomplete.org/personal) + - [toilets](https://mapcomplete.org/toilets) +## Basic tags for this layer Elements must match the expression **toilets=yes** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22toilets%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/toilets:access#values) [toilets:access](https://wiki.openstreetmap.org/wiki/Key:toilets:access) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:toilets:access%3Dcustomers) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:access%3Dno) [key](https://wiki.openstreetmap.org/wiki/Tag:toilets:access%3Dkey) -[](https://taginfo.openstreetmap.org/keys/toilets:fee#values) [toilets:fee](https://wiki.openstreetmap.org/wiki/Key:toilets:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:fee%3Dno) -[](https://taginfo.openstreetmap.org/keys/toilets:charge#values) [toilets:charge](https://wiki.openstreetmap.org/wiki/Key:toilets:charge) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/toilets:wheelchair#values) [toilets:wheelchair](https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dno) [designated](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Ddesignated) -[](https://taginfo.openstreetmap.org/keys/toilets:door:width#values) [toilets:door:width](https://wiki.openstreetmap.org/wiki/Key:toilets:door:width) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/toilets:position#values) [toilets:position](https://wiki.openstreetmap.org/wiki/Key:toilets:position) | Multiple choice | [seated](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dseated) [urinal](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Durinal) [squat](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dsquat) [seated;urinal](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dseated;urinal) -[](https://taginfo.openstreetmap.org/keys/changing_table#values) [changing_table](https://wiki.openstreetmap.org/wiki/Key:changing_table) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:changing_table%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:changing_table%3Dno) -[](https://taginfo.openstreetmap.org/keys/changing_table:location#values) [changing_table:location](https://wiki.openstreetmap.org/wiki/Key:changing_table:location) | [string](../SpecialInputElements.md#string) | [female_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dfemale_toilet) [male_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dmale_toilet) [wheelchair_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dwheelchair_toilet) [dedicated_room](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Ddedicated_room) -[](https://taginfo.openstreetmap.org/keys/toilets:handwashing#values) [toilets:handwashing](https://wiki.openstreetmap.org/wiki/Key:toilets:handwashing) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dno) -[](https://taginfo.openstreetmap.org/keys/toilets:paper_supplied#values) [toilets:paper_supplied](https://wiki.openstreetmap.org/wiki/Key:toilets:paper_supplied) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:paper_supplied%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:paper_supplied%3Dno) -[](https://taginfo.openstreetmap.org/keys/toilets:menstrual_products#values) [toilets:menstrual_products](https://wiki.openstreetmap.org/wiki/Key:toilets:menstrual_products) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products%3Dno) -[](https://taginfo.openstreetmap.org/keys/toilets:menstrual_products:location#values) [toilets:menstrual_products:location](https://wiki.openstreetmap.org/wiki/Key:toilets:menstrual_products:location) | [string](../SpecialInputElements.md#string) | [female_toilet](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products:location%3Dfemale_toilet) [male_toilet](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products:location%3Dmale_toilet) [wheelchair_toilet](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products:location%3Dwheelchair_toilet) -[](https://taginfo.openstreetmap.org/keys/toilets:description#values) [toilets:description](https://wiki.openstreetmap.org/wiki/Key:toilets:description) | [string](../SpecialInputElements.md#string) | ### just_created @@ -402,38 +375,42 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| wheelchair.0 | Wheelchair accessible | toilets:wheelchair=yes | toilets:wheelchair=designated | -id | question | osmTags ----- | ---------- | --------- -wheelchair.0 | Wheelchair accessible | toilets:wheelchair=yes \| toilets:wheelchair=designated + +| id | question | osmTags | +-----|-----|----- | +| changing_table.0 | Has a changing table | changing_table=yes | -id | question | osmTags ----- | ---------- | --------- -changing_table.0 | Has a changing table | changing_table=yes + + +| id | question | osmTags | +-----|-----|----- | +| free.0 | Free to use | toilets:fee=no | toilets:fee=0 | toilets:charge=0 | -id | question | osmTags ----- | ---------- | --------- -free.0 | Free to use | toilets:fee=no \| toilets:fee=0 \| toilets:charge=0 + + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes - - This document is autogenerated from [assets/layers/toilet_at_amenity/toilet_at_amenity.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/toilet_at_amenity/toilet_at_amenity.json) diff --git a/Docs/Layers/toursistic_places_without_etymology.md b/Docs/Layers/toursistic_places_without_etymology.md index 421b0425e57..9a8eb76f495 100644 --- a/Docs/Layers/toursistic_places_without_etymology.md +++ b/Docs/Layers/toursistic_places_without_etymology.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# toursistic_places_without_etymology - toursistic_places_without_etymology -===================================== - - - - +[object Object] All objects which have an etymology known - - - - This layer is shown at zoomlevel **18** and higher - - - + - This layer is shown at zoomlevel **18** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [etymology-images-from-wikipedia](#etymology-images-from-wikipedia) @@ -44,22 +35,11 @@ All objects which have an etymology known - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [etymology](https://mapcomplete.org/etymology) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [etymology](https://mapcomplete.org/etymology) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -68,24 +48,17 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22tourism%22%3D%22aquarium%22%5D%5B%22name%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22museum%22%5D%5B%22name%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22theme_park%22%5D%5B%22name%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22zoo%22%5D%5B%22name%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [wikidata](../SpecialInputElements.md#wikidata) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name:etymology:wikidata#values) [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | -[](https://taginfo.openstreetmap.org/keys/name:etymology#values) [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology) | [string](../SpecialInputElements.md#string) | [unknown](https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown) ### just_created @@ -242,6 +215,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/themes/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/etymology/etymology.json) diff --git a/Docs/Layers/trail.md b/Docs/Layers/trail.md index 58f03c47255..5eed86740ac 100644 --- a/Docs/Layers/trail.md +++ b/Docs/Layers/trail.md @@ -1,31 +1,22 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# trail - trail -======= - - - - +[object Object] Waymarked trails - - - - This layer is shown at zoomlevel **12** and higher - + - This layer is shown at zoomlevel **12** and higher No themes use this layer - - ## Table of contents -1. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -2. [ Supported attributes ](#-supported-attributes-) +1. [Basic tags for this layer](#basic-tags-for-this-layer) +2. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -45,10 +36,7 @@ No themes use this layer - [last_edit](#last_edit) - [all-tags](#all-tags) - Basic tags for this layer ---------------------------- - - +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -59,27 +47,20 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22route%22~%22%5E%28.*foot.*%29%24%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22route%22~%22%5E%28.*hiking.*%29%24%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22route%22~%22%5E%28.*bycicle.*%29%24%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22route%22~%22%5E%28.*horse.*%29%24%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | +| ] [object Object] | [color](../SpecialInputElements.md#color) | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Natuurpunt](https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt) -[](https://taginfo.openstreetmap.org/keys/colour#values) [colour](https://wiki.openstreetmap.org/wiki/Key:colour) | [color](../SpecialInputElements.md#color) | [blue](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblue) [red](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred) [green](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgreen) [yellow](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow) -[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) -[](https://taginfo.openstreetmap.org/keys/pushchair#values) [pushchair](https://wiki.openstreetmap.org/wiki/Key:pushchair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:pushchair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:pushchair%3Dno) ### just_created @@ -245,6 +226,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/trail/trail.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/trail/trail.json) diff --git a/Docs/Layers/transit_routes.md b/Docs/Layers/transit_routes.md index bf26170aebc..1ddd73fbe20 100644 --- a/Docs/Layers/transit_routes.md +++ b/Docs/Layers/transit_routes.md @@ -1,31 +1,22 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# transit_routes - transit_routes -================ - - - - +[object Object] Layer showing bus lines - - - - This layer is shown at zoomlevel **15** and higher - - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` - - - + - This layer is shown at zoomlevel **15** and higher + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [name](#name) @@ -44,23 +35,12 @@ Layer showing bus lines - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [personal](https://mapcomplete.org/personal) - - [transit](https://mapcomplete.org/transit) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [personal](https://mapcomplete.org/personal) + - [transit](https://mapcomplete.org/transit) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -69,29 +49,22 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22route%22%3D%22bus%22%5D%5B%22type%22%3D%22route%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [color](../SpecialInputElements.md#color) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/from#values) [from](https://wiki.openstreetmap.org/wiki/Key:from) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/via#values) [via](https://wiki.openstreetmap.org/wiki/Key:via) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/to#values) [to](https://wiki.openstreetmap.org/wiki/Key:to) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/colour#values) [colour](https://wiki.openstreetmap.org/wiki/Key:colour) | [color](../SpecialInputElements.md#color) | -[](https://taginfo.openstreetmap.org/keys/network#values) [network](https://wiki.openstreetmap.org/wiki/Key:network) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | ### just_created @@ -249,6 +222,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/transit_routes/transit_routes.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/transit_routes/transit_routes.json) diff --git a/Docs/Layers/transit_stops.md b/Docs/Layers/transit_stops.md index 1ec81df30bc..b4ce7ca8c84 100644 --- a/Docs/Layers/transit_stops.md +++ b/Docs/Layers/transit_stops.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# transit_stops - transit_stops -=============== - - - - +[object Object] Layer showing different types of transit stops. - - - - This layer is shown at zoomlevel **15** and higher - - - + - This layer is shown at zoomlevel **15** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [stop_name](#stop_name) @@ -48,53 +39,35 @@ Layer showing different types of transit stops. - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [blind_osm](https://mapcomplete.org/blind_osm) - - [personal](https://mapcomplete.org/personal) - - [transit](https://mapcomplete.org/transit) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [blind_osm](https://mapcomplete.org/blind_osm) + - [personal](https://mapcomplete.org/personal) + - [transit](https://mapcomplete.org/transit) +## Basic tags for this layer Elements must match the expression **highway=bus_stop** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22highway%22%3D%22bus_stop%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D) -[](https://taginfo.openstreetmap.org/keys/shelter#values) [shelter](https://wiki.openstreetmap.org/wiki/Key:shelter) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:shelter%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:shelter%3Dno) -[](https://taginfo.openstreetmap.org/keys/bench#values) [bench](https://wiki.openstreetmap.org/wiki/Key:bench) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dno) -[](https://taginfo.openstreetmap.org/keys/bin#values) [bin](https://wiki.openstreetmap.org/wiki/Key:bin) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bin%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:bin%3Dno) -[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) -[](https://taginfo.openstreetmap.org/keys/tactile_paving#values) [tactile_paving](https://wiki.openstreetmap.org/wiki/Key:tactile_paving) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dno) -[](https://taginfo.openstreetmap.org/keys/lit#values) [lit](https://wiki.openstreetmap.org/wiki/Key:lit) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno) -[](https://taginfo.openstreetmap.org/keys/departures_board#values) [departures_board](https://wiki.openstreetmap.org/wiki/Key:departures_board) | Multiple choice | [realtime](https://wiki.openstreetmap.org/wiki/Tag:departures_board%3Drealtime) [timetable](https://wiki.openstreetmap.org/wiki/Tag:departures_board%3Dtimetable) [interval](https://wiki.openstreetmap.org/wiki/Tag:departures_board%3Dinterval) [no](https://wiki.openstreetmap.org/wiki/Tag:departures_board%3Dno) ### just_created @@ -296,40 +269,44 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| shelter.0 | With a shelter | shelter=yes | shelter=separate | -id | question | osmTags ----- | ---------- | --------- -shelter.0 | With a shelter | shelter=yes \| shelter=separate + +| id | question | osmTags | +-----|-----|----- | +| bench.0 | With a bench | bench=yes | bench=separate | -id | question | osmTags ----- | ---------- | --------- -bench.0 | With a bench | bench=yes \| bench=separate + + +| id | question | osmTags | +-----|-----|----- | +| bin.0 | With a bin | bin=yes | bin=separate | -id | question | osmTags ----- | ---------- | --------- -bin.0 | With a bin | bin=yes \| bin=separate + + +| id | question | osmTags | +-----|-----|----- | +| tactile_paving.0 | *All types* (default) | | +| tactile_paving.1 | This stop has tactile paving | tactile_paving=yes | +| tactile_paving.2 | This stop does not have tactile paving | tactile_paving=no | -id | question | osmTags ----- | ---------- | --------- -tactile_paving.0 | All types (default) | -tactile_paving.1 | This stop has tactile paving | tactile_paving=yes -tactile_paving.2 | This stop does not have tactile paving | tactile_paving=no - - This document is autogenerated from [assets/layers/transit_stops/transit_stops.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/transit_stops/transit_stops.json) diff --git a/Docs/Layers/tree_node.md b/Docs/Layers/tree_node.md index ffd87c2d2fc..24a8206a587 100644 --- a/Docs/Layers/tree_node.md +++ b/Docs/Layers/tree_node.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# tree_node - tree_node -=========== - - - - +[object Object] A layer showing trees - - - - This layer is shown at zoomlevel **16** and higher - - - + - This layer is shown at zoomlevel **16** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -52,54 +43,36 @@ A layer showing trees - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [personal](https://mapcomplete.org/personal) - - [trees](https://mapcomplete.org/trees) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [personal](https://mapcomplete.org/personal) + - [trees](https://mapcomplete.org/trees) +## Basic tags for this layer Elements must match the expression **natural=tree** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22natural%22%3D%22tree%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [wikidata](../SpecialInputElements.md#wikidata) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [nat](../SpecialInputElements.md#nat) | | +| ] [object Object] | [wikidata](../SpecialInputElements.md#wikidata) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/species:wikidata#values) [species:wikidata](https://wiki.openstreetmap.org/wiki/Key:species:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | -[](https://taginfo.openstreetmap.org/keys/circumference#values) [circumference](https://wiki.openstreetmap.org/wiki/Key:circumference) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/height#values) [height](https://wiki.openstreetmap.org/wiki/Key:height) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/denotation#values) [denotation](https://wiki.openstreetmap.org/wiki/Key:denotation) | Multiple choice | [landmark](https://wiki.openstreetmap.org/wiki/Tag:denotation%3Dlandmark) [natural_monument](https://wiki.openstreetmap.org/wiki/Tag:denotation%3Dnatural_monument) [agricultural](https://wiki.openstreetmap.org/wiki/Tag:denotation%3Dagricultural) [park](https://wiki.openstreetmap.org/wiki/Tag:denotation%3Dpark) [garden](https://wiki.openstreetmap.org/wiki/Tag:denotation%3Dgarden) [avenue](https://wiki.openstreetmap.org/wiki/Tag:denotation%3Davenue) [urban](https://wiki.openstreetmap.org/wiki/Tag:denotation%3Durban) [none](https://wiki.openstreetmap.org/wiki/Tag:denotation%3Dnone) -[](https://taginfo.openstreetmap.org/keys/leaf_type#values) [leaf_type](https://wiki.openstreetmap.org/wiki/Key:leaf_type) | Multiple choice | [broadleaved](https://wiki.openstreetmap.org/wiki/Tag:leaf_type%3Dbroadleaved) [needleleaved](https://wiki.openstreetmap.org/wiki/Tag:leaf_type%3Dneedleleaved) -[](https://taginfo.openstreetmap.org/keys/leaf_cycle#values) [leaf_cycle](https://wiki.openstreetmap.org/wiki/Key:leaf_cycle) | Multiple choice | [deciduous](https://wiki.openstreetmap.org/wiki/Tag:leaf_cycle%3Ddeciduous) [evergreen](https://wiki.openstreetmap.org/wiki/Tag:leaf_cycle%3Devergreen) -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D) -[](https://taginfo.openstreetmap.org/keys/heritage#values) [heritage](https://wiki.openstreetmap.org/wiki/Key:heritage) | Multiple choice | [4](https://wiki.openstreetmap.org/wiki/Tag:heritage%3D4) [4](https://wiki.openstreetmap.org/wiki/Tag:heritage%3D4) [yes](https://wiki.openstreetmap.org/wiki/Tag:heritage%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:heritage%3Dno) -[](https://taginfo.openstreetmap.org/keys/ref:OnroerendErfgoed#values) [ref:OnroerendErfgoed](https://wiki.openstreetmap.org/wiki/Key:ref:OnroerendErfgoed) | [nat](../SpecialInputElements.md#nat) | -[](https://taginfo.openstreetmap.org/keys/wikidata#values) [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | ### just_created @@ -344,6 +317,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/tree_node/tree_node.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/tree_node/tree_node.json) diff --git a/Docs/Layers/trolley_bay.md b/Docs/Layers/trolley_bay.md index a1726c6629a..e062a937793 100644 --- a/Docs/Layers/trolley_bay.md +++ b/Docs/Layers/trolley_bay.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# trolley_bay - trolley_bay -============= - - - - +[object Object] Find trolley bays for shopping trolleys. - - - - This layer is shown at zoomlevel **18** and higher - - - + - This layer is shown at zoomlevel **18** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [covered](#covered) @@ -43,47 +34,29 @@ Find trolley bays for shopping trolleys. - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [personal](https://mapcomplete.org/personal) - - [shops](https://mapcomplete.org/shops) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [personal](https://mapcomplete.org/personal) + - [shops](https://mapcomplete.org/shops) +## Basic tags for this layer Elements must match the expression **amenity=trolley_bay** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22trolley_bay%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/covered#values) [covered](https://wiki.openstreetmap.org/wiki/Key:covered) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:covered%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:covered%3Dno) -[](https://taginfo.openstreetmap.org/keys/trolley:deposit#values) [trolley:deposit](https://wiki.openstreetmap.org/wiki/Key:trolley:deposit) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:trolley:deposit%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:trolley:deposit%3Dno) -[](https://taginfo.openstreetmap.org/keys/trolley:deposit:denominations#values) [trolley:deposit:denominations](https://wiki.openstreetmap.org/wiki/Key:trolley:deposit:denominations) | Multiple choice | [0.50 EUR](https://wiki.openstreetmap.org/wiki/Tag:trolley:deposit:denominations%3D0.50 EUR) [1 EUR](https://wiki.openstreetmap.org/wiki/Tag:trolley:deposit:denominations%3D1 EUR) [2 EUR](https://wiki.openstreetmap.org/wiki/Tag:trolley:deposit:denominations%3D2 EUR) ### just_created @@ -242,6 +215,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/trolley_bay/trolley_bay.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/trolley_bay/trolley_bay.json) diff --git a/Docs/Layers/vending_machine.md b/Docs/Layers/vending_machine.md index 26eaf5e0af2..6df022847e3 100644 --- a/Docs/Layers/vending_machine.md +++ b/Docs/Layers/vending_machine.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# vending_machine - vending_machine -================= - - - - +[object Object] Layer showing vending machines - - - - This layer is shown at zoomlevel **0** and higher - - - + - This layer is shown at zoomlevel **0** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -57,25 +48,14 @@ Layer showing vending machines - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [cyclofix](https://mapcomplete.org/cyclofix) - - [openlovemap](https://mapcomplete.org/openlovemap) - - [personal](https://mapcomplete.org/personal) - - [vending_machine](https://mapcomplete.org/vending_machine) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [cyclofix](https://mapcomplete.org/cyclofix) + - [openlovemap](https://mapcomplete.org/openlovemap) + - [personal](https://mapcomplete.org/personal) + - [vending_machine](https://mapcomplete.org/vending_machine) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -84,36 +64,29 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22vending_machine%22%5D%5B%22vending%22!~%22%5E%28%28parking_tickets%7Cpublic_transport_tickets%7Cbottle_return%7Cexcrement_bags%7Celongated_coin%29%29%24%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [currency](../SpecialInputElements.md#currency) | | +| ] [object Object] | [currency](../SpecialInputElements.md#currency) | | +| ] [object Object] | [currency](../SpecialInputElements.md#currency) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/vending#values) [vending](https://wiki.openstreetmap.org/wiki/Key:vending) | [string](../SpecialInputElements.md#string) | [drinks](https://wiki.openstreetmap.org/wiki/Tag:vending%3Ddrinks) [sweets](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dsweets) [food](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dfood) [cigarettes](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcigarettes) [condoms](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcondoms) [coffee](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcoffee) [water](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dwater) [newspapers](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dnewspapers) [bicycle_tube](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_tube) [milk](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dmilk) [bread](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbread) [eggs](https://wiki.openstreetmap.org/wiki/Tag:vending%3Deggs) [cheese](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcheese) [honey](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dhoney) [potatoes](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dpotatoes) [meat](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dmeat) [fruit](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dfruit) [strawberries](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dstrawberries) [flowers](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dflowers) [parking_tickets](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dparking_tickets) [elongated_coin](https://wiki.openstreetmap.org/wiki/Tag:vending%3Delongated_coin) [public_transport_tickets](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dpublic_transport_tickets) [bicycle_light](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_light) [gloves](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dgloves) [bicycle_repair_kit](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_repair_kit) [bicycle_pump](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_pump) [bicycle_lock](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_lock) -[](https://taginfo.openstreetmap.org/keys/brand#values) [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [string](../SpecialInputElements.md#string) | [Continental](https://wiki.openstreetmap.org/wiki/Tag:brand%3DContinental) [Schwalbe](https://wiki.openstreetmap.org/wiki/Tag:brand%3DSchwalbe) -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) -[](https://taginfo.openstreetmap.org/keys/payment:coins:denominations#values) [payment:coins:denominations](https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations) | Multiple choice | [0.01 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.01 EUR) [0.02 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.02 EUR) [0.05 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 EUR) [0.10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 EUR) [0.20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 EUR) [0.50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 EUR) [1 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 EUR) [2 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 EUR) [0.05 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 CHF) [0.10 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 CHF) [0.20 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 CHF) [0.50 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 CHF) [1 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 CHF) [2 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 CHF) [5 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D5 CHF) -[](https://taginfo.openstreetmap.org/keys/payment:notes:denominations#values) [payment:notes:denominations](https://wiki.openstreetmap.org/wiki/Key:payment:notes:denominations) | Multiple choice | [5 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D5 EUR) [10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D10 EUR) [20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D20 EUR) [50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D50 EUR) [100 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D100 EUR) [200 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D200 EUR) [500 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D500 EUR) [10 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D10 CHF) [20 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D20 CHF) [50 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D50 CHF) [100 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D100 CHF) [200 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D200 CHF) [1000 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D1000 CHF) -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/indoor#values) [indoor](https://wiki.openstreetmap.org/wiki/Key:indoor) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno) -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [currency](../SpecialInputElements.md#currency) | -[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [currency](../SpecialInputElements.md#currency) | -[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [currency](../SpecialInputElements.md#currency) | -[](https://taginfo.openstreetmap.org/keys/operational_status#values) [operational_status](https://wiki.openstreetmap.org/wiki/Key:operational_status) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3D) [broken](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dbroken) [closed](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dclosed) ### just_created @@ -473,51 +446,51 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes + +| id | question | osmTags | +-----|-----|----- | +| vending.0 | *All vending machines* (default) | | +| vending.1 | Sale of drinks | vending~^(.*drinks.*)$ | +| vending.2 | Sale of sweets | vending~^(.*sweets.*)$ | +| vending.3 | Sale of food | vending~^(.*food.*)$ | +| vending.4 | Sale of cigarettes | vending~^(.*cigarettes.*)$ | +| vending.5 | Sale of condoms | vending~^(.*condoms.*)$ | +| vending.6 | Sale of coffee | vending~^(.*coffee.*)$ | +| vending.7 | Sale of water | vending~^(.*water.*)$ | +| vending.8 | Sale of newspapers | vending~^(.*newspapers.*)$ | +| vending.9 | Sale of bicycle inner tubes | vending~^(.*bicycle_tube.*)$ | +| vending.10 | Sale of milk | vending~^(.*milk.*)$ | +| vending.11 | Sale of bread | vending~^(.*bread.*)$ | +| vending.12 | Sale of eggs | vending~^(.*eggs.*)$ | +| vending.13 | Sale of cheese | vending~^(.*cheese.*)$ | +| vending.14 | Sale of honey | vending~^(.*honey.*)$ | +| vending.15 | Sale of potatoes | vending~^(.*potatoes.*)$ | +| vending.16 | Sale of meat | vending~^(.*meat.*)$ | +| vending.17 | Sale of fruit | vending~^(.*fruit.*)$ | +| vending.18 | Sale of strawberries | vending~^(.*strawberries.*)$ | +| vending.19 | Sale of flowers | vending~^(.*flowers.*)$ | +| vending.20 | Sale of parking tickets | vending~^(.*parking_tickets.*)$ | +| vending.21 | Sale of pressed pennies | vending=elongated_coin | +| vending.22 | Sale of public transport tickets | vending~^(.*public_transport_tickets.*)$ | +| vending.23 | Sale of bicycle lights | vending=bicycle_light | +| vending.24 | Sale of gloves | vending=gloves | +| vending.25 | Sale of bicycle repair kits | vending=bicycle_repair_kit | +| vending.26 | Sale of bicycle pumps | vending=bicycle_pump | +| vending.27 | Sale of bicycle locks | vending=bicycle_lock | -id | question | osmTags ----- | ---------- | --------- -vending.0 | All vending machines (default) | -vending.1 | Sale of drinks | vending~^(.*drinks.*)$ -vending.2 | Sale of sweets | vending~^(.*sweets.*)$ -vending.3 | Sale of food | vending~^(.*food.*)$ -vending.4 | Sale of cigarettes | vending~^(.*cigarettes.*)$ -vending.5 | Sale of condoms | vending~^(.*condoms.*)$ -vending.6 | Sale of coffee | vending~^(.*coffee.*)$ -vending.7 | Sale of water | vending~^(.*water.*)$ -vending.8 | Sale of newspapers | vending~^(.*newspapers.*)$ -vending.9 | Sale of bicycle inner tubes | vending~^(.*bicycle_tube.*)$ -vending.10 | Sale of milk | vending~^(.*milk.*)$ -vending.11 | Sale of bread | vending~^(.*bread.*)$ -vending.12 | Sale of eggs | vending~^(.*eggs.*)$ -vending.13 | Sale of cheese | vending~^(.*cheese.*)$ -vending.14 | Sale of honey | vending~^(.*honey.*)$ -vending.15 | Sale of potatoes | vending~^(.*potatoes.*)$ -vending.16 | Sale of meat | vending~^(.*meat.*)$ -vending.17 | Sale of fruit | vending~^(.*fruit.*)$ -vending.18 | Sale of strawberries | vending~^(.*strawberries.*)$ -vending.19 | Sale of flowers | vending~^(.*flowers.*)$ -vending.20 | Sale of parking tickets | vending~^(.*parking_tickets.*)$ -vending.21 | Sale of pressed pennies | vending=elongated_coin -vending.22 | Sale of public transport tickets | vending~^(.*public_transport_tickets.*)$ -vending.23 | Sale of bicycle lights | vending=bicycle_light -vending.24 | Sale of gloves | vending=gloves -vending.25 | Sale of bicycle repair kits | vending=bicycle_repair_kit -vending.26 | Sale of bicycle pumps | vending=bicycle_pump -vending.27 | Sale of bicycle locks | vending=bicycle_lock - - This document is autogenerated from [assets/layers/vending_machine/vending_machine.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/vending_machine/vending_machine.json) diff --git a/Docs/Layers/vending_machine_bicycle.md b/Docs/Layers/vending_machine_bicycle.md index b37c5a5c1cc..a2af976a333 100644 --- a/Docs/Layers/vending_machine_bicycle.md +++ b/Docs/Layers/vending_machine_bicycle.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# vending_machine_bicycle - vending_machine_bicycle -========================= - - - - +[object Object] Layer showing vending machines - - - - This layer is shown at zoomlevel **11** and higher - - - + - This layer is shown at zoomlevel **11** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -57,22 +48,11 @@ Layer showing vending machines - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [cyclofix](https://mapcomplete.org/cyclofix) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [cyclofix](https://mapcomplete.org/cyclofix) +## Basic tags for this layer Elements must match **all** of the following expressions: @@ -82,36 +62,29 @@ Elements must match **all** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22vending_machine%22%5D%5B%22vending%22!~%22%5E%28%28parking_tickets%7Cpublic_transport_tickets%7Cbottle_return%7Cexcrement_bags%7Celongated_coin%29%29%24%22%5D%5B%22vending%22~%22%5E%28.*bicycle.*%29%24%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [currency](../SpecialInputElements.md#currency) | | +| ] [object Object] | [currency](../SpecialInputElements.md#currency) | | +| ] [object Object] | [currency](../SpecialInputElements.md#currency) | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) -[](https://taginfo.openstreetmap.org/keys/vending#values) [vending](https://wiki.openstreetmap.org/wiki/Key:vending) | [string](../SpecialInputElements.md#string) | [drinks](https://wiki.openstreetmap.org/wiki/Tag:vending%3Ddrinks) [sweets](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dsweets) [food](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dfood) [cigarettes](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcigarettes) [condoms](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcondoms) [coffee](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcoffee) [water](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dwater) [newspapers](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dnewspapers) [bicycle_tube](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_tube) [milk](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dmilk) [bread](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbread) [eggs](https://wiki.openstreetmap.org/wiki/Tag:vending%3Deggs) [cheese](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcheese) [honey](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dhoney) [potatoes](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dpotatoes) [meat](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dmeat) [fruit](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dfruit) [strawberries](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dstrawberries) [flowers](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dflowers) [parking_tickets](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dparking_tickets) [elongated_coin](https://wiki.openstreetmap.org/wiki/Tag:vending%3Delongated_coin) [public_transport_tickets](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dpublic_transport_tickets) [bicycle_light](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_light) [gloves](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dgloves) [bicycle_repair_kit](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_repair_kit) [bicycle_pump](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_pump) [bicycle_lock](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_lock) -[](https://taginfo.openstreetmap.org/keys/brand#values) [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [string](../SpecialInputElements.md#string) | [Continental](https://wiki.openstreetmap.org/wiki/Tag:brand%3DContinental) [Schwalbe](https://wiki.openstreetmap.org/wiki/Tag:brand%3DSchwalbe) -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) -[](https://taginfo.openstreetmap.org/keys/payment:coins:denominations#values) [payment:coins:denominations](https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations) | Multiple choice | [0.01 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.01 EUR) [0.02 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.02 EUR) [0.05 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 EUR) [0.10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 EUR) [0.20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 EUR) [0.50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 EUR) [1 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 EUR) [2 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 EUR) [0.05 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 CHF) [0.10 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 CHF) [0.20 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 CHF) [0.50 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 CHF) [1 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 CHF) [2 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 CHF) [5 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D5 CHF) -[](https://taginfo.openstreetmap.org/keys/payment:notes:denominations#values) [payment:notes:denominations](https://wiki.openstreetmap.org/wiki/Key:payment:notes:denominations) | Multiple choice | [5 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D5 EUR) [10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D10 EUR) [20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D20 EUR) [50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D50 EUR) [100 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D100 EUR) [200 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D200 EUR) [500 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D500 EUR) [10 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D10 CHF) [20 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D20 CHF) [50 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D50 CHF) [100 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D100 CHF) [200 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D200 CHF) [1000 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D1000 CHF) -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/indoor#values) [indoor](https://wiki.openstreetmap.org/wiki/Key:indoor) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno) -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [currency](../SpecialInputElements.md#currency) | -[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [currency](../SpecialInputElements.md#currency) | -[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [currency](../SpecialInputElements.md#currency) | -[](https://taginfo.openstreetmap.org/keys/operational_status#values) [operational_status](https://wiki.openstreetmap.org/wiki/Key:operational_status) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3D) [broken](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dbroken) [closed](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dclosed) ### just_created @@ -471,51 +444,51 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| open_now.0 | Open now | _isOpen=yes | -id | question | osmTags ----- | ---------- | --------- -open_now.0 | Open now | _isOpen=yes + +| id | question | osmTags | +-----|-----|----- | +| vending.0 | *All vending machines* (default) | | +| vending.1 | Sale of drinks | vending~^(.*drinks.*)$ | +| vending.2 | Sale of sweets | vending~^(.*sweets.*)$ | +| vending.3 | Sale of food | vending~^(.*food.*)$ | +| vending.4 | Sale of cigarettes | vending~^(.*cigarettes.*)$ | +| vending.5 | Sale of condoms | vending~^(.*condoms.*)$ | +| vending.6 | Sale of coffee | vending~^(.*coffee.*)$ | +| vending.7 | Sale of water | vending~^(.*water.*)$ | +| vending.8 | Sale of newspapers | vending~^(.*newspapers.*)$ | +| vending.9 | Sale of bicycle inner tubes | vending~^(.*bicycle_tube.*)$ | +| vending.10 | Sale of milk | vending~^(.*milk.*)$ | +| vending.11 | Sale of bread | vending~^(.*bread.*)$ | +| vending.12 | Sale of eggs | vending~^(.*eggs.*)$ | +| vending.13 | Sale of cheese | vending~^(.*cheese.*)$ | +| vending.14 | Sale of honey | vending~^(.*honey.*)$ | +| vending.15 | Sale of potatoes | vending~^(.*potatoes.*)$ | +| vending.16 | Sale of meat | vending~^(.*meat.*)$ | +| vending.17 | Sale of fruit | vending~^(.*fruit.*)$ | +| vending.18 | Sale of strawberries | vending~^(.*strawberries.*)$ | +| vending.19 | Sale of flowers | vending~^(.*flowers.*)$ | +| vending.20 | Sale of parking tickets | vending~^(.*parking_tickets.*)$ | +| vending.21 | Sale of pressed pennies | vending=elongated_coin | +| vending.22 | Sale of public transport tickets | vending~^(.*public_transport_tickets.*)$ | +| vending.23 | Sale of bicycle lights | vending=bicycle_light | +| vending.24 | Sale of gloves | vending=gloves | +| vending.25 | Sale of bicycle repair kits | vending=bicycle_repair_kit | +| vending.26 | Sale of bicycle pumps | vending=bicycle_pump | +| vending.27 | Sale of bicycle locks | vending=bicycle_lock | -id | question | osmTags ----- | ---------- | --------- -vending.0 | All vending machines (default) | -vending.1 | Sale of drinks | vending~^(.*drinks.*)$ -vending.2 | Sale of sweets | vending~^(.*sweets.*)$ -vending.3 | Sale of food | vending~^(.*food.*)$ -vending.4 | Sale of cigarettes | vending~^(.*cigarettes.*)$ -vending.5 | Sale of condoms | vending~^(.*condoms.*)$ -vending.6 | Sale of coffee | vending~^(.*coffee.*)$ -vending.7 | Sale of water | vending~^(.*water.*)$ -vending.8 | Sale of newspapers | vending~^(.*newspapers.*)$ -vending.9 | Sale of bicycle inner tubes | vending~^(.*bicycle_tube.*)$ -vending.10 | Sale of milk | vending~^(.*milk.*)$ -vending.11 | Sale of bread | vending~^(.*bread.*)$ -vending.12 | Sale of eggs | vending~^(.*eggs.*)$ -vending.13 | Sale of cheese | vending~^(.*cheese.*)$ -vending.14 | Sale of honey | vending~^(.*honey.*)$ -vending.15 | Sale of potatoes | vending~^(.*potatoes.*)$ -vending.16 | Sale of meat | vending~^(.*meat.*)$ -vending.17 | Sale of fruit | vending~^(.*fruit.*)$ -vending.18 | Sale of strawberries | vending~^(.*strawberries.*)$ -vending.19 | Sale of flowers | vending~^(.*flowers.*)$ -vending.20 | Sale of parking tickets | vending~^(.*parking_tickets.*)$ -vending.21 | Sale of pressed pennies | vending=elongated_coin -vending.22 | Sale of public transport tickets | vending~^(.*public_transport_tickets.*)$ -vending.23 | Sale of bicycle lights | vending=bicycle_light -vending.24 | Sale of gloves | vending=gloves -vending.25 | Sale of bicycle repair kits | vending=bicycle_repair_kit -vending.26 | Sale of bicycle pumps | vending=bicycle_pump -vending.27 | Sale of bicycle locks | vending=bicycle_lock - - This document is autogenerated from [assets/themes/cyclofix/cyclofix.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/cyclofix/cyclofix.json) diff --git a/Docs/Layers/veterinary.md b/Docs/Layers/veterinary.md index 2455cbc7d89..8a103ef4a29 100644 --- a/Docs/Layers/veterinary.md +++ b/Docs/Layers/veterinary.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# veterinary - veterinary -============ - - - - +[object Object] A layer showing veterinarians - - - - This layer is shown at zoomlevel **10** and higher - - - + - This layer is shown at zoomlevel **10** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [website](#website) @@ -41,48 +32,30 @@ A layer showing veterinarians - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [personal](https://mapcomplete.org/personal) - - [pets](https://mapcomplete.org/pets) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [personal](https://mapcomplete.org/personal) + - [pets](https://mapcomplete.org/pets) +## Basic tags for this layer Elements must match the expression **amenity=veterinary** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22veterinary%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [url](../SpecialInputElements.md#url) | | +| ] [object Object] | [phone](../SpecialInputElements.md#phone) | | +| ] [object Object] | [opening_hours](../SpecialInputElements.md#opening_hours) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | -[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | -[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | -[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | ### just_created @@ -223,6 +196,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/veterinary/veterinary.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/veterinary/veterinary.json) diff --git a/Docs/Layers/viewpoint.md b/Docs/Layers/viewpoint.md index 23791dbebaa..b5ec29d69b1 100644 --- a/Docs/Layers/viewpoint.md +++ b/Docs/Layers/viewpoint.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# viewpoint - viewpoint -=========== - - - - +[object Object] A nice viewpoint or nice view. Ideal to add an image if no other category fits - - - - This layer is shown at zoomlevel **14** and higher - - - + - This layer is shown at zoomlevel **14** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -39,46 +30,28 @@ A nice viewpoint or nice view. Ideal to add an image if no other category fits - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [buurtnatuur](https://mapcomplete.org/buurtnatuur) - - [personal](https://mapcomplete.org/personal) - - [ski](https://mapcomplete.org/ski) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [buurtnatuur](https://mapcomplete.org/buurtnatuur) + - [personal](https://mapcomplete.org/personal) + - [ski](https://mapcomplete.org/ski) +## Basic tags for this layer Elements must match the expression **tourism=viewpoint** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22tourism%22%3D%22viewpoint%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) | ### just_created @@ -193,6 +166,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/viewpoint/viewpoint.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/viewpoint/viewpoint.json) diff --git a/Docs/Layers/village_green.md b/Docs/Layers/village_green.md index 7bfd9a50038..3c75932598b 100644 --- a/Docs/Layers/village_green.md +++ b/Docs/Layers/village_green.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# village_green - village_green -=============== - - - - +[object Object] A layer showing village-green (which are communal green areas, but not quite parks) - - - - This layer is shown at zoomlevel **0** and higher - - - + - This layer is shown at zoomlevel **0** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -40,43 +31,25 @@ A layer showing village-green (which are communal green areas, but not quite par - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [speelplekken](https://mapcomplete.org/speelplekken) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [speelplekken](https://mapcomplete.org/speelplekken) +## Basic tags for this layer Elements must match the expression **landuse=village_green** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22landuse%22%3D%22village_green%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | ### just_created @@ -197,6 +170,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/village_green/village_green.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/village_green/village_green.json) diff --git a/Docs/Layers/visitor_information_centre.md b/Docs/Layers/visitor_information_centre.md index e78e225fb8e..429dae74e7c 100644 --- a/Docs/Layers/visitor_information_centre.md +++ b/Docs/Layers/visitor_information_centre.md @@ -1,31 +1,22 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# visitor_information_centre - visitor_information_centre -============================ - - - - +[object Object] A visitor center offers information about a specific attraction or place of interest where it is located. - - - - This layer is shown at zoomlevel **12** and higher - + - This layer is shown at zoomlevel **12** and higher No themes use this layer - - ## Table of contents -1. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -2. [ Supported attributes ](#-supported-attributes-) +1. [Basic tags for this layer](#basic-tags-for-this-layer) +2. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [leftover-questions](#leftover-questions) @@ -37,10 +28,7 @@ No themes use this layer - [last_edit](#last_edit) - [all-tags](#all-tags) - Basic tags for this layer ---------------------------- - - +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -49,22 +37,15 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22information%22%3D%22visitor_centre%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22information%22%3D%22office%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | ### just_created @@ -152,6 +133,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/visitor_information_centre/visitor_information_centre.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/visitor_information_centre/visitor_information_centre.json) diff --git a/Docs/Layers/walls_and_buildings.md b/Docs/Layers/walls_and_buildings.md index f6a72f9f25e..b6f8c679cc7 100644 --- a/Docs/Layers/walls_and_buildings.md +++ b/Docs/Layers/walls_and_buildings.md @@ -1,44 +1,35 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# walls_and_buildings - walls_and_buildings -===================== - - - - +[object Object] Special builtin layer providing all walls and buildings. This layer is useful in presets for objects which can be placed against walls (e.g. AEDs, postboxes, entrances, addresses, surveillance cameras, …). This layer is invisible by default and not toggleable by the user. - - - - This layer is shown at zoomlevel **18** and higher - - This layer is not visible by default and must be enabled in the filter by the user. - - This layer is not visible by default and the visibility cannot be toggled, effectively resulting in a fully hidden layer. This can be useful, e.g. to calculate some metatags. If you want to render this layer (e.g. for debugging), enable it by setting the URL-parameter layer-=true - - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` - - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` - - This layer will automatically load [entrance](./entrance.md) into the layout as it depends on it: a calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _entrance_properties) - - This layer is needed as dependency for layer [advertising](#advertising) - - This layer is needed as dependency for layer [artwork](#artwork) - - This layer is needed as dependency for layer [clock](#clock) - - This layer is needed as dependency for layer [defibrillator](#defibrillator) - - This layer is needed as dependency for layer [entrance](#entrance) - - This layer is needed as dependency for layer [surveillance_camera](#surveillance_camera) - - This layer is needed as dependency for layer [facadegardens](#facadegardens) - - This layer is needed as dependency for layer [ghostsigns](#ghostsigns) - - This layer is needed as dependency for layer [parking_spaces_disabled](#parking_spaces_disabled) - - - + - This layer is shown at zoomlevel **18** and higher + - This layer is not visible by default and must be enabled in the filter by the user. + - This layer is not visible by default and the visibility cannot be toggled, effectively resulting in a fully hidden layer. This can be useful, e.g. to calculate some metatags. If you want to render this layer (e.g. for debugging), enable it by setting the URL-parameter layer-=true + - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` + - This layer will automatically load [entrance](./entrance.md) into the layout as it depends on it: a calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _entrance_properties) + - This layer is needed as dependency for layer [advertising](#advertising) + - This layer is needed as dependency for layer [artwork](#artwork) + - This layer is needed as dependency for layer [clock](#clock) + - This layer is needed as dependency for layer [defibrillator](#defibrillator) + - This layer is needed as dependency for layer [entrance](#entrance) + - This layer is needed as dependency for layer [surveillance_camera](#surveillance_camera) + - This layer is needed as dependency for layer [facadegardens](#facadegardens) + - This layer is needed as dependency for layer [ghostsigns](#ghostsigns) + - This layer is needed as dependency for layer [parking_spaces_disabled](#parking_spaces_disabled) ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [entrance_info](#entrance_info) @@ -52,34 +43,23 @@ Special builtin layer providing all walls and buildings. This layer is useful in - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [advertising](https://mapcomplete.org/advertising) - - [aed](https://mapcomplete.org/aed) - - [artwork](https://mapcomplete.org/artwork) - - [clock](https://mapcomplete.org/clock) - - [facadegardens](https://mapcomplete.org/facadegardens) - - [ghostsigns](https://mapcomplete.org/ghostsigns) - - [indoors](https://mapcomplete.org/indoors) - - [memorials](https://mapcomplete.org/memorials) - - [onwheels](https://mapcomplete.org/onwheels) - - [personal](https://mapcomplete.org/personal) - - [stations](https://mapcomplete.org/stations) - - [surveillance](https://mapcomplete.org/surveillance) - - [walls_and_buildings](https://mapcomplete.org/walls_and_buildings) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [advertising](https://mapcomplete.org/advertising) + - [aed](https://mapcomplete.org/aed) + - [artwork](https://mapcomplete.org/artwork) + - [clock](https://mapcomplete.org/clock) + - [facadegardens](https://mapcomplete.org/facadegardens) + - [ghostsigns](https://mapcomplete.org/ghostsigns) + - [indoors](https://mapcomplete.org/indoors) + - [memorials](https://mapcomplete.org/memorials) + - [onwheels](https://mapcomplete.org/onwheels) + - [personal](https://mapcomplete.org/personal) + - [stations](https://mapcomplete.org/stations) + - [surveillance](https://mapcomplete.org/surveillance) + - [walls_and_buildings](https://mapcomplete.org/walls_and_buildings) +## Basic tags for this layer Elements must match **any** of the following expressions: @@ -88,22 +68,15 @@ Elements must match **any** of the following expressions: [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22barrier%22%3D%22wall%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22building%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | ### just_created @@ -208,6 +181,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/walls_and_buildings/walls_and_buildings.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/walls_and_buildings/walls_and_buildings.json) diff --git a/Docs/Layers/waste_basket.md b/Docs/Layers/waste_basket.md index 0bd0b63c6ef..aeea7f389e8 100644 --- a/Docs/Layers/waste_basket.md +++ b/Docs/Layers/waste_basket.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# waste_basket - waste_basket -============== - - - - +[object Object] This is a public waste basket, thrash can, where you can throw away your thrash. - - - - This layer is shown at zoomlevel **17** and higher - - - + - This layer is shown at zoomlevel **17** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -43,50 +34,32 @@ This is a public waste basket, thrash can, where you can throw away your thrash. - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [personal](https://mapcomplete.org/personal) - - [pets](https://mapcomplete.org/pets) - - [stations](https://mapcomplete.org/stations) - - [waste](https://mapcomplete.org/waste) - - [waste_assen](https://mapcomplete.org/waste_assen) - - [waste_basket](https://mapcomplete.org/waste_basket) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [personal](https://mapcomplete.org/personal) + - [pets](https://mapcomplete.org/pets) + - [stations](https://mapcomplete.org/stations) + - [waste](https://mapcomplete.org/waste) + - [waste_assen](https://mapcomplete.org/waste_assen) + - [waste_basket](https://mapcomplete.org/waste_basket) +## Basic tags for this layer Elements must match the expression **amenity=waste_basket** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22waste_basket%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/waste#values) [waste](https://wiki.openstreetmap.org/wiki/Key:waste) | Multiple choice | [trash](https://wiki.openstreetmap.org/wiki/Tag:waste%3Dtrash) [dog_excrement](https://wiki.openstreetmap.org/wiki/Tag:waste%3Ddog_excrement) [cigarettes](https://wiki.openstreetmap.org/wiki/Tag:waste%3Dcigarettes) [drugs](https://wiki.openstreetmap.org/wiki/Tag:waste%3Ddrugs) [sharps](https://wiki.openstreetmap.org/wiki/Tag:waste%3Dsharps) [plastic](https://wiki.openstreetmap.org/wiki/Tag:waste%3Dplastic) [pmd](https://wiki.openstreetmap.org/wiki/Tag:waste%3Dpmd) [paper](https://wiki.openstreetmap.org/wiki/Tag:waste%3Dpaper) -[](https://taginfo.openstreetmap.org/keys/vending#values) [vending](https://wiki.openstreetmap.org/wiki/Key:vending) | Multiple choice | [dog_excrement_bag](https://wiki.openstreetmap.org/wiki/Tag:vending%3Ddog_excrement_bag) [](https://wiki.openstreetmap.org/wiki/Tag:vending%3D) ### just_created @@ -237,32 +210,32 @@ _This tagrendering has no question and is thus read-only_ +#### Filters -#### Filters + +| id | question | osmTags | +-----|-----|----- | +| waste-type.0 | *All types* (default) | | +| waste-type.1 | Waste basket for cigarettes | waste~^(.*cigarettes.*)$ | +| waste-type.2 | Waste basket for drugs | waste~^(.*drugs.*)$ | +| waste-type.3 | Waste basket for dog excrement | waste~^(.*dog_excrement.*)$ | +| waste-type.4 | Waste basket for trash | waste~^(.*trash.*)$ | +| waste-type.5 | Waste basket for sharps | waste~^(.*sharps.*)$ | +| waste-type.6 | Waste basket for plastic | waste~^(.*plastic.*)$ | +| waste-type.7 | Waste basket for plastic packaging, metal packaging and drink cartons (PMD) | waste~^(.*pmd.*)$ | +| waste-type.8 | Waste basket for paper | waste~^(.*paper.*)$ | -id | question | osmTags ----- | ---------- | --------- -waste-type.0 | All types (default) | -waste-type.1 | Waste basket for cigarettes | waste~^(.*cigarettes.*)$ -waste-type.2 | Waste basket for drugs | waste~^(.*drugs.*)$ -waste-type.3 | Waste basket for dog excrement | waste~^(.*dog_excrement.*)$ -waste-type.4 | Waste basket for trash | waste~^(.*trash.*)$ -waste-type.5 | Waste basket for sharps | waste~^(.*sharps.*)$ -waste-type.6 | Waste basket for plastic | waste~^(.*plastic.*)$ -waste-type.7 | Waste basket for plastic packaging, metal packaging and drink cartons (PMD) | waste~^(.*pmd.*)$ -waste-type.8 | Waste basket for paper | waste~^(.*paper.*)$ + +| id | question | osmTags | +-----|-----|----- | +| waste-vending.0 | Waste basket with dispenser for (dog) excrement bags | vending=dog_excrement_bag | -id | question | osmTags ----- | ---------- | --------- -waste-vending.0 | Waste basket with dispenser for (dog) excrement bags | vending=dog_excrement_bag - - This document is autogenerated from [assets/layers/waste_basket/waste_basket.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/waste_basket/waste_basket.json) diff --git a/Docs/Layers/waste_disposal.md b/Docs/Layers/waste_disposal.md index d41c6ce8425..88fbf55677c 100644 --- a/Docs/Layers/waste_disposal.md +++ b/Docs/Layers/waste_disposal.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# waste_disposal - waste_disposal -================ - - - - +[object Object] Waste Disposal Bin, medium to large bin for disposal of (household) waste - - - - This layer is shown at zoomlevel **12** and higher - - - + - This layer is shown at zoomlevel **12** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [images](#images) @@ -44,48 +35,30 @@ Waste Disposal Bin, medium to large bin for disposal of (household) waste - [all-tags](#all-tags) + [Filters](#filters) - Themes using this layer -------------------------- - - - - - - - [personal](https://mapcomplete.org/personal) - - [waste](https://mapcomplete.org/waste) - - [waste_assen](https://mapcomplete.org/waste_assen) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [personal](https://mapcomplete.org/personal) + - [waste](https://mapcomplete.org/waste) + - [waste_assen](https://mapcomplete.org/waste_assen) +## Basic tags for this layer Elements must match the expression **amenity=waste_disposal** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22waste_disposal%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | Multiple choice | [object Object] [object Object] | +| ] [object Object] | [string](../SpecialInputElements.md#string) | [object Object] [object Object] [object Object] | +| ] [object Object] | Multiple choice | [object Object] [object Object] [object Object] | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/amenity#values) [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [waste_disposal](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dwaste_disposal) [recycling](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drecycling) -[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:access%3Dno) [residents](https://wiki.openstreetmap.org/wiki/Tag:access%3Dresidents) -[](https://taginfo.openstreetmap.org/keys/location#values) [location](https://wiki.openstreetmap.org/wiki/Key:location) | Multiple choice | [underground](https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground) [indoor](https://wiki.openstreetmap.org/wiki/Tag:location%3Dindoor) [](https://wiki.openstreetmap.org/wiki/Tag:location%3D) ### just_created @@ -239,17 +212,15 @@ _This tagrendering has no question and is thus read-only_ - - -#### Filters +#### Filters +| id | question | osmTags | +-----|-----|----- | +| public-access.0 | Only public access | access=yes | + -id | question | osmTags ----- | ---------- | --------- -public-access.0 | Only public access | access=yes - This document is autogenerated from [assets/layers/waste_disposal/waste_disposal.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/waste_disposal/waste_disposal.json) diff --git a/Docs/Layers/windturbine.md b/Docs/Layers/windturbine.md index 2463466ca21..d2aff0590cc 100644 --- a/Docs/Layers/windturbine.md +++ b/Docs/Layers/windturbine.md @@ -1,30 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) +# windturbine - windturbine -============= - - - - +[object Object] Modern windmills generating electricity - - - - This layer is shown at zoomlevel **10** and higher - - - + - This layer is shown at zoomlevel **10** and higher ## Table of contents -1. [ Themes using this layer ](#-themes-using-this-layer-) -2. [ Basic tags for this layer ](#-basic-tags-for-this-layer-) -3. [ Supported attributes ](#-supported-attributes-) +1. [Themes using this layer](#themes-using-this-layer) +2. [Basic tags for this layer](#basic-tags-for-this-layer) +3. [Supported attributes](#supported-attributes) - [just_created](#just_created) - [nothing_known](#nothing_known) - [turbine-output](#turbine-output) @@ -44,50 +35,32 @@ Modern windmills generating electricity - [last_edit](#last_edit) - [all-tags](#all-tags) - Themes using this layer -------------------------- - - - - - - - [openwindpowermap](https://mapcomplete.org/openwindpowermap) - - [personal](https://mapcomplete.org/personal) - - - - - Basic tags for this layer ---------------------------- +## Themes using this layer + - [openwindpowermap](https://mapcomplete.org/openwindpowermap) + - [personal](https://mapcomplete.org/personal) +## Basic tags for this layer Elements must match the expression **generator:source=wind** [Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22generator%3Asource%22%3D%22wind%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B) +## Supported attributes + +**Warning:**,this quick overview is incomplete, + +| attribute | type | values which are supported by this layer | +-----|-----|----- | +| ] [object Object] | Multiple choice | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | [string](../SpecialInputElements.md#string) | | +| ] [object Object] | [pfloat](../SpecialInputElements.md#pfloat) | | +| ] [object Object] | [float](../SpecialInputElements.md#float) | | +| ] [object Object] | [date](../SpecialInputElements.md#date) | | +| ] [object Object] | [text](../SpecialInputElements.md#text) | | - Supported attributes ----------------------- - - - -Warning: - -this quick overview is incomplete - - - -attribute | type | values which are supported by this layer ------------ | ------ | ------------------------------------------ -[](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice | -[](https://taginfo.openstreetmap.org/keys/generator:output:electricity#values) [generator:output:electricity](https://wiki.openstreetmap.org/wiki/Key:generator:output:electricity) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | -[](https://taginfo.openstreetmap.org/keys/height#values) [height](https://wiki.openstreetmap.org/wiki/Key:height) | [pfloat](../SpecialInputElements.md#pfloat) | -[](https://taginfo.openstreetmap.org/keys/rotor:diameter#values) [rotor:diameter](https://wiki.openstreetmap.org/wiki/Key:rotor:diameter) | [float](../SpecialInputElements.md#float) | -[](https://taginfo.openstreetmap.org/keys/start_date#values) [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) | [date](../SpecialInputElements.md#date) | -[](https://taginfo.openstreetmap.org/keys/fixme#values) [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme) | [text](../SpecialInputElements.md#text) | ### just_created @@ -252,6 +225,6 @@ _This tagrendering has no question and is thus read-only_ - + This document is autogenerated from [assets/layers/windturbine/windturbine.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/windturbine/windturbine.json) diff --git a/Docs/SpecialInputElements.md b/Docs/SpecialInputElements.md index 31419285d53..cab7b52a3b9 100644 --- a/Docs/SpecialInputElements.md +++ b/Docs/SpecialInputElements.md @@ -1,16 +1,7 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Available types for text fields -================================= - - - -The listed types here trigger a special input element. Use them in `tagrendering.freeform.type` of your tagrendering to activate them - - -### Table of contents +# Available types for text fields +The listed types here trigger a special input element. Use them in `tagrendering.freeform.type` of your tagrendering to activate them### Table of contents 1. [string](#string) 2. [text](#text) @@ -47,70 +38,25 @@ The listed types here trigger a special input element. Use them in `tagrendering 33. [Helper arguments](#helper-arguments) 34. [currency](#currency) -### string - - - +### string A simple piece of text - - - -### text - - - +### text A longer piece of text. Uses an textArea instead of a textField - - - -### date - - - +### date A date with date picker - - - -### nat - - - +### nat A whole, positive number or zero - - - -### int - - - +### int A whole number, either positive, negative or zero - - - -### distance - - - +### distance A geographical distance in meters (rounded at two points). Will give an extra minimap with a measurement tool. Arguments: [ zoomlevel, preferredBackgroundMapType (comma separated) ], e.g. `["21", "map,photo"] - - - -### direction - - - +### direction A geographical direction, in degrees. 0° is north, 90° is east, ... Will return a value between 0 (incl) and 360 (excl). ### Input helper This element has an input helper showing a map and 'viewport' indicating the direction. By default, this map is zoomed to zoomlevel 17, but this can be changed with the first argument - - - -### wikidata - - - +### wikidata A wikidata identifier, e.g. Q42. ### Helper arguments @@ -122,12 +68,15 @@ name | doc key | the value of this tag will initialize search (default: name). This can be a ';'-separated list in which case every key will be inspected. The non-null value will be used as search options | A JSON-object of type `{ removePrefixes: string[], removePostfixes: string[] }`. -subarg \| doc --------- \| ----- -removePrefixes \| remove these snippets of text from the start of the passed string to search. This is either a list OR a hash of languages to a list. The individual strings are interpreted as case ignoring regexes -removePostfixes \| remove these snippets of text from the end of the passed string to search. This is either a list OR a hash of languages to a list. The individual strings are interpreted as case ignoring regexes. -instanceOf \| A list of Q-identifier which indicates that the search results _must_ be an entity of this type, e.g. [`Q5`](https://www.wikidata.org/wiki/Q5) for humans -notInstanceof \| A list of Q-identifiers which indicates that the search results _must not_ be an entity of this type, e.g. [`Q79007`](https://www.wikidata.org/wiki/Q79007) to filter away all streets from the search results +\| subarg \| doc \| +-----\|----- \| +\| removePrefixes \| remove these snippets of text from the start of the passed string to search. This is either a list OR a hash of languages to a list. The individual strings are interpreted as case ignoring regexes \| +\| removePostfixes \| remove these snippets of text from the end of the passed string to search. This is either a list OR a hash of languages to a list. The individual strings are interpreted as case ignoring regexes. \| +\| instanceOf \| A list of Q-identifier which indicates that the search results _must_ be an entity of this type, e.g. [`Q5`](https://www.wikidata.org/wiki/Q5) for humans \| +\| notInstanceof \| A list of Q-identifiers which indicates that the search results _must not_ be an entity of this type, e.g. [`Q79007`](https://www.wikidata.org/wiki/Q79007) to filter away all streets from the search results \| +\| multiple \| If 'yes' or 'true', will allow to select multiple values at once \| + + @@ -175,61 +124,19 @@ Another example is to search for species and trees: } ``` - - - -### pnat - - - +### pnat A strict positive number - - - -### float - - - +### float A decimal number - - - -### pfloat - - - +### pfloat A positive decimal number or zero - - - -### email - - - +### email An email adress - - - -### url - - - +### url The validatedTextField will format URLs to always be valid and have a https://-header (even though the 'https'-part will be hidden from the user. Furthermore, some tracking parameters will be removed - - - -### phone - - - +### phone A phone number - - - -### opening_hours - - - +### opening_hours Has extra elements to easily input when a POI is opened. ### Helper arguments @@ -266,101 +173,29 @@ postfix \| Piece of text that will always be added to the end of the generated o ``` *Don't forget to pass the prefix and postfix in the rendering as well*: `{opening_hours_table(opening_hours,yes @ &LPARENS, &RPARENS )` - - - -### color - - - +### color Shows a color picker - - - -### image - - - +### image Same as the URL-parameter, except that it checks that the URL ends with `.jpg`, `.png` or some other typical image format - - - -### simple_tag - - - +### simple_tag A simple tag of the format `key=value` where `key` conforms to a normal key ` - - - -### tag - - - +### tag A simple tag of the format `key=value` OR a tagExpression - - - -### key - - - +### key Validates a key, mostly that no weird characters are used - - - -### translation - - - +### translation Makes sure the the string is of format `Record` - - - -### icon - - - +### icon Makes sure that a valid .svg-path is added - - - -### fediverse - - - +### fediverse Validates fediverse addresses and normalizes them into `@username@server`-format - - - -### id - - - +### id Checks for valid identifiers for layers, will automatically replace spaces and uppercase - - - -### slope - - - +### slope Validates that the slope is a valid number.The accompanying input element uses the gyroscope and the compass to determine the correct incline. The sign of the incline will be set automatically. The bearing of the way is compared to the bearing of the compass, as such, the device knows if it is measuring in the forward or backward direction. - - - -### velopark - - - +### velopark A special URL-validator that checks the domain name and rewrites to the correct velopark format. - - - -### nsi - - - +### nsi Gives a list of possible suggestions for a brand or operator tag. ### Helper arguments @@ -377,13 +212,8 @@ main \| The main tag to give suggestions for, e.g. `amenity=restaurant`. addExtraTags \| Extra tags to add to the suggestions, e.g. `nobrand=yes`. +### currency +Validates monetary amounts - -### currency - - - -Validates monetary amounts - This document is autogenerated from [src/UI/InputElement/Validators.ts](https://github.com/pietervdvn/MapComplete/blob/develop/src/UI/InputElement/Validators.ts) diff --git a/Docs/SpecialRenderings.md b/Docs/SpecialRenderings.md index 3be352923f5..a2ef8dc30cd 100644 --- a/Docs/SpecialRenderings.md +++ b/Docs/SpecialRenderings.md @@ -384,7 +384,7 @@ Creates a new map note on the given location. This options is placed in the 'las ### close_note -Button to close a note. A predifined text can be defined to close the note with. If the note is already closed, will show a small text. +Button to close a note. A predefined text can be defined to close the note with. If the note is already closed, will show a small text. @@ -1384,3 +1384,6 @@ A button to run many actions for many features at once. To effectively use this #### Example usage of auto_apply `{auto_apply(,,,,./assets/svg/robot.svg)}` + + +This document is autogenerated from [src/UI/SpecialVisualizations.ts](https://github.com/pietervdvn/MapComplete/blob/develop/src/UI/SpecialVisualizations.ts) diff --git a/Docs/Tags_format.md b/Docs/Tags_format.md index 7351e682ea6..d599b11863f 100644 --- a/Docs/Tags_format.md +++ b/Docs/Tags_format.md @@ -198,6 +198,6 @@ One can combine multiple tags by using `and` or `or`, e.g.: } } ``` - + This document is autogenerated from [src/Logic/Tags/TagUtils.ts](https://github.com/pietervdvn/MapComplete/blob/develop/src/Logic/Tags/TagUtils.ts) diff --git a/Docs/Themes/advertising.md b/Docs/Themes/advertising.md index 1dc0ec383bc..c1b913f5b0f 100644 --- a/Docs/Themes/advertising.md +++ b/Docs/Themes/advertising.md @@ -1,48 +1,33 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Advertising ( [advertising](https://mapcomplete.org/advertising) ) --------------------------------------------------------------------- - - - +## Advertising ( [advertising](https://mapcomplete.org/advertising) ) Have you ever wondered how many advertising there are in our streets and roads? With this map you could find and add information about all the advertising features that you can find on the street - This theme contains the following layers: - - - - - [advertising](../Layers/advertising.md) - - [shelter](../Layers/shelter.md) - - [walls_and_buildings](../Layers/walls_and_buildings.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [advertising](../Layers/advertising.md) + - [shelter](../Layers/shelter.md) + - [walls_and_buildings](../Layers/walls_and_buildings.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - ca + - es + - de + - cs + - fr + - nl + - zh_Hant + - eu + - pl + - it + - da - - - en - - ca - - es - - de - - cs - - fr - - nl - - zh_Hant - - eu - - pl - - it - - da - - This document is autogenerated from [assets/themes/advertising/advertising.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/advertising/advertising.json) diff --git a/Docs/Themes/aed.md b/Docs/Themes/aed.md index 05a38e314dc..0e125df3152 100644 --- a/Docs/Themes/aed.md +++ b/Docs/Themes/aed.md @@ -1,58 +1,43 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Defibrillators ( [aed](https://mapcomplete.org/aed) ) -------------------------------------------------------- - - - +## Defibrillators ( [aed](https://mapcomplete.org/aed) ) On this map, one can find and mark nearby defibrillators - This theme contains the following layers: - - - - - [defibrillator](../Layers/defibrillator.md) - - [walls_and_buildings](../Layers/walls_and_buildings.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [defibrillator](../Layers/defibrillator.md) + - [walls_and_buildings](../Layers/walls_and_buildings.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - ca + - es + - fr + - nl + - de + - hu + - id + - it + - ru + - ja + - zh_Hant + - nb_NO + - sv + - pl + - pt_BR + - sl + - zh_Hans + - fil + - da + - cs + - zgh + - eu - - - en - - ca - - es - - fr - - nl - - de - - hu - - id - - it - - ru - - ja - - zh_Hant - - nb_NO - - sv - - pl - - pt_BR - - sl - - zh_Hans - - fil - - da - - cs - - zgh - - eu - - This document is autogenerated from [assets/themes/aed/aed.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/aed/aed.json) diff --git a/Docs/Themes/artwork.md b/Docs/Themes/artwork.md index 3f23151436c..b2c8a03ad1e 100644 --- a/Docs/Themes/artwork.md +++ b/Docs/Themes/artwork.md @@ -1,57 +1,42 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Artwork ( [artwork](https://mapcomplete.org/artwork) ) --------------------------------------------------------- - - - +## Artwork ( [artwork](https://mapcomplete.org/artwork) ) An open map of statues, busts, graffitis and other artwork all over the world - This theme contains the following layers: - - - - - [artwork](../Layers/artwork.md) - - [walls_and_buildings](../Layers/walls_and_buildings.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [artwork](../Layers/artwork.md) + - [walls_and_buildings](../Layers/walls_and_buildings.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - fr + - de + - hu + - id + - it + - ru + - ja + - zh_Hant + - sv + - pl + - nb_NO + - ca + - zh_Hans + - fil + - da + - cs + - pa_PK + - zgh + - es + - eu - - - en - - nl - - fr - - de - - hu - - id - - it - - ru - - ja - - zh_Hant - - sv - - pl - - nb_NO - - ca - - zh_Hans - - fil - - da - - cs - - pa_PK - - zgh - - es - - eu - - This document is autogenerated from [assets/themes/artwork/artwork.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/artwork/artwork.json) diff --git a/Docs/Themes/atm.md b/Docs/Themes/atm.md index 9095c7b6f30..c5519d473c7 100644 --- a/Docs/Themes/atm.md +++ b/Docs/Themes/atm.md @@ -1,54 +1,39 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - ATM Machines ( [atm](https://mapcomplete.org/atm) ) ------------------------------------------------------ - - - +## ATM Machines ( [atm](https://mapcomplete.org/atm) ) This map shows ATMs to withdraw or deposit money - This theme contains the following layers: - - - - - [atm](../Layers/atm.md) - - [banks_with_atm](../Layers/banks_with_atm.md) - - [bank](../Layers/bank.md) - - [maproulette_challenge](../Layers/maproulette_challenge.md) - - [post_offices_with_atm](../Layers/post_offices_with_atm.md) - - [postoffices](../Layers/postoffices.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [atm](../Layers/atm.md) + - [banks_with_atm](../Layers/banks_with_atm.md) + - [bank](../Layers/bank.md) + - [maproulette_challenge](../Layers/maproulette_challenge.md) + - [post_offices_with_atm](../Layers/post_offices_with_atm.md) + - [postoffices](../Layers/postoffices.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - de + - fr + - nl + - ca + - es + - cs + - nb_NO + - zgh + - id + - zh_Hant + - eu + - it + - pl + - da - - - en - - de - - fr - - nl - - ca - - es - - cs - - nb_NO - - zgh - - id - - zh_Hant - - eu - - it - - pl - - da - - This document is autogenerated from [assets/themes/atm/atm.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/atm/atm.json) diff --git a/Docs/Themes/bag.md b/Docs/Themes/bag.md index 4b37d06bc99..97fcbd761b8 100644 --- a/Docs/Themes/bag.md +++ b/Docs/Themes/bag.md @@ -1,47 +1,32 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - BAG import helper ( [bag](https://mapcomplete.org/bag) ) ----------------------------------------------------------- - - - +## BAG import helper ( [bag](https://mapcomplete.org/bag) ) This theme helps with importing data from BAG - This theme contains the following layers: - - - - - [osm_buildings](../Layers/osm_buildings.md) - - [osm_adresses](../Layers/osm_adresses.md) - - [bag_pand](../Layers/bag_pand.md) - - [bag_verblijfsobject](../Layers/bag_verblijfsobject.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [osm_buildings](../Layers/osm_buildings.md) + - [osm_adresses](../Layers/osm_adresses.md) + - [bag_pand](../Layers/bag_pand.md) + - [bag_verblijfsobject](../Layers/bag_verblijfsobject.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - nl + - en + - de + - fr + - nb_NO + - ca + - es + - cs + - zh_Hant + - pl - - - nl - - en - - de - - fr - - nb_NO - - ca - - es - - cs - - zh_Hant - - pl - - This document is autogenerated from [assets/themes/bag/bag.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/bag/bag.json) diff --git a/Docs/Themes/benches.md b/Docs/Themes/benches.md index cfc6f24e385..6ef3d8c8474 100644 --- a/Docs/Themes/benches.md +++ b/Docs/Themes/benches.md @@ -1,57 +1,42 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Benches ( [benches](https://mapcomplete.org/benches) ) --------------------------------------------------------- - - - +## Benches ( [benches](https://mapcomplete.org/benches) ) This map shows all benches that are recorded in OpenStreetMap: Individual benches, and benches belonging to public transport stops or shelters. - This theme contains the following layers: - - - - - [picnic_table](../Layers/picnic_table.md) - - [bench](../Layers/bench.md) - - [bench_at_pt](../Layers/bench_at_pt.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [picnic_table](../Layers/picnic_table.md) + - [bench](../Layers/bench.md) + - [bench_at_pt](../Layers/bench_at_pt.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - de + - fr + - nl + - it + - ru + - ja + - zh_Hant + - nb_NO + - pt_BR + - id + - hu + - ca + - es + - zh_Hans + - da + - pa_PK + - cs + - eu + - pl + - pt - - - en - - de - - fr - - nl - - it - - ru - - ja - - zh_Hant - - nb_NO - - pt_BR - - id - - hu - - ca - - es - - zh_Hans - - da - - pa_PK - - cs - - eu - - pl - - pt - - This document is autogenerated from [assets/themes/benches/benches.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/benches/benches.json) diff --git a/Docs/Themes/bicycle_parkings.md b/Docs/Themes/bicycle_parkings.md index e8795bcf7ec..3c76604507e 100644 --- a/Docs/Themes/bicycle_parkings.md +++ b/Docs/Themes/bicycle_parkings.md @@ -1,40 +1,25 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Bicycle parkings ( [bicycle_parkings](https://mapcomplete.org/bicycle_parkings) ) ------------------------------------------------------------------------------------ - - - +## Bicycle parkings ( [bicycle_parkings](https://mapcomplete.org/bicycle_parkings) ) A map showing all types of bicycle parkings - This theme contains the following layers: - - - - - [bike_parking](../Layers/bike_parking.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [bike_parking](../Layers/bike_parking.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - de + - ca + - fr + - pl + - da - - - en - - de - - ca - - fr - - pl - - da - - This document is autogenerated from [assets/themes/bicycle_parkings/bicycle_parkings.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/bicycle_parkings/bicycle_parkings.json) diff --git a/Docs/Themes/bicycle_rental.md b/Docs/Themes/bicycle_rental.md index 5d71de09b4a..ac7577accfc 100644 --- a/Docs/Themes/bicycle_rental.md +++ b/Docs/Themes/bicycle_rental.md @@ -1,48 +1,33 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Bicycle rental ( [bicycle_rental](https://mapcomplete.org/bicycle_rental) ) ------------------------------------------------------------------------------ - - - +## Bicycle rental ( [bicycle_rental](https://mapcomplete.org/bicycle_rental) ) On this map, you'll find the many bicycle rental stations as they are known by OpenStreetMap - This theme contains the following layers: - - - - - [bicycle_rental](../Layers/bicycle_rental.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [bicycle_rental](../Layers/bicycle_rental.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - de + - id + - fr + - ca + - es + - nb_NO + - da + - pa_PK + - cs + - zh_Hant + - eu + - pl - - - en - - nl - - de - - id - - fr - - ca - - es - - nb_NO - - da - - pa_PK - - cs - - zh_Hant - - eu - - pl - - This document is autogenerated from [assets/themes/bicycle_rental/bicycle_rental.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/bicycle_rental/bicycle_rental.json) diff --git a/Docs/Themes/bicyclelib.md b/Docs/Themes/bicyclelib.md index b85a38f4109..9330faeb7a9 100644 --- a/Docs/Themes/bicyclelib.md +++ b/Docs/Themes/bicyclelib.md @@ -1,54 +1,39 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Bicycle libraries ( [bicyclelib](https://mapcomplete.org/bicyclelib) ) ------------------------------------------------------------------------- - - - +## Bicycle libraries ( [bicyclelib](https://mapcomplete.org/bicyclelib) ) A bicycle library is a place where bicycles can be lent, often for a small yearly fee. A notable use case are bicycle libraries for kids, which allows them to change for a bigger bike when they've outgrown their current bike - This theme contains the following layers: - - - - - [bicycle_library](../Layers/bicycle_library.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [bicycle_library](../Layers/bicycle_library.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - it + - ru + - ja + - fr + - zh_Hant + - nb_NO + - de + - pt_BR + - pl + - hu + - id + - ca + - da + - pa_PK + - cs + - es + - eu + - pt - - - en - - nl - - it - - ru - - ja - - fr - - zh_Hant - - nb_NO - - de - - pt_BR - - pl - - hu - - id - - ca - - da - - pa_PK - - cs - - es - - eu - - pt - - This document is autogenerated from [assets/themes/bicyclelib/bicyclelib.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/bicyclelib/bicyclelib.json) diff --git a/Docs/Themes/binoculars.md b/Docs/Themes/binoculars.md index 85aec151497..e6b0a4854bf 100644 --- a/Docs/Themes/binoculars.md +++ b/Docs/Themes/binoculars.md @@ -1,49 +1,34 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Binoculars ( [binoculars](https://mapcomplete.org/binoculars) ) ------------------------------------------------------------------ - - - +## Binoculars ( [binoculars](https://mapcomplete.org/binoculars) ) A map with binoculars fixed in place with a pole. It can typically be found on touristic locations, viewpoints, on top of panoramic towers or occasionally on a nature reserve. - This theme contains the following layers: - - - - - [binocular](../Layers/binocular.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [binocular](../Layers/binocular.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - de + - it + - nb_NO + - zh_Hant + - hu + - fr + - es + - da + - ca + - pa_PK + - cs + - eu + - pl - - - en - - nl - - de - - it - - nb_NO - - zh_Hant - - hu - - fr - - es - - da - - ca - - pa_PK - - cs - - eu - - pl - - This document is autogenerated from [assets/themes/binoculars/binoculars.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/binoculars/binoculars.json) diff --git a/Docs/Themes/blind_osm.md b/Docs/Themes/blind_osm.md index 1308fffe532..da50aab8f16 100644 --- a/Docs/Themes/blind_osm.md +++ b/Docs/Themes/blind_osm.md @@ -1,52 +1,37 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - OSM for the blind ( [blind_osm](https://mapcomplete.org/blind_osm) ) ----------------------------------------------------------------------- - - - +## OSM for the blind ( [blind_osm](https://mapcomplete.org/blind_osm) ) Help to map features relevant for the blind - This theme contains the following layers: - - - - - [cycleways_and_roads](../Layers/cycleways_and_roads.md) - - [crossings](../Layers/crossings.md) - - [kerbs](../Layers/kerbs.md) - - [transit_stops](../Layers/transit_stops.md) - - [elevator](../Layers/elevator.md) - - [stairs](../Layers/stairs.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [cycleways_and_roads](../Layers/cycleways_and_roads.md) + - [crossings](../Layers/crossings.md) + - [kerbs](../Layers/kerbs.md) + - [transit_stops](../Layers/transit_stops.md) + - [elevator](../Layers/elevator.md) + - [stairs](../Layers/stairs.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - de + - nl + - fr + - nb_NO + - ca + - cs + - ru + - es + - eu + - it + - pl + - da - - - en - - de - - nl - - fr - - nb_NO - - ca - - cs - - ru - - es - - eu - - it - - pl - - da - - This document is autogenerated from [assets/themes/blind_osm/blind_osm.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/blind_osm/blind_osm.json) diff --git a/Docs/Themes/bookcases.md b/Docs/Themes/bookcases.md index dc449a78793..8d898f825a4 100644 --- a/Docs/Themes/bookcases.md +++ b/Docs/Themes/bookcases.md @@ -1,52 +1,37 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Public bookcases ( [bookcases](https://mapcomplete.org/bookcases) ) ---------------------------------------------------------------------- - - - +## Public bookcases ( [bookcases](https://mapcomplete.org/bookcases) ) A public bookcase is a small streetside cabinet, box, old phone booth or some other objects where books are stored. Everyone can place or take a book. This map aims to collect all these bookcases. - This theme contains the following layers: - - - - - [public_bookcase](../Layers/public_bookcase.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [public_bookcase](../Layers/public_bookcase.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - de + - fr + - ru + - ja + - zh_Hant + - it + - pt_BR + - nb_NO + - hu + - ca + - es + - pa_PK + - cs + - eu + - pl + - da - - - en - - nl - - de - - fr - - ru - - ja - - zh_Hant - - it - - pt_BR - - nb_NO - - hu - - ca - - es - - pa_PK - - cs - - eu - - pl - - da - - This document is autogenerated from [assets/themes/bookcases/bookcases.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/bookcases/bookcases.json) diff --git a/Docs/Themes/buurtnatuur.md b/Docs/Themes/buurtnatuur.md index d2c8f51499b..62598504f86 100644 --- a/Docs/Themes/buurtnatuur.md +++ b/Docs/Themes/buurtnatuur.md @@ -1,38 +1,23 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Breng jouw buurtnatuur in kaart ( [buurtnatuur](https://mapcomplete.org/buurtnatuur) ) ----------------------------------------------------------------------------------------- - - - +## Breng jouw buurtnatuur in kaart ( [buurtnatuur](https://mapcomplete.org/buurtnatuur) )
Natuur maakt gelukkig. Aan de hand van deze website willen we de natuur dicht bij ons beter inventariseren. Met als doel meer mensen te laten genieten van toegankelijke natuur én te strijden voor meer natuur in onze buurten.
  • In welke natuurgebieden kan jij terecht? Hoe toegankelijk zijn ze?
  • In welke bossen kan een gezin in jouw gemeente opnieuw op adem komen?
  • Op welke onbekende plekjes is het zalig spelen?

Samen kleuren we heel Vlaanderen en Brussel groen.Blijf op de hoogte van de resultaten van buurtnatuur.be: meld je aan voor e-mailupdates. - This theme contains the following layers: - - - - - [nature_reserve_buurtnatuur](../Layers/nature_reserve_buurtnatuur.md) - - [parks](../Layers/parks.md) - - [forest](../Layers/forest.md) - - [viewpoint](../Layers/viewpoint.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [nature_reserve_buurtnatuur](../Layers/nature_reserve_buurtnatuur.md) + - [parks](../Layers/parks.md) + - [forest](../Layers/forest.md) + - [viewpoint](../Layers/viewpoint.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - nl - - - nl - - This document is autogenerated from [assets/themes/buurtnatuur/buurtnatuur.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/buurtnatuur/buurtnatuur.json) diff --git a/Docs/Themes/cafes_and_pubs.md b/Docs/Themes/cafes_and_pubs.md index 915bc756e91..99e7e1bb725 100644 --- a/Docs/Themes/cafes_and_pubs.md +++ b/Docs/Themes/cafes_and_pubs.md @@ -1,53 +1,38 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Cafés and pubs ( [cafes_and_pubs](https://mapcomplete.org/cafes_and_pubs) ) ------------------------------------------------------------------------------ - - - +## Cafés and pubs ( [cafes_and_pubs](https://mapcomplete.org/cafes_and_pubs) ) Coffeehouses, pubs and bars - This theme contains the following layers: - - - - - [cafe_pub](../Layers/cafe_pub.md) - - [outdoor_seating](../Layers/outdoor_seating.md) - - [food_courts](../Layers/food_courts.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [cafe_pub](../Layers/cafe_pub.md) + - [outdoor_seating](../Layers/outdoor_seating.md) + - [food_courts](../Layers/food_courts.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - de + - it + - nb_NO + - id + - zh_Hant + - ru + - hu + - ca + - es + - fr + - da + - pa_PK + - cs + - eu + - pl - - - en - - nl - - de - - it - - nb_NO - - id - - zh_Hant - - ru - - hu - - ca - - es - - fr - - da - - pa_PK - - cs - - eu - - pl - - This document is autogenerated from [assets/themes/cafes_and_pubs/cafes_and_pubs.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/cafes_and_pubs/cafes_and_pubs.json) diff --git a/Docs/Themes/campersite.md b/Docs/Themes/campersite.md index 7821758f084..3d1b2d0f53a 100644 --- a/Docs/Themes/campersite.md +++ b/Docs/Themes/campersite.md @@ -1,52 +1,37 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Campersites ( [campersite](https://mapcomplete.org/campersite) ) ------------------------------------------------------------------- - - - +## Campersites ( [campersite](https://mapcomplete.org/campersite) ) This site collects all official camper stopover places and places where you can dump grey and black water. You can add details about the services provided and the cost. Add pictures and reviews. - This theme contains the following layers: - - - - - [caravansites](../Layers/caravansites.md) - - [dumpstations](../Layers/dumpstations.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [caravansites](../Layers/caravansites.md) + - [dumpstations](../Layers/dumpstations.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - it + - ru + - ja + - fr + - zh_Hant + - pt_BR + - de + - hu + - ca + - es + - da + - pa_PK + - cs + - eu + - pl - - - en - - nl - - it - - ru - - ja - - fr - - zh_Hant - - pt_BR - - de - - hu - - ca - - es - - da - - pa_PK - - cs - - eu - - pl - - This document is autogenerated from [assets/themes/campersite/campersite.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/campersite/campersite.json) diff --git a/Docs/Themes/charging_stations.md b/Docs/Themes/charging_stations.md index e3191c2f650..34b493a67f7 100644 --- a/Docs/Themes/charging_stations.md +++ b/Docs/Themes/charging_stations.md @@ -1,51 +1,36 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Charging stations ( [charging_stations](https://mapcomplete.org/charging_stations) ) --------------------------------------------------------------------------------------- - - - +## Charging stations ( [charging_stations](https://mapcomplete.org/charging_stations) ) On this open map, one can find and mark information about charging stations - This theme contains the following layers: - - - - - [charging_station](../Layers/charging_station.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [charging_station](../Layers/charging_station.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - id + - it + - ja + - zh_Hant + - nl + - de + - nb_NO + - ru + - hu + - ca + - fr + - es + - da + - pa_PK + - cs + - pl - - - en - - id - - it - - ja - - zh_Hant - - nl - - de - - nb_NO - - ru - - hu - - ca - - fr - - es - - da - - pa_PK - - cs - - pl - - This document is autogenerated from [assets/themes/charging_stations/charging_stations.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/charging_stations/charging_stations.json) diff --git a/Docs/Themes/climbing.md b/Docs/Themes/climbing.md index fde10cccaea..ed830e03d79 100644 --- a/Docs/Themes/climbing.md +++ b/Docs/Themes/climbing.md @@ -1,58 +1,43 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Climbing gyms, clubs and spots ( [climbing](https://mapcomplete.org/climbing) ) ---------------------------------------------------------------------------------- - - - +## Climbing gyms, clubs and spots ( [climbing](https://mapcomplete.org/climbing) ) On this map you will find various climbing opportunities such as climbing gyms, bouldering halls and rocks in nature. - This theme contains the following layers: - - - - - [climbing_club](../Layers/climbing_club.md) - - [climbing_gym](../Layers/climbing_gym.md) - - [climbing_route](../Layers/climbing_route.md) - - [climbing_area](../Layers/climbing_area.md) - - [climbing_opportunity](../Layers/climbing_opportunity.md) - - [shops_with_climbing_shoe_repair](../Layers/shops_with_climbing_shoe_repair.md) - - [shops](../Layers/shops.md) - - [toilet](../Layers/toilet.md) - - [drinking_water](../Layers/drinking_water.md) - - [guidepost](../Layers/guidepost.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [climbing_club](../Layers/climbing_club.md) + - [climbing_gym](../Layers/climbing_gym.md) + - [climbing_route](../Layers/climbing_route.md) + - [climbing_area](../Layers/climbing_area.md) + - [climbing_opportunity](../Layers/climbing_opportunity.md) + - [shops_with_climbing_shoe_repair](../Layers/shops_with_climbing_shoe_repair.md) + - [shops](../Layers/shops.md) + - [toilet](../Layers/toilet.md) + - [drinking_water](../Layers/drinking_water.md) + - [guidepost](../Layers/guidepost.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - de + - ru + - ja + - zh_Hant + - nb_NO + - it + - fr + - hu + - ca + - da + - cs + - es + - pl - - - en - - nl - - de - - ru - - ja - - zh_Hant - - nb_NO - - it - - fr - - hu - - ca - - da - - cs - - es - - pl - - This document is autogenerated from [assets/themes/climbing/climbing.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/climbing/climbing.json) diff --git a/Docs/Themes/clock.md b/Docs/Themes/clock.md index 0eb47c680b0..a9c8ec0077f 100644 --- a/Docs/Themes/clock.md +++ b/Docs/Themes/clock.md @@ -1,45 +1,30 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Clocks ( [clock](https://mapcomplete.org/clock) ) ---------------------------------------------------- - - - +## Clocks ( [clock](https://mapcomplete.org/clock) ) Map showing all public clocks - This theme contains the following layers: - - - - - [clock](../Layers/clock.md) - - [walls_and_buildings](../Layers/walls_and_buildings.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [clock](../Layers/clock.md) + - [walls_and_buildings](../Layers/walls_and_buildings.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - de + - es + - ca + - cs + - fr + - eu + - pl + - da - - - en - - nl - - de - - es - - ca - - cs - - fr - - eu - - pl - - da - - This document is autogenerated from [assets/themes/clock/clock.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/clock/clock.json) diff --git a/Docs/Themes/cycle_highways.md b/Docs/Themes/cycle_highways.md index 153bec77327..e809bf55ef4 100644 --- a/Docs/Themes/cycle_highways.md +++ b/Docs/Themes/cycle_highways.md @@ -1,47 +1,32 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Cycle highways ( [cycle_highways](https://mapcomplete.org/cycle_highways) ) ------------------------------------------------------------------------------ - - - +## Cycle highways ( [cycle_highways](https://mapcomplete.org/cycle_highways) ) This map shows cycle highways - This theme contains the following layers: - - - - - [cycle_highways](../Layers/cycle_highways.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [cycle_highways](../Layers/cycle_highways.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - de + - it + - ca + - fr + - nl + - es + - nb_NO + - da + - pa_PK + - cs + - pl + - zh_Hant - - - en - - de - - it - - ca - - fr - - nl - - es - - nb_NO - - da - - pa_PK - - cs - - pl - - zh_Hant - - This document is autogenerated from [assets/themes/cycle_highways/cycle_highways.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/cycle_highways/cycle_highways.json) diff --git a/Docs/Themes/cycle_infra.md b/Docs/Themes/cycle_infra.md index 7b6eb8c0d37..10a2d597bc8 100644 --- a/Docs/Themes/cycle_infra.md +++ b/Docs/Themes/cycle_infra.md @@ -1,51 +1,36 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Bicycle infrastructure ( [cycle_infra](https://mapcomplete.org/cycle_infra) ) -------------------------------------------------------------------------------- - - - +## Bicycle infrastructure ( [cycle_infra](https://mapcomplete.org/cycle_infra) ) A map where you can view and edit things related to the bicycle infrastructure. Made during #osoc21. - This theme contains the following layers: - - - - - [cycleways_and_roads](../Layers/cycleways_and_roads.md) - - [barrier](../Layers/barrier.md) - - [crossings](../Layers/crossings.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [cycleways_and_roads](../Layers/cycleways_and_roads.md) + - [barrier](../Layers/barrier.md) + - [crossings](../Layers/crossings.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - de + - it + - nb_NO + - ru + - zh_Hant + - hu + - ca + - es + - fr + - da + - pa_PK + - cs + - pl - - - en - - nl - - de - - it - - nb_NO - - ru - - zh_Hant - - hu - - ca - - es - - fr - - da - - pa_PK - - cs - - pl - - This document is autogenerated from [assets/themes/cycle_infra/cycle_infra.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/cycle_infra/cycle_infra.json) diff --git a/Docs/Themes/cyclenodes.md b/Docs/Themes/cyclenodes.md index 7c9c6f4a901..a23cb7c631f 100644 --- a/Docs/Themes/cyclenodes.md +++ b/Docs/Themes/cyclenodes.md @@ -1,47 +1,32 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Cycle Node Networks ( [cyclenodes](https://mapcomplete.org/cyclenodes) ) --------------------------------------------------------------------------- - - - +## Cycle Node Networks ( [cyclenodes](https://mapcomplete.org/cyclenodes) ) This map shows cycle node networks and allows you to add new nodes easily - This theme contains the following layers: - - - - - [node2node_bicycle](../Layers/node2node_bicycle.md) - - [node_bicycle](../Layers/node_bicycle.md) - - [bicycle_guidepost](../Layers/bicycle_guidepost.md) - - [route_marker](../Layers/route_marker.md) - - [cycleways_and_roads](../Layers/cycleways_and_roads.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [node2node_bicycle](../Layers/node2node_bicycle.md) + - [node_bicycle](../Layers/node_bicycle.md) + - [bicycle_guidepost](../Layers/bicycle_guidepost.md) + - [route_marker](../Layers/route_marker.md) + - [cycleways_and_roads](../Layers/cycleways_and_roads.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - de + - es + - nb_NO + - nl + - fr + - ca + - cs + - pl - - - en - - de - - es - - nb_NO - - nl - - fr - - ca - - cs - - pl - - This document is autogenerated from [assets/themes/cyclenodes/cyclenodes.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/cyclenodes/cyclenodes.json) diff --git a/Docs/Themes/cyclestreets.md b/Docs/Themes/cyclestreets.md index 55e0e480106..c2d993dd98f 100644 --- a/Docs/Themes/cyclestreets.md +++ b/Docs/Themes/cyclestreets.md @@ -1,52 +1,37 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Cyclestreets ( [cyclestreets](https://mapcomplete.org/cyclestreets) ) ------------------------------------------------------------------------ - - - +## Cyclestreets ( [cyclestreets](https://mapcomplete.org/cyclestreets) ) A cyclestreet is is a street where motorized traffic is not allowed to overtake cyclists. They are signposted by a special traffic sign. Cyclestreets can be found in the Netherlands and Belgium, but also in Germany and France. - This theme contains the following layers: - - - - - [fietsstraat](../Layers/fietsstraat.md) - - [toekomstige_fietsstraat](../Layers/toekomstige_fietsstraat.md) - - [not_cyclestreets](../Layers/not_cyclestreets.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [fietsstraat](../Layers/fietsstraat.md) + - [toekomstige_fietsstraat](../Layers/toekomstige_fietsstraat.md) + - [not_cyclestreets](../Layers/not_cyclestreets.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - ja + - zh_Hant + - de + - it + - nb_NO + - hu + - ca + - es + - fr + - da + - pa_PK + - cs + - eu + - pl - - - en - - nl - - ja - - zh_Hant - - de - - it - - nb_NO - - hu - - ca - - es - - fr - - da - - pa_PK - - cs - - eu - - pl - - This document is autogenerated from [assets/themes/cyclestreets/cyclestreets.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/cyclestreets/cyclestreets.json) diff --git a/Docs/Themes/cyclofix.md b/Docs/Themes/cyclofix.md index 3520bd3e7ca..94c1d9d4870 100644 --- a/Docs/Themes/cyclofix.md +++ b/Docs/Themes/cyclofix.md @@ -1,63 +1,48 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Cyclofix - a map for cyclists ( [cyclofix](https://mapcomplete.org/cyclofix) ) --------------------------------------------------------------------------------- - - - +## Cyclofix - a map for cyclists ( [cyclofix](https://mapcomplete.org/cyclofix) ) The goal of this map is to present cyclists with an easy-to-use solution to find the appropriate infrastructure for their needs.

You can track your precise location (mobile only) and select layers that are relevant for you in the bottom left corner. You can also use this tool to add or edit pins (points of interest) to the map and provide more data by answering the questions.

All changes you make will automatically be saved in the global database of OpenStreetMap and can be freely re-used by others.

For more information about the cyclofix project, go to cyclofix.osm.be. - This theme contains the following layers: - - - - - [bike_cafe](../Layers/bike_cafe.md) - - [bike_shop](../Layers/bike_shop.md) - - [bike_repair_station](../Layers/bike_repair_station.md) - - [drinking_water](../Layers/drinking_water.md) - - [bike_themed_object](../Layers/bike_themed_object.md) - - [bike_cleaning](../Layers/bike_cleaning.md) - - [bicycle_rental_non_docking](../Layers/bicycle_rental_non_docking.md) - - [bicycle_rental](../Layers/bicycle_rental.md) - - [bicycle_library](../Layers/bicycle_library.md) - - [bike_parking](../Layers/bike_parking.md) - - [charging_station_ebikes](../Layers/charging_station_ebikes.md) - - [charging_station](../Layers/charging_station.md) - - [vending_machine_bicycle](../Layers/vending_machine_bicycle.md) - - [vending_machine](../Layers/vending_machine.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [bike_cafe](../Layers/bike_cafe.md) + - [bike_shop](../Layers/bike_shop.md) + - [bike_repair_station](../Layers/bike_repair_station.md) + - [drinking_water](../Layers/drinking_water.md) + - [bike_themed_object](../Layers/bike_themed_object.md) + - [bike_cleaning](../Layers/bike_cleaning.md) + - [bicycle_rental_non_docking](../Layers/bicycle_rental_non_docking.md) + - [bicycle_rental](../Layers/bicycle_rental.md) + - [bicycle_library](../Layers/bicycle_library.md) + - [bike_parking](../Layers/bike_parking.md) + - [charging_station_ebikes](../Layers/charging_station_ebikes.md) + - [charging_station](../Layers/charging_station.md) + - [vending_machine_bicycle](../Layers/vending_machine_bicycle.md) + - [vending_machine](../Layers/vending_machine.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - fr + - gl + - de + - ru + - ja + - zh_Hant + - it + - nb_NO + - hu + - es + - ca + - da + - cs + - pl - - - en - - nl - - fr - - gl - - de - - ru - - ja - - zh_Hant - - it - - nb_NO - - hu - - es - - ca - - da - - cs - - pl - - This document is autogenerated from [assets/themes/cyclofix/cyclofix.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/cyclofix/cyclofix.json) diff --git a/Docs/Themes/disaster_response.md b/Docs/Themes/disaster_response.md index ac06b9129c4..62bdbdd074e 100644 --- a/Docs/Themes/disaster_response.md +++ b/Docs/Themes/disaster_response.md @@ -1,42 +1,27 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Disaster response ( [disaster_response](https://mapcomplete.org/disaster_response) ) --------------------------------------------------------------------------------------- - - - +## Disaster response ( [disaster_response](https://mapcomplete.org/disaster_response) ) This map contains elements meant for disaster preparedness and response. - This theme contains the following layers: - - - - - [hospital](../Layers/hospital.md) - - [assembly_point](../Layers/assembly_point.md) - - [disaster_response](../Layers/disaster_response.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [hospital](../Layers/hospital.md) + - [assembly_point](../Layers/assembly_point.md) + - [disaster_response](../Layers/disaster_response.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - it + - de + - es + - ca + - da - - - en - - it - - de - - es - - ca - - da - - This document is autogenerated from [assets/themes/disaster_response/disaster_response.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/disaster_response/disaster_response.json) diff --git a/Docs/Themes/drinking_water.md b/Docs/Themes/drinking_water.md index b0f9faf1d54..61fad78bc72 100644 --- a/Docs/Themes/drinking_water.md +++ b/Docs/Themes/drinking_water.md @@ -1,50 +1,35 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Drinking Water ( [drinking_water](https://mapcomplete.org/drinking_water) ) ------------------------------------------------------------------------------ - - - +## Drinking Water ( [drinking_water](https://mapcomplete.org/drinking_water) ) On this map, publicly accessible drinking water spots are shown and can be easily added - This theme contains the following layers: - - - - - [drinking_water](../Layers/drinking_water.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [drinking_water](../Layers/drinking_water.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - fr + - ru + - ja + - zh_Hant + - it + - de + - nb_NO + - hu + - ca + - es + - da + - pa_PK + - cs + - pl - - - en - - nl - - fr - - ru - - ja - - zh_Hant - - it - - de - - nb_NO - - hu - - ca - - es - - da - - pa_PK - - cs - - pl - - This document is autogenerated from [assets/themes/drinking_water/drinking_water.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/drinking_water/drinking_water.json) diff --git a/Docs/Themes/education.md b/Docs/Themes/education.md index a73791dc914..ae3e6530896 100644 --- a/Docs/Themes/education.md +++ b/Docs/Themes/education.md @@ -1,49 +1,34 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Education ( [education](https://mapcomplete.org/education) ) --------------------------------------------------------------- - - - +## Education ( [education](https://mapcomplete.org/education) ) On this map, you'll find information about all types of schools and education and can easily add more information - This theme contains the following layers: - - - - - [tertiary_education](../Layers/tertiary_education.md) - - [school](../Layers/school.md) - - [kindergarten_childcare](../Layers/kindergarten_childcare.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [tertiary_education](../Layers/tertiary_education.md) + - [school](../Layers/school.md) + - [kindergarten_childcare](../Layers/kindergarten_childcare.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - de + - fr + - nb_NO + - ca + - da + - pa_PK + - cs + - es + - eu + - pl + - zh_Hant - - - en - - nl - - de - - fr - - nb_NO - - ca - - da - - pa_PK - - cs - - es - - eu - - pl - - zh_Hant - - This document is autogenerated from [assets/themes/education/education.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/education/education.json) diff --git a/Docs/Themes/elongated_coin.md b/Docs/Themes/elongated_coin.md index 0cb64eafb9b..c130ce85403 100644 --- a/Docs/Themes/elongated_coin.md +++ b/Docs/Themes/elongated_coin.md @@ -1,42 +1,27 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Penny Presses ( [elongated_coin](https://mapcomplete.org/elongated_coin) ) ----------------------------------------------------------------------------- - - - +## Penny Presses ( [elongated_coin](https://mapcomplete.org/elongated_coin) ) Find penny presses to create your own elongated coins. - This theme contains the following layers: - - - - - [elongated_coin](../Layers/elongated_coin.md) - - [souvenir_coin](../Layers/souvenir_coin.md) - - [souvenir_note](../Layers/souvenir_note.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [elongated_coin](../Layers/elongated_coin.md) + - [souvenir_coin](../Layers/souvenir_coin.md) + - [souvenir_note](../Layers/souvenir_note.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - de + - es + - ca + - cs + - pl - - - en - - de - - es - - ca - - cs - - pl - - This document is autogenerated from [assets/themes/elongated_coin/elongated_coin.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/elongated_coin/elongated_coin.json) diff --git a/Docs/Themes/etymology.md b/Docs/Themes/etymology.md index aea28cc6ca5..2d5828bf3bd 100644 --- a/Docs/Themes/etymology.md +++ b/Docs/Themes/etymology.md @@ -1,55 +1,40 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Etymology - what is a place named after? ( [etymology](https://mapcomplete.org/etymology) ) ---------------------------------------------------------------------------------------------- - - - +## Etymology - what is a place named after? ( [etymology](https://mapcomplete.org/etymology) ) On this map, you can see what an object is named after. The streets, buildings, ... come from OpenStreetMap which got linked with Wikidata. In the popup, you'll see the Wikipedia article (if it exists) or a wikidata box of what the object is named after. If the object itself has a wikipedia page, that'll be shown too.

You can help contribute too!Zoom in enough and all streets will show up. You can click one and a Wikidata-search box will popup. With a few clicks, you can add an etymology link. Note that you need a free OpenStreetMap account to do this. - This theme contains the following layers: - - - - - [etymology](../Layers/etymology.md) - - [streets_without_etymology](../Layers/streets_without_etymology.md) - - [parks_and_forests_without_etymology](../Layers/parks_and_forests_without_etymology.md) - - [education_institutions_without_etymology](../Layers/education_institutions_without_etymology.md) - - [cultural_places_without_etymology](../Layers/cultural_places_without_etymology.md) - - [toursistic_places_without_etymology](../Layers/toursistic_places_without_etymology.md) - - [health_and_social_places_without_etymology](../Layers/health_and_social_places_without_etymology.md) - - [sport_places_without_etymology](../Layers/sport_places_without_etymology.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [etymology](../Layers/etymology.md) + - [streets_without_etymology](../Layers/streets_without_etymology.md) + - [parks_and_forests_without_etymology](../Layers/parks_and_forests_without_etymology.md) + - [education_institutions_without_etymology](../Layers/education_institutions_without_etymology.md) + - [cultural_places_without_etymology](../Layers/cultural_places_without_etymology.md) + - [toursistic_places_without_etymology](../Layers/toursistic_places_without_etymology.md) + - [health_and_social_places_without_etymology](../Layers/health_and_social_places_without_etymology.md) + - [sport_places_without_etymology](../Layers/sport_places_without_etymology.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - de + - it + - ru + - zh_Hant + - hu + - fr + - ca + - da + - nb_NO + - cs + - es + - pl - - - en - - nl - - de - - it - - ru - - zh_Hant - - hu - - fr - - ca - - da - - nb_NO - - cs - - es - - pl - - This document is autogenerated from [assets/themes/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/etymology/etymology.json) diff --git a/Docs/Themes/facadegardens.md b/Docs/Themes/facadegardens.md index 69ce45f84b8..1c9e8a26369 100644 --- a/Docs/Themes/facadegardens.md +++ b/Docs/Themes/facadegardens.md @@ -1,48 +1,33 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Facade gardens ( [facadegardens](https://mapcomplete.org/facadegardens) ) ---------------------------------------------------------------------------- - - - +## Facade gardens ( [facadegardens](https://mapcomplete.org/facadegardens) ) Facade gardens, green facades and trees in the city not only bring peace and quiet, but also a more beautiful city, greater biodiversity, a cooling effect and better air quality.
Klimaan VZW and Mechelen Klimaatneutraal want to map existing and new facade gardens as an example for people who want to build their own garden or for city walkers who love nature.
More info about the project at klimaan.be. - This theme contains the following layers: - - - - - [facadegardens](../Layers/facadegardens.md) - - [walls_and_buildings](../Layers/walls_and_buildings.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [facadegardens](../Layers/facadegardens.md) + - [walls_and_buildings](../Layers/walls_and_buildings.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - ja + - zh_Hant + - it + - fr + - de + - hu + - ca + - es + - da + - cs + - pl - - - en - - nl - - ja - - zh_Hant - - it - - fr - - de - - hu - - ca - - es - - da - - cs - - pl - - This document is autogenerated from [assets/themes/facadegardens/facadegardens.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/facadegardens/facadegardens.json) diff --git a/Docs/Themes/food.md b/Docs/Themes/food.md index 6ec49d3139c..a5b8c16431d 100644 --- a/Docs/Themes/food.md +++ b/Docs/Themes/food.md @@ -1,51 +1,36 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Restaurants and fast food ( [food](https://mapcomplete.org/food) ) --------------------------------------------------------------------- - - - +## Restaurants and fast food ( [food](https://mapcomplete.org/food) ) Restaurants and fast food - This theme contains the following layers: - - - - - [food](../Layers/food.md) - - [ice_cream](../Layers/ice_cream.md) - - [outdoor_seating](../Layers/outdoor_seating.md) - - [food_courts](../Layers/food_courts.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [food](../Layers/food.md) + - [ice_cream](../Layers/ice_cream.md) + - [outdoor_seating](../Layers/outdoor_seating.md) + - [food_courts](../Layers/food_courts.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - de + - it + - nb_NO + - zh_Hant + - hu + - ca + - es + - fr + - da + - cs + - ru + - pl - - - en - - nl - - de - - it - - nb_NO - - zh_Hant - - hu - - ca - - es - - fr - - da - - cs - - ru - - pl - - This document is autogenerated from [assets/themes/food/food.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/food/food.json) diff --git a/Docs/Themes/fritures.md b/Docs/Themes/fritures.md index 7fac18860c9..d641238a5ac 100644 --- a/Docs/Themes/fritures.md +++ b/Docs/Themes/fritures.md @@ -1,45 +1,30 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Fries shops ( [fritures](https://mapcomplete.org/fritures) ) --------------------------------------------------------------- - - - +## Fries shops ( [fritures](https://mapcomplete.org/fritures) ) On this map, you'll find your favourite fries shop! - This theme contains the following layers: - - - - - [friture](../Layers/friture.md) - - [food](../Layers/food.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [friture](../Layers/friture.md) + - [food](../Layers/food.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - fr + - de + - ca + - da + - pa_PK + - cs + - es + - pl - - - en - - nl - - fr - - de - - ca - - da - - pa_PK - - cs - - es - - pl - - This document is autogenerated from [assets/themes/fritures/fritures.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/fritures/fritures.json) diff --git a/Docs/Themes/ghostbikes.md b/Docs/Themes/ghostbikes.md index f760af0b3fe..4ab34ea7167 100644 --- a/Docs/Themes/ghostbikes.md +++ b/Docs/Themes/ghostbikes.md @@ -1,55 +1,40 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Ghost bikes ( [ghostbikes](https://mapcomplete.org/ghostbikes) ) ------------------------------------------------------------------- - - - +## Ghost bikes ( [ghostbikes](https://mapcomplete.org/ghostbikes) ) A ghost bike is a memorial for a cyclist who died in a traffic accident, in the form of a white bicycle placed permanently near the accident location.

On this map, one can see all the ghost bikes which are known by OpenStreetMap. Is a ghost bike missing? Everyone can add or update information here - you only need to have a (free) OpenStreetMap account.

There exists an automated account on Mastodon which posts a monthly overview of ghost bikes worldwide

- This theme contains the following layers: - - - - - [ghost_bike](../Layers/ghost_bike.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [ghost_bike](../Layers/ghost_bike.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - de + - ja + - nb_NO + - zh_Hant + - fr + - eo + - es + - fi + - gl + - hu + - it + - pl + - pt_BR + - ru + - sv + - da + - ca + - cs + - pt - - - en - - nl - - de - - ja - - nb_NO - - zh_Hant - - fr - - eo - - es - - fi - - gl - - hu - - it - - pl - - pt_BR - - ru - - sv - - da - - ca - - cs - - pt - - This document is autogenerated from [assets/themes/ghostbikes/ghostbikes.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/ghostbikes/ghostbikes.json) diff --git a/Docs/Themes/ghostsigns.md b/Docs/Themes/ghostsigns.md index 5a83aabd181..f700b42ac7f 100644 --- a/Docs/Themes/ghostsigns.md +++ b/Docs/Themes/ghostsigns.md @@ -1,38 +1,23 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Ghost Signs ( [ghostsigns](https://mapcomplete.org/ghostsigns) ) ------------------------------------------------------------------- - - - +## Ghost Signs ( [ghostsigns](https://mapcomplete.org/ghostsigns) ) A map showing disused signs on buildings - This theme contains the following layers: - - - - - [ghostsigns](../Layers/ghostsigns.md) - - [advertising_wall_paintings](../Layers/advertising_wall_paintings.md) - - [walls_and_buildings](../Layers/walls_and_buildings.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [ghostsigns](../Layers/ghostsigns.md) + - [advertising_wall_paintings](../Layers/advertising_wall_paintings.md) + - [walls_and_buildings](../Layers/walls_and_buildings.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - de - - - en - - de - - This document is autogenerated from [assets/themes/ghostsigns/ghostsigns.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/ghostsigns/ghostsigns.json) diff --git a/Docs/Themes/grb.md b/Docs/Themes/grb.md index 61490a3e1f6..742105dee42 100644 --- a/Docs/Themes/grb.md +++ b/Docs/Themes/grb.md @@ -1,42 +1,27 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - GRB import helper ( [grb](https://mapcomplete.org/grb) ) ----------------------------------------------------------- - - - +## GRB import helper ( [grb](https://mapcomplete.org/grb) ) This theme is an attempt to help automating the GRB import. - This theme contains the following layers: - - - - - [osm_buildings_no_points](../Layers/osm_buildings_no_points.md) - - [grb](../Layers/grb.md) - - [service_ways](../Layers/service_ways.md) - - [generic_osm_object](../Layers/generic_osm_object.md) - - [address](../Layers/address.md) - - [crab_address](../Layers/crab_address.md) - - [current_view](../Layers/current_view.md) - - [named_streets](../Layers/named_streets.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [osm_buildings_no_points](../Layers/osm_buildings_no_points.md) + - [grb](../Layers/grb.md) + - [service_ways](../Layers/service_ways.md) + - [generic_osm_object](../Layers/generic_osm_object.md) + - [address](../Layers/address.md) + - [crab_address](../Layers/crab_address.md) + - [current_view](../Layers/current_view.md) + - [named_streets](../Layers/named_streets.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - nl - - - nl - - This document is autogenerated from [assets/themes/grb/grb.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/grb/grb.json) diff --git a/Docs/Themes/guideposts.md b/Docs/Themes/guideposts.md index 4648ba3f56b..68fbfaea657 100644 --- a/Docs/Themes/guideposts.md +++ b/Docs/Themes/guideposts.md @@ -1,42 +1,27 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Guideposts ( [guideposts](https://mapcomplete.org/guideposts) ) ------------------------------------------------------------------ - - - +## Guideposts ( [guideposts](https://mapcomplete.org/guideposts) ) Guideposts (also known as fingerposts or finger posts) are often found along official hiking, cycling, skiing or horseback riding routes to indicate the directions to different destinations. Additionally, they are often named after a region or place and show the altitude. The position of a signpost can be used by a hiker/biker/rider/skier as a confirmation of the current position, especially if they use a printed map without a GPS receiver. - This theme contains the following layers: - - - - - [guidepost](../Layers/guidepost.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [guidepost](../Layers/guidepost.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - cs + - de + - es + - pl + - ca - - - en - - cs - - de - - es - - pl - - ca - - This document is autogenerated from [assets/themes/guideposts/guideposts.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/guideposts/guideposts.json) diff --git a/Docs/Themes/hackerspaces.md b/Docs/Themes/hackerspaces.md index 8debb0bc414..d38d94b2320 100644 --- a/Docs/Themes/hackerspaces.md +++ b/Docs/Themes/hackerspaces.md @@ -1,49 +1,34 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Hackerspaces and makerspaces ( [hackerspaces](https://mapcomplete.org/hackerspaces) ) ---------------------------------------------------------------------------------------- - - - +## Hackerspaces and makerspaces ( [hackerspaces](https://mapcomplete.org/hackerspaces) ) On this map you can see hackerspaces, add a new hackerspace or update data directly - This theme contains the following layers: - - - - - [hackerspace](../Layers/hackerspace.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [hackerspace](../Layers/hackerspace.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - de + - it + - ru + - zh_Hant + - hu + - nl + - fr + - da + - ca + - pa_PK + - cs + - es + - eu + - pl - - - en - - de - - it - - ru - - zh_Hant - - hu - - nl - - fr - - da - - ca - - pa_PK - - cs - - es - - eu - - pl - - This document is autogenerated from [assets/themes/hackerspaces/hackerspaces.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/hackerspaces/hackerspaces.json) diff --git a/Docs/Themes/hailhydrant.md b/Docs/Themes/hailhydrant.md index 62482a57381..897efecd4d5 100644 --- a/Docs/Themes/hailhydrant.md +++ b/Docs/Themes/hailhydrant.md @@ -1,52 +1,37 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Hydrants, Extinguishers, Fire stations, and Ambulance stations ( [hailhydrant](https://mapcomplete.org/hailhydrant) ) ------------------------------------------------------------------------------------------------------------------------ - - - +## Hydrants, Extinguishers, Fire stations, and Ambulance stations ( [hailhydrant](https://mapcomplete.org/hailhydrant) ) On this map you can find and update hydrants, fire stations, ambulance stations, and extinguishers in your favorite neighborhoods. - This theme contains the following layers: - - - - - [hydrant](../Layers/hydrant.md) - - [extinguisher](../Layers/extinguisher.md) - - [fire_station](../Layers/fire_station.md) - - [ambulancestation](../Layers/ambulancestation.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [hydrant](../Layers/hydrant.md) + - [extinguisher](../Layers/extinguisher.md) + - [fire_station](../Layers/fire_station.md) + - [ambulancestation](../Layers/ambulancestation.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - ja + - zh_Hant + - ru + - fr + - it + - nb_NO + - de + - hu + - nl + - es + - ca + - da + - cs + - pl - - - en - - ja - - zh_Hant - - ru - - fr - - it - - nb_NO - - de - - hu - - nl - - es - - ca - - da - - cs - - pl - - This document is autogenerated from [assets/themes/hailhydrant/hailhydrant.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/hailhydrant/hailhydrant.json) diff --git a/Docs/Themes/healthcare.md b/Docs/Themes/healthcare.md index 67a611c5423..d4a6b11fa08 100644 --- a/Docs/Themes/healthcare.md +++ b/Docs/Themes/healthcare.md @@ -1,54 +1,39 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Healthcare ( [healthcare](https://mapcomplete.org/healthcare) ) ------------------------------------------------------------------ - - - +## Healthcare ( [healthcare](https://mapcomplete.org/healthcare) ) On this map, various healthcare related items are shown - This theme contains the following layers: - - - - - [doctors](../Layers/doctors.md) - - [physiotherapist](../Layers/physiotherapist.md) - - [dentist](../Layers/dentist.md) - - [hospital](../Layers/hospital.md) - - [pharmacy](../Layers/pharmacy.md) - - [medical_shops](../Layers/medical_shops.md) - - [shops](../Layers/shops.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [doctors](../Layers/doctors.md) + - [physiotherapist](../Layers/physiotherapist.md) + - [dentist](../Layers/dentist.md) + - [hospital](../Layers/hospital.md) + - [pharmacy](../Layers/pharmacy.md) + - [medical_shops](../Layers/medical_shops.md) + - [shops](../Layers/shops.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - ca + - de + - fr + - da + - nl + - pa_PK + - cs + - nb_NO + - ru + - es + - eu + - pl + - zh_Hant - - - en - - ca - - de - - fr - - da - - nl - - pa_PK - - cs - - nb_NO - - ru - - es - - eu - - pl - - zh_Hant - - This document is autogenerated from [assets/themes/healthcare/healthcare.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/healthcare/healthcare.json) diff --git a/Docs/Themes/hotels.md b/Docs/Themes/hotels.md index 1b499d2023f..ba5c7b8dee7 100644 --- a/Docs/Themes/hotels.md +++ b/Docs/Themes/hotels.md @@ -1,48 +1,33 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Hotels ( [hotels](https://mapcomplete.org/hotels) ) ------------------------------------------------------ - - - +## Hotels ( [hotels](https://mapcomplete.org/hotels) ) On this map, you'll find hotels in your area - This theme contains the following layers: - - - - - [hotel](../Layers/hotel.md) - - [love_hotel](../Layers/love_hotel.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [hotel](../Layers/hotel.md) + - [love_hotel](../Layers/love_hotel.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - de + - da + - nb_NO + - ca + - nl + - pa_PK + - fr + - cs + - es + - eu + - pl + - zh_Hant - - - en - - de - - da - - nb_NO - - ca - - nl - - pa_PK - - fr - - cs - - es - - eu - - pl - - zh_Hant - - This document is autogenerated from [assets/themes/hotels/hotels.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/hotels/hotels.json) diff --git a/Docs/Themes/icecream.md b/Docs/Themes/icecream.md index 01059c26716..7234df8208d 100644 --- a/Docs/Themes/icecream.md +++ b/Docs/Themes/icecream.md @@ -1,40 +1,25 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Icecream ( [icecream](https://mapcomplete.org/icecream) ) ------------------------------------------------------------ - - - +## Icecream ( [icecream](https://mapcomplete.org/icecream) ) A map showing ice cream parlors and ice cream vending machines - This theme contains the following layers: - - - - - [ice_cream](../Layers/ice_cream.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [ice_cream](../Layers/ice_cream.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - de + - cs + - ca + - es + - da - - - en - - de - - cs - - ca - - es - - da - - This document is autogenerated from [assets/themes/icecream/icecream.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/icecream/icecream.json) diff --git a/Docs/Themes/indoors.md b/Docs/Themes/indoors.md index b45d5251476..61d39944e99 100644 --- a/Docs/Themes/indoors.md +++ b/Docs/Themes/indoors.md @@ -1,51 +1,36 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Indoors ( [indoors](https://mapcomplete.org/indoors) ) --------------------------------------------------------- - - - +## Indoors ( [indoors](https://mapcomplete.org/indoors) ) On this map, publicly accessible indoor places are shown - This theme contains the following layers: - - - - - [indoors](../Layers/indoors.md) - - [walls_and_buildings](../Layers/walls_and_buildings.md) - - [pedestrian_path](../Layers/pedestrian_path.md) - - [elevator](../Layers/elevator.md) - - [entrance](../Layers/entrance.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [indoors](../Layers/indoors.md) + - [walls_and_buildings](../Layers/walls_and_buildings.md) + - [pedestrian_path](../Layers/pedestrian_path.md) + - [elevator](../Layers/elevator.md) + - [entrance](../Layers/entrance.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - de + - fr + - da + - nb_NO + - nl + - ca + - pa_PK + - cs + - es + - eu + - pl + - zh_Hant - - - en - - de - - fr - - da - - nb_NO - - nl - - ca - - pa_PK - - cs - - es - - eu - - pl - - zh_Hant - - This document is autogenerated from [assets/themes/indoors/indoors.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/indoors/indoors.json) diff --git a/Docs/Themes/items_with_image.md b/Docs/Themes/items_with_image.md index 6e450d6e825..059d080dd20 100644 --- a/Docs/Themes/items_with_image.md +++ b/Docs/Themes/items_with_image.md @@ -1,36 +1,21 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - All items with images ( [items_with_image](https://mapcomplete.org/items_with_image) ) ----------------------------------------------------------------------------------------- - - - +## All items with images ( [items_with_image](https://mapcomplete.org/items_with_image) ) A map showing all items on OSM which have an image. This theme is a very bad fit for MapComplete as someone is not able to directly add a picture. However, this theme is mostly here to include this all into the database, which'll allow this to quickly fetch images nearby for other features - This theme contains the following layers: - - - - - [item_with_image](../Layers/item_with_image.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [item_with_image](../Layers/item_with_image.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - de - - - en - - de - - This document is autogenerated from [assets/themes/items_with_image/items_with_image.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/items_with_image/items_with_image.json) diff --git a/Docs/Themes/kerbs_and_crossings.md b/Docs/Themes/kerbs_and_crossings.md index 4393b32cccc..e98b6f10f14 100644 --- a/Docs/Themes/kerbs_and_crossings.md +++ b/Docs/Themes/kerbs_and_crossings.md @@ -1,47 +1,32 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Kerbs and crossings ( [kerbs_and_crossings](https://mapcomplete.org/kerbs_and_crossings) ) --------------------------------------------------------------------------------------------- - - - +## Kerbs and crossings ( [kerbs_and_crossings](https://mapcomplete.org/kerbs_and_crossings) ) A map showing kerbs and crossings. - This theme contains the following layers: - - - - - [cycleways_and_roads](../Layers/cycleways_and_roads.md) - - [crossings_no_traffic_lights](../Layers/crossings_no_traffic_lights.md) - - [kerbs](../Layers/kerbs.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [cycleways_and_roads](../Layers/cycleways_and_roads.md) + - [crossings_no_traffic_lights](../Layers/crossings_no_traffic_lights.md) + - [kerbs](../Layers/kerbs.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - de + - fr + - da + - cs + - nb_NO + - ru + - es + - ca + - pl - - - en - - nl - - de - - fr - - da - - cs - - nb_NO - - ru - - es - - ca - - pl - - This document is autogenerated from [assets/themes/kerbs_and_crossings/kerbs_and_crossings.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/kerbs_and_crossings/kerbs_and_crossings.json) diff --git a/Docs/Themes/lighthouses.md b/Docs/Themes/lighthouses.md index 9b6eab1e672..40f30c238e9 100644 --- a/Docs/Themes/lighthouses.md +++ b/Docs/Themes/lighthouses.md @@ -1,37 +1,22 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Lighthouses ( [lighthouses](https://mapcomplete.org/lighthouses) ) --------------------------------------------------------------------- - - - +## Lighthouses ( [lighthouses](https://mapcomplete.org/lighthouses) ) Lighthouses are tall buildings with a light on top to guide marine traffic. - This theme contains the following layers: - - - - - [lighthouse](../Layers/lighthouse.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [lighthouse](../Layers/lighthouse.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - de + - da - - - en - - de - - da - - This document is autogenerated from [assets/themes/lighthouses/lighthouses.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/lighthouses/lighthouses.json) diff --git a/Docs/Themes/mapcomplete-changes.md b/Docs/Themes/mapcomplete-changes.md index c119429128c..8f43cdbc374 100644 --- a/Docs/Themes/mapcomplete-changes.md +++ b/Docs/Themes/mapcomplete-changes.md @@ -1,39 +1,24 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Changes made with MapComplete ( [mapcomplete-changes](https://mapcomplete.org/mapcomplete-changes) ) ------------------------------------------------------------------------------------------------------- - - - +## Changes made with MapComplete ( [mapcomplete-changes](https://mapcomplete.org/mapcomplete-changes) ) This maps shows all the changes made with MapComplete - This theme contains the following layers: - - - - - [mapcomplete-changes](../Layers/mapcomplete-changes.md) - - [current_view](../Layers/current_view.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [mapcomplete-changes](../Layers/mapcomplete-changes.md) + - [current_view](../Layers/current_view.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - da + - de + - fr - - - en - - da - - de - - fr - - This document is autogenerated from [assets/themes/mapcomplete-changes/mapcomplete-changes.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/mapcomplete-changes/mapcomplete-changes.json) diff --git a/Docs/Themes/maproulette.md b/Docs/Themes/maproulette.md index 99fe36130e3..d48a45749cc 100644 --- a/Docs/Themes/maproulette.md +++ b/Docs/Themes/maproulette.md @@ -1,45 +1,30 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - MapRoulette Tasks ( [maproulette](https://mapcomplete.org/maproulette) ) --------------------------------------------------------------------------- - - - +## MapRoulette Tasks ( [maproulette](https://mapcomplete.org/maproulette) ) Theme showing MapRoulette tasks, allowing you to search, filter and fix them. - This theme contains the following layers: - - - - - [maproulette](../Layers/maproulette.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [maproulette](../Layers/maproulette.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - de + - fr + - da + - ca + - pa_PK + - nl + - es + - cs + - zh_Hant + - pl - - - en - - de - - fr - - da - - ca - - pa_PK - - nl - - es - - cs - - zh_Hant - - pl - - This document is autogenerated from [assets/themes/maproulette/maproulette.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/maproulette/maproulette.json) diff --git a/Docs/Themes/maps.md b/Docs/Themes/maps.md index edaac45fa68..f1d5351ca3d 100644 --- a/Docs/Themes/maps.md +++ b/Docs/Themes/maps.md @@ -1,48 +1,33 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - A map of maps ( [maps](https://mapcomplete.org/maps) ) --------------------------------------------------------- - - - +## A map of maps ( [maps](https://mapcomplete.org/maps) ) On this map you can find all maps OpenStreetMap knows - typically a big map on an information board showing the area, city or region, e.g. a tourist map on the back of a billboard, a map of a nature reserve, a map of cycling networks in the region, ...)

If a map is missing, you can easily map this map on OpenStreetMap. - This theme contains the following layers: - - - - - [map](../Layers/map.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [map](../Layers/map.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - fr + - ja + - zh_Hant + - ru + - de + - eo + - it + - nb_NO + - ca + - es + - cs + - pl - - - en - - nl - - fr - - ja - - zh_Hant - - ru - - de - - eo - - it - - nb_NO - - ca - - es - - cs - - pl - - This document is autogenerated from [assets/themes/maps/maps.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/maps/maps.json) diff --git a/Docs/Themes/maxspeed.md b/Docs/Themes/maxspeed.md index 136771e0168..3198598e9b5 100644 --- a/Docs/Themes/maxspeed.md +++ b/Docs/Themes/maxspeed.md @@ -1,49 +1,34 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Maxspeed ( [maxspeed](https://mapcomplete.org/maxspeed) ) ------------------------------------------------------------ - - - +## Maxspeed ( [maxspeed](https://mapcomplete.org/maxspeed) ) This map shows the legally allowed maximum speed on every road. If a maxspeed is missing or wrong, you can correct it here. - This theme contains the following layers: - - - - - [maxspeed](../Layers/maxspeed.md) - - [speed_camera](../Layers/speed_camera.md) - - [speed_display](../Layers/speed_display.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [maxspeed](../Layers/maxspeed.md) + - [speed_camera](../Layers/speed_camera.md) + - [speed_display](../Layers/speed_display.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - es + - ca + - de + - fr + - da + - nl + - pa_PK + - cs + - ru + - zh_Hant + - eu + - pl - - - en - - es - - ca - - de - - fr - - da - - nl - - pa_PK - - cs - - ru - - zh_Hant - - eu - - pl - - This document is autogenerated from [assets/themes/maxspeed/maxspeed.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/maxspeed/maxspeed.json) diff --git a/Docs/Themes/memorials.md b/Docs/Themes/memorials.md index d42312110cb..31304aa8d51 100644 --- a/Docs/Themes/memorials.md +++ b/Docs/Themes/memorials.md @@ -1,44 +1,29 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Memorials ( [memorials](https://mapcomplete.org/memorials) ) --------------------------------------------------------------- - - - +## Memorials ( [memorials](https://mapcomplete.org/memorials) ) Memorials are physical objects permantently placed in the public space to remember a person or event. They can be a wide range of objects, such as statues, plaques, paintings, military objects (such as tanks), ... - This theme contains the following layers: - - - - - [ghost_bike](../Layers/ghost_bike.md) - - [memorial](../Layers/memorial.md) - - [grave](../Layers/grave.md) - - [bench](../Layers/bench.md) - - [artwork](../Layers/artwork.md) - - [walls_and_buildings](../Layers/walls_and_buildings.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [ghost_bike](../Layers/ghost_bike.md) + - [memorial](../Layers/memorial.md) + - [grave](../Layers/grave.md) + - [bench](../Layers/bench.md) + - [artwork](../Layers/artwork.md) + - [walls_and_buildings](../Layers/walls_and_buildings.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - de + - fr + - nl + - da - - - en - - de - - fr - - nl - - da - - This document is autogenerated from [assets/themes/memorials/memorials.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/memorials/memorials.json) diff --git a/Docs/Themes/nature.md b/Docs/Themes/nature.md index 32dc5e5136f..954db7ab6da 100644 --- a/Docs/Themes/nature.md +++ b/Docs/Themes/nature.md @@ -1,54 +1,39 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Into nature ( [nature](https://mapcomplete.org/nature) ) ----------------------------------------------------------- - - - +## Into nature ( [nature](https://mapcomplete.org/nature) ) On this map, one can find interesting information for tourists and nature lovers. - This theme contains the following layers: - - - - - [drinking_water](../Layers/drinking_water.md) - - [birdhide](../Layers/birdhide.md) - - [nature_reserve](../Layers/nature_reserve.md) - - [map](../Layers/map.md) - - [information_board](../Layers/information_board.md) - - [bench](../Layers/bench.md) - - [picnic_table](../Layers/picnic_table.md) - - [toilet](../Layers/toilet.md) - - [guidepost](../Layers/guidepost.md) - - [shelter](../Layers/shelter.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [drinking_water](../Layers/drinking_water.md) + - [birdhide](../Layers/birdhide.md) + - [nature_reserve](../Layers/nature_reserve.md) + - [map](../Layers/map.md) + - [information_board](../Layers/information_board.md) + - [bench](../Layers/bench.md) + - [picnic_table](../Layers/picnic_table.md) + - [toilet](../Layers/toilet.md) + - [guidepost](../Layers/guidepost.md) + - [shelter](../Layers/shelter.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - de + - ca + - fr + - da + - nb_NO + - cs + - es + - zh_Hant + - pl - - - en - - nl - - de - - ca - - fr - - da - - nb_NO - - cs - - es - - zh_Hant - - pl - - This document is autogenerated from [assets/themes/nature/nature.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/nature/nature.json) diff --git a/Docs/Themes/notes.md b/Docs/Themes/notes.md index be742d1286c..69389bf0866 100644 --- a/Docs/Themes/notes.md +++ b/Docs/Themes/notes.md @@ -1,47 +1,32 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Notes on OpenStreetMap ( [notes](https://mapcomplete.org/notes) ) -------------------------------------------------------------------- - - - +## Notes on OpenStreetMap ( [notes](https://mapcomplete.org/notes) ) A note is a pin on the map with some text to indicate something wrong.

Make sure to checkout the filter view to search for users and text. - This theme contains the following layers: - - - - - [note](../Layers/note.md) - - [fixme](../Layers/fixme.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [note](../Layers/note.md) + - [fixme](../Layers/fixme.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - hu + - nl + - de + - ca + - es + - nb_NO + - fr + - da + - cs + - zh_Hant + - pl - - - en - - hu - - nl - - de - - ca - - es - - nb_NO - - fr - - da - - cs - - zh_Hant - - pl - - This document is autogenerated from [assets/themes/notes/notes.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/notes/notes.json) diff --git a/Docs/Themes/observation_towers.md b/Docs/Themes/observation_towers.md index f82f7c441f1..c8fd794529f 100644 --- a/Docs/Themes/observation_towers.md +++ b/Docs/Themes/observation_towers.md @@ -1,48 +1,33 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Observation towers ( [observation_towers](https://mapcomplete.org/observation_towers) ) ------------------------------------------------------------------------------------------ - - - +## Observation towers ( [observation_towers](https://mapcomplete.org/observation_towers) ) Publicly accessible towers to enjoy the view - This theme contains the following layers: - - - - - [observation_tower](../Layers/observation_tower.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [observation_tower](../Layers/observation_tower.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - de + - it + - ru + - zh_Hant + - hu + - ca + - es + - fr + - nb_NO + - da + - cs + - pl - - - en - - nl - - de - - it - - ru - - zh_Hant - - hu - - ca - - es - - fr - - nb_NO - - da - - cs - - pl - - This document is autogenerated from [assets/themes/observation_towers/observation_towers.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/observation_towers/observation_towers.json) diff --git a/Docs/Themes/onwheels.md b/Docs/Themes/onwheels.md index a2068e6d105..3e63b3fa160 100644 --- a/Docs/Themes/onwheels.md +++ b/Docs/Themes/onwheels.md @@ -1,65 +1,50 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - OnWheels ( [onwheels](https://mapcomplete.org/onwheels) ) ------------------------------------------------------------ - - - +## OnWheels ( [onwheels](https://mapcomplete.org/onwheels) ) On this map, publicly weelchair accessible places are shown and can be easily added - This theme contains the following layers: - - - - - [indoors](../Layers/indoors.md) - - [pedestrian_path](../Layers/pedestrian_path.md) - - [cycleways_and_roads](../Layers/cycleways_and_roads.md) - - [cafe_pub](../Layers/cafe_pub.md) - - [entrance](../Layers/entrance.md) - - [food](../Layers/food.md) - - [kerbs](../Layers/kerbs.md) - - [parking](../Layers/parking.md) - - [parking_spaces_disabled](../Layers/parking_spaces_disabled.md) - - [shops](../Layers/shops.md) - - [toilet](../Layers/toilet.md) - - [pharmacy](../Layers/pharmacy.md) - - [doctors](../Layers/doctors.md) - - [hospital](../Layers/hospital.md) - - [reception_desk](../Layers/reception_desk.md) - - [walls_and_buildings](../Layers/walls_and_buildings.md) - - [elevator](../Layers/elevator.md) - - [hotel](../Layers/hotel.md) - - [governments](../Layers/governments.md) - - [current_view](../Layers/current_view.md) - - [maproulette_challenge](../Layers/maproulette_challenge.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [indoors](../Layers/indoors.md) + - [pedestrian_path](../Layers/pedestrian_path.md) + - [cycleways_and_roads](../Layers/cycleways_and_roads.md) + - [cafe_pub](../Layers/cafe_pub.md) + - [entrance](../Layers/entrance.md) + - [food](../Layers/food.md) + - [kerbs](../Layers/kerbs.md) + - [parking](../Layers/parking.md) + - [parking_spaces_disabled](../Layers/parking_spaces_disabled.md) + - [shops](../Layers/shops.md) + - [toilet](../Layers/toilet.md) + - [pharmacy](../Layers/pharmacy.md) + - [doctors](../Layers/doctors.md) + - [hospital](../Layers/hospital.md) + - [reception_desk](../Layers/reception_desk.md) + - [walls_and_buildings](../Layers/walls_and_buildings.md) + - [elevator](../Layers/elevator.md) + - [hotel](../Layers/hotel.md) + - [governments](../Layers/governments.md) + - [current_view](../Layers/current_view.md) + - [maproulette_challenge](../Layers/maproulette_challenge.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - de + - fr + - nl + - nb_NO + - ca + - pa_PK + - es + - cs + - eu + - pl - - - en - - de - - fr - - nl - - nb_NO - - ca - - pa_PK - - es - - cs - - eu - - pl - - This document is autogenerated from [assets/themes/onwheels/onwheels.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/onwheels/onwheels.json) diff --git a/Docs/Themes/openlovemap.md b/Docs/Themes/openlovemap.md index 90491d71ba4..d50f9c8cdd5 100644 --- a/Docs/Themes/openlovemap.md +++ b/Docs/Themes/openlovemap.md @@ -1,46 +1,31 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Open Love Map ( [openlovemap](https://mapcomplete.org/openlovemap) ) ----------------------------------------------------------------------- - - - +## Open Love Map ( [openlovemap](https://mapcomplete.org/openlovemap) )

Love in the palm of your hand

Open Love Map lists various adult entries, such as brothels, erotic stores and stripclubs. - This theme contains the following layers: - - - - - [brothel](../Layers/brothel.md) - - [stripclub](../Layers/stripclub.md) - - [erotic_shop](../Layers/erotic_shop.md) - - [shops](../Layers/shops.md) - - [condom_vending_machine](../Layers/condom_vending_machine.md) - - [vending_machine](../Layers/vending_machine.md) - - [erotic_cinema](../Layers/erotic_cinema.md) - - [cinema](../Layers/cinema.md) - - [love_hotel](../Layers/love_hotel.md) - - [hotel](../Layers/hotel.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [brothel](../Layers/brothel.md) + - [stripclub](../Layers/stripclub.md) + - [erotic_shop](../Layers/erotic_shop.md) + - [shops](../Layers/shops.md) + - [condom_vending_machine](../Layers/condom_vending_machine.md) + - [vending_machine](../Layers/vending_machine.md) + - [erotic_cinema](../Layers/erotic_cinema.md) + - [cinema](../Layers/cinema.md) + - [love_hotel](../Layers/love_hotel.md) + - [hotel](../Layers/hotel.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - de + - es - - - en - - de - - es - - This document is autogenerated from [assets/themes/openlovemap/openlovemap.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/openlovemap/openlovemap.json) diff --git a/Docs/Themes/openwindpowermap.md b/Docs/Themes/openwindpowermap.md index c85ce7e35f5..a89056ecf7a 100644 --- a/Docs/Themes/openwindpowermap.md +++ b/Docs/Themes/openwindpowermap.md @@ -1,50 +1,35 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Wind power generators ( [openwindpowermap](https://mapcomplete.org/openwindpowermap) ) ----------------------------------------------------------------------------------------- - - - +## Wind power generators ( [openwindpowermap](https://mapcomplete.org/openwindpowermap) ) A map for showing and editing wind turbines. - This theme contains the following layers: - - - - - [windturbine](../Layers/windturbine.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [windturbine](../Layers/windturbine.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - fr + - de + - it + - ru + - zh_Hant + - id + - hu + - nl + - ca + - nb_NO + - pa_PK + - es + - cs + - pl + - da - - - en - - fr - - de - - it - - ru - - zh_Hant - - id - - hu - - nl - - ca - - nb_NO - - pa_PK - - es - - cs - - pl - - da - - This document is autogenerated from [assets/themes/openwindpowermap/openwindpowermap.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/openwindpowermap/openwindpowermap.json) diff --git a/Docs/Themes/osm_community_index.md b/Docs/Themes/osm_community_index.md index 2d3a5b4a403..6d0712bd20c 100644 --- a/Docs/Themes/osm_community_index.md +++ b/Docs/Themes/osm_community_index.md @@ -1,42 +1,27 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - OSM Community Index ( [osm_community_index](https://mapcomplete.org/osm_community_index) ) --------------------------------------------------------------------------------------------- - - - +## OSM Community Index ( [osm_community_index](https://mapcomplete.org/osm_community_index) ) A list of resources for users of OpenStreetMap. 'Resources' can be links to forums, meetups, Slack groups, IRC channels, mailing lists, and so on. Anything that mappers, especially beginners, might find interesting or helpful. - This theme contains the following layers: - - - - - [osm_community_index](../Layers/osm_community_index.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [osm_community_index](../Layers/osm_community_index.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - de + - nl + - fr + - es + - ca + - cs + - pl - - - en - - de - - nl - - fr - - es - - ca - - cs - - pl - - This document is autogenerated from [assets/themes/osm_community_index/osm_community_index.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/osm_community_index/osm_community_index.json) diff --git a/Docs/Themes/parkings.md b/Docs/Themes/parkings.md index 1bf9f19e71f..99f342c344e 100644 --- a/Docs/Themes/parkings.md +++ b/Docs/Themes/parkings.md @@ -1,54 +1,39 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Parking ( [parkings](https://mapcomplete.org/parkings) ) ----------------------------------------------------------- - - - +## Parking ( [parkings](https://mapcomplete.org/parkings) ) This map shows different parking spots - This theme contains the following layers: - - - - - [parking](../Layers/parking.md) - - [parking_spaces](../Layers/parking_spaces.md) - - [parking_ticket_machine](../Layers/parking_ticket_machine.md) - - [charging_station](../Layers/charging_station.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [parking](../Layers/parking.md) + - [parking_spaces](../Layers/parking_spaces.md) + - [parking_ticket_machine](../Layers/parking_ticket_machine.md) + - [charging_station](../Layers/charging_station.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - de + - it + - nb_NO + - ru + - zh_Hant + - id + - hu + - fr + - es + - da + - pa_PK + - ca + - cs + - eu + - pl - - - en - - nl - - de - - it - - nb_NO - - ru - - zh_Hant - - id - - hu - - fr - - es - - da - - pa_PK - - ca - - cs - - eu - - pl - - This document is autogenerated from [assets/themes/parkings/parkings.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/parkings/parkings.json) diff --git a/Docs/Themes/personal.md b/Docs/Themes/personal.md index 44804a95393..2790d992e2b 100644 --- a/Docs/Themes/personal.md +++ b/Docs/Themes/personal.md @@ -1,168 +1,153 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Personal theme ( [personal](https://mapcomplete.org/personal) ) ------------------------------------------------------------------ - - - +## Personal theme ( [personal](https://mapcomplete.org/personal) ) Create a personal theme based on all the available layers of all themes. In order to show some data, open layer selection - This theme contains the following layers: - - - - - [advertising](../Layers/advertising.md) - - [aerialway](../Layers/aerialway.md) - - [ambulancestation](../Layers/ambulancestation.md) - - [animal_shelter](../Layers/animal_shelter.md) - - [artwork](../Layers/artwork.md) - - [assembly_point](../Layers/assembly_point.md) - - [atm](../Layers/atm.md) - - [bank](../Layers/bank.md) - - [barrier](../Layers/barrier.md) - - [bench](../Layers/bench.md) - - [bench_at_pt](../Layers/bench_at_pt.md) - - [bicycle_library](../Layers/bicycle_library.md) - - [bicycle_rental](../Layers/bicycle_rental.md) - - [bike_cafe](../Layers/bike_cafe.md) - - [bike_cleaning](../Layers/bike_cleaning.md) - - [bike_parking](../Layers/bike_parking.md) - - [bike_repair_station](../Layers/bike_repair_station.md) - - [bike_shop](../Layers/bike_shop.md) - - [bike_themed_object](../Layers/bike_themed_object.md) - - [binocular](../Layers/binocular.md) - - [birdhide](../Layers/birdhide.md) - - [cafe_pub](../Layers/cafe_pub.md) - - [charging_station](../Layers/charging_station.md) - - [climbing_area](../Layers/climbing_area.md) - - [climbing_club](../Layers/climbing_club.md) - - [climbing_gym](../Layers/climbing_gym.md) - - [climbing_opportunity](../Layers/climbing_opportunity.md) - - [climbing_route](../Layers/climbing_route.md) - - [clock](../Layers/clock.md) - - [crossings](../Layers/crossings.md) - - [current_view](../Layers/current_view.md) - - [cycleways_and_roads](../Layers/cycleways_and_roads.md) - - [defibrillator](../Layers/defibrillator.md) - - [dentist](../Layers/dentist.md) - - [disaster_response](../Layers/disaster_response.md) - - [doctors](../Layers/doctors.md) - - [dogpark](../Layers/dogpark.md) - - [drinking_water](../Layers/drinking_water.md) - - [elevator](../Layers/elevator.md) - - [elongated_coin](../Layers/elongated_coin.md) - - [entrance](../Layers/entrance.md) - - [etymology](../Layers/etymology.md) - - [extinguisher](../Layers/extinguisher.md) - - [fire_station](../Layers/fire_station.md) - - [fitness_centre](../Layers/fitness_centre.md) - - [fitness_station](../Layers/fitness_station.md) - - [fixme](../Layers/fixme.md) - - [food](../Layers/food.md) - - [food_courts](../Layers/food_courts.md) - - [ghost_bike](../Layers/ghost_bike.md) - - [governments](../Layers/governments.md) - - [grave](../Layers/grave.md) - - [guidepost](../Layers/guidepost.md) - - [hackerspace](../Layers/hackerspace.md) - - [hospital](../Layers/hospital.md) - - [hotel](../Layers/hotel.md) - - [hydrant](../Layers/hydrant.md) - - [ice_cream](../Layers/ice_cream.md) - - [indoors](../Layers/indoors.md) - - [information_board](../Layers/information_board.md) - - [kerbs](../Layers/kerbs.md) - - [kindergarten_childcare](../Layers/kindergarten_childcare.md) - - [lighthouse](../Layers/lighthouse.md) - - [love_hotel](../Layers/love_hotel.md) - - [map](../Layers/map.md) - - [maproulette_challenge](../Layers/maproulette_challenge.md) - - [maxspeed](../Layers/maxspeed.md) - - [memorial](../Layers/memorial.md) - - [mountain_rescue](../Layers/mountain_rescue.md) - - [nature_reserve](../Layers/nature_reserve.md) - - [note](../Layers/note.md) - - [observation_tower](../Layers/observation_tower.md) - - [osm_community_index](../Layers/osm_community_index.md) - - [outdoor_seating](../Layers/outdoor_seating.md) - - [parcel_lockers](../Layers/parcel_lockers.md) - - [parking](../Layers/parking.md) - - [parking_spaces](../Layers/parking_spaces.md) - - [parking_ticket_machine](../Layers/parking_ticket_machine.md) - - [pedestrian_path](../Layers/pedestrian_path.md) - - [pharmacy](../Layers/pharmacy.md) - - [physiotherapist](../Layers/physiotherapist.md) - - [picnic_table](../Layers/picnic_table.md) - - [playground](../Layers/playground.md) - - [playground_equipment](../Layers/playground_equipment.md) - - [postboxes](../Layers/postboxes.md) - - [postoffices](../Layers/postoffices.md) - - [public_bookcase](../Layers/public_bookcase.md) - - [rainbow_crossings](../Layers/rainbow_crossings.md) - - [reception_desk](../Layers/reception_desk.md) - - [recycling](../Layers/recycling.md) - - [school](../Layers/school.md) - - [shelter](../Layers/shelter.md) - - [shops](../Layers/shops.md) - - [shower](../Layers/shower.md) - - [ski_piste](../Layers/ski_piste.md) - - [souvenir_coin](../Layers/souvenir_coin.md) - - [souvenir_note](../Layers/souvenir_note.md) - - [speed_camera](../Layers/speed_camera.md) - - [speed_display](../Layers/speed_display.md) - - [sport_pitch](../Layers/sport_pitch.md) - - [sports_centre](../Layers/sports_centre.md) - - [stairs](../Layers/stairs.md) - - [street_lamps](../Layers/street_lamps.md) - - [surveillance_camera](../Layers/surveillance_camera.md) - - [tertiary_education](../Layers/tertiary_education.md) - - [ticket_machine](../Layers/ticket_machine.md) - - [toilet](../Layers/toilet.md) - - [toilet_at_amenity](../Layers/toilet_at_amenity.md) - - [transit_routes](../Layers/transit_routes.md) - - [transit_stops](../Layers/transit_stops.md) - - [tree_node](../Layers/tree_node.md) - - [trolley_bay](../Layers/trolley_bay.md) - - [vending_machine](../Layers/vending_machine.md) - - [veterinary](../Layers/veterinary.md) - - [viewpoint](../Layers/viewpoint.md) - - [walls_and_buildings](../Layers/walls_and_buildings.md) - - [waste_basket](../Layers/waste_basket.md) - - [waste_disposal](../Layers/waste_disposal.md) - - [windturbine](../Layers/windturbine.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [advertising](../Layers/advertising.md) + - [aerialway](../Layers/aerialway.md) + - [ambulancestation](../Layers/ambulancestation.md) + - [animal_shelter](../Layers/animal_shelter.md) + - [artwork](../Layers/artwork.md) + - [assembly_point](../Layers/assembly_point.md) + - [atm](../Layers/atm.md) + - [bank](../Layers/bank.md) + - [barrier](../Layers/barrier.md) + - [bench](../Layers/bench.md) + - [bench_at_pt](../Layers/bench_at_pt.md) + - [bicycle_library](../Layers/bicycle_library.md) + - [bicycle_rental](../Layers/bicycle_rental.md) + - [bike_cafe](../Layers/bike_cafe.md) + - [bike_cleaning](../Layers/bike_cleaning.md) + - [bike_parking](../Layers/bike_parking.md) + - [bike_repair_station](../Layers/bike_repair_station.md) + - [bike_shop](../Layers/bike_shop.md) + - [bike_themed_object](../Layers/bike_themed_object.md) + - [binocular](../Layers/binocular.md) + - [birdhide](../Layers/birdhide.md) + - [cafe_pub](../Layers/cafe_pub.md) + - [charging_station](../Layers/charging_station.md) + - [climbing_area](../Layers/climbing_area.md) + - [climbing_club](../Layers/climbing_club.md) + - [climbing_gym](../Layers/climbing_gym.md) + - [climbing_opportunity](../Layers/climbing_opportunity.md) + - [climbing_route](../Layers/climbing_route.md) + - [clock](../Layers/clock.md) + - [crossings](../Layers/crossings.md) + - [current_view](../Layers/current_view.md) + - [cycleways_and_roads](../Layers/cycleways_and_roads.md) + - [defibrillator](../Layers/defibrillator.md) + - [dentist](../Layers/dentist.md) + - [disaster_response](../Layers/disaster_response.md) + - [doctors](../Layers/doctors.md) + - [dogpark](../Layers/dogpark.md) + - [drinking_water](../Layers/drinking_water.md) + - [elevator](../Layers/elevator.md) + - [elongated_coin](../Layers/elongated_coin.md) + - [entrance](../Layers/entrance.md) + - [etymology](../Layers/etymology.md) + - [extinguisher](../Layers/extinguisher.md) + - [fire_station](../Layers/fire_station.md) + - [fitness_centre](../Layers/fitness_centre.md) + - [fitness_station](../Layers/fitness_station.md) + - [fixme](../Layers/fixme.md) + - [food](../Layers/food.md) + - [food_courts](../Layers/food_courts.md) + - [ghost_bike](../Layers/ghost_bike.md) + - [governments](../Layers/governments.md) + - [grave](../Layers/grave.md) + - [guidepost](../Layers/guidepost.md) + - [hackerspace](../Layers/hackerspace.md) + - [hospital](../Layers/hospital.md) + - [hotel](../Layers/hotel.md) + - [hydrant](../Layers/hydrant.md) + - [ice_cream](../Layers/ice_cream.md) + - [indoors](../Layers/indoors.md) + - [information_board](../Layers/information_board.md) + - [kerbs](../Layers/kerbs.md) + - [kindergarten_childcare](../Layers/kindergarten_childcare.md) + - [lighthouse](../Layers/lighthouse.md) + - [love_hotel](../Layers/love_hotel.md) + - [map](../Layers/map.md) + - [maproulette_challenge](../Layers/maproulette_challenge.md) + - [maxspeed](../Layers/maxspeed.md) + - [memorial](../Layers/memorial.md) + - [mountain_rescue](../Layers/mountain_rescue.md) + - [nature_reserve](../Layers/nature_reserve.md) + - [note](../Layers/note.md) + - [observation_tower](../Layers/observation_tower.md) + - [osm_community_index](../Layers/osm_community_index.md) + - [outdoor_seating](../Layers/outdoor_seating.md) + - [parcel_lockers](../Layers/parcel_lockers.md) + - [parking](../Layers/parking.md) + - [parking_spaces](../Layers/parking_spaces.md) + - [parking_ticket_machine](../Layers/parking_ticket_machine.md) + - [pedestrian_path](../Layers/pedestrian_path.md) + - [pharmacy](../Layers/pharmacy.md) + - [physiotherapist](../Layers/physiotherapist.md) + - [picnic_table](../Layers/picnic_table.md) + - [playground](../Layers/playground.md) + - [playground_equipment](../Layers/playground_equipment.md) + - [postboxes](../Layers/postboxes.md) + - [postoffices](../Layers/postoffices.md) + - [public_bookcase](../Layers/public_bookcase.md) + - [rainbow_crossings](../Layers/rainbow_crossings.md) + - [reception_desk](../Layers/reception_desk.md) + - [recycling](../Layers/recycling.md) + - [school](../Layers/school.md) + - [shelter](../Layers/shelter.md) + - [shops](../Layers/shops.md) + - [shower](../Layers/shower.md) + - [ski_piste](../Layers/ski_piste.md) + - [souvenir_coin](../Layers/souvenir_coin.md) + - [souvenir_note](../Layers/souvenir_note.md) + - [speed_camera](../Layers/speed_camera.md) + - [speed_display](../Layers/speed_display.md) + - [sport_pitch](../Layers/sport_pitch.md) + - [sports_centre](../Layers/sports_centre.md) + - [stairs](../Layers/stairs.md) + - [street_lamps](../Layers/street_lamps.md) + - [surveillance_camera](../Layers/surveillance_camera.md) + - [tertiary_education](../Layers/tertiary_education.md) + - [ticket_machine](../Layers/ticket_machine.md) + - [toilet](../Layers/toilet.md) + - [toilet_at_amenity](../Layers/toilet_at_amenity.md) + - [transit_routes](../Layers/transit_routes.md) + - [transit_stops](../Layers/transit_stops.md) + - [tree_node](../Layers/tree_node.md) + - [trolley_bay](../Layers/trolley_bay.md) + - [vending_machine](../Layers/vending_machine.md) + - [veterinary](../Layers/veterinary.md) + - [viewpoint](../Layers/viewpoint.md) + - [walls_and_buildings](../Layers/walls_and_buildings.md) + - [waste_basket](../Layers/waste_basket.md) + - [waste_disposal](../Layers/waste_disposal.md) + - [windturbine](../Layers/windturbine.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - es + - ca + - gl + - fr + - de + - ja + - zh_Hant + - it + - nb_NO + - id + - da + - pa_PK + - cs + - pl - - - en - - nl - - es - - ca - - gl - - fr - - de - - ja - - zh_Hant - - it - - nb_NO - - id - - da - - pa_PK - - cs - - pl - - This document is autogenerated from [assets/themes/personal/personal.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/personal/personal.json) diff --git a/Docs/Themes/pets.md b/Docs/Themes/pets.md index 7aabcd3a18a..e31e4ca8523 100644 --- a/Docs/Themes/pets.md +++ b/Docs/Themes/pets.md @@ -1,51 +1,36 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Veterinarians, dog parks and other pet-amenities ( [pets](https://mapcomplete.org/pets) ) -------------------------------------------------------------------------------------------- - - - +## Veterinarians, dog parks and other pet-amenities ( [pets](https://mapcomplete.org/pets) ) On this map, you'll find various interesting places for you pets: veterinarians, dog parks, pet shops, dog-friendly restaurants, ... - This theme contains the following layers: - - - - - [dogpark](../Layers/dogpark.md) - - [dogfoodb](../Layers/dogfoodb.md) - - [dogshop](../Layers/dogshop.md) - - [veterinary](../Layers/veterinary.md) - - [food](../Layers/food.md) - - [waste_basket](../Layers/waste_basket.md) - - [shops](../Layers/shops.md) - - [animal_shelter](../Layers/animal_shelter.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [dogpark](../Layers/dogpark.md) + - [dogfoodb](../Layers/dogfoodb.md) + - [dogshop](../Layers/dogshop.md) + - [veterinary](../Layers/veterinary.md) + - [food](../Layers/food.md) + - [waste_basket](../Layers/waste_basket.md) + - [shops](../Layers/shops.md) + - [animal_shelter](../Layers/animal_shelter.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - da + - de + - nl + - fr + - ca + - es + - cs + - zh_Hant + - pl - - - en - - da - - de - - nl - - fr - - ca - - es - - cs - - zh_Hant - - pl - - This document is autogenerated from [assets/themes/pets/pets.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/pets/pets.json) diff --git a/Docs/Themes/play_forests.md b/Docs/Themes/play_forests.md index 3354f92422f..b82feec07f0 100644 --- a/Docs/Themes/play_forests.md +++ b/Docs/Themes/play_forests.md @@ -1,35 +1,20 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Speelbossen ( [play_forests](https://mapcomplete.org/play_forests) ) ----------------------------------------------------------------------- - - - +## Speelbossen ( [play_forests](https://mapcomplete.org/play_forests) ) Een speelbos is een zone in een bos die vrij toegankelijk is voor spelende kinderen. Deze wordt in bossen van het Agentschap Natuur en bos altijd aangeduid met het overeenkomstige bord. - This theme contains the following layers: - - - - - [play_forest](../Layers/play_forest.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [play_forest](../Layers/play_forest.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - nl - - - nl - - This document is autogenerated from [assets/themes/play_forests/play_forests.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/play_forests/play_forests.json) diff --git a/Docs/Themes/playgrounds.md b/Docs/Themes/playgrounds.md index 4059dc25fa9..5b93110d4e1 100644 --- a/Docs/Themes/playgrounds.md +++ b/Docs/Themes/playgrounds.md @@ -1,54 +1,39 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Playgrounds ( [playgrounds](https://mapcomplete.org/playgrounds) ) --------------------------------------------------------------------- - - - +## Playgrounds ( [playgrounds](https://mapcomplete.org/playgrounds) ) On this map, you find playgrounds and can add more information - This theme contains the following layers: - - - - - [playground](../Layers/playground.md) - - [playground_equipment](../Layers/playground_equipment.md) - - [bench](../Layers/bench.md) - - [picnic_table](../Layers/picnic_table.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [playground](../Layers/playground.md) + - [playground_equipment](../Layers/playground_equipment.md) + - [bench](../Layers/bench.md) + - [picnic_table](../Layers/picnic_table.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - fr + - ja + - zh_Hant + - ru + - de + - it + - nb_NO + - id + - hu + - ca + - es + - da + - cs + - eu + - pl - - - en - - nl - - fr - - ja - - zh_Hant - - ru - - de - - it - - nb_NO - - id - - hu - - ca - - es - - da - - cs - - eu - - pl - - This document is autogenerated from [assets/themes/playgrounds/playgrounds.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/playgrounds/playgrounds.json) diff --git a/Docs/Themes/postal_codes.md b/Docs/Themes/postal_codes.md index 33027a7ff0b..d9061823a79 100644 --- a/Docs/Themes/postal_codes.md +++ b/Docs/Themes/postal_codes.md @@ -1,51 +1,36 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Postal codes ( [postal_codes](https://mapcomplete.org/postal_codes) ) ------------------------------------------------------------------------ - - - +## Postal codes ( [postal_codes](https://mapcomplete.org/postal_codes) ) Postal codes - This theme contains the following layers: - - - - - [postal_code_boundary](../Layers/postal_code_boundary.md) - - [wrong_postal_code](../Layers/wrong_postal_code.md) - - [town_hall](../Layers/town_hall.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [postal_code_boundary](../Layers/postal_code_boundary.md) + - [wrong_postal_code](../Layers/wrong_postal_code.md) + - [town_hall](../Layers/town_hall.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - id + - hu + - de + - ca + - es + - nb_NO + - nl + - fr + - da + - pa_PK + - cs + - zh_Hant + - it + - pl - - - en - - id - - hu - - de - - ca - - es - - nb_NO - - nl - - fr - - da - - pa_PK - - cs - - zh_Hant - - it - - pl - - This document is autogenerated from [assets/themes/postal_codes/postal_codes.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/postal_codes/postal_codes.json) diff --git a/Docs/Themes/postboxes.md b/Docs/Themes/postboxes.md index 89cc3589c05..92daa756e2b 100644 --- a/Docs/Themes/postboxes.md +++ b/Docs/Themes/postboxes.md @@ -1,50 +1,35 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Postbox and Post Office Map ( [postboxes](https://mapcomplete.org/postboxes) ) --------------------------------------------------------------------------------- - - - +## Postbox and Post Office Map ( [postboxes](https://mapcomplete.org/postboxes) ) On this map you can find and add data of post offices and post boxes. You can use this map to find where you can mail your next postcard! :)
Spotted an error or is a post box missing? You can edit this map with a free OpenStreetMap account. - This theme contains the following layers: - - - - - [postboxes](../Layers/postboxes.md) - - [postoffices](../Layers/postoffices.md) - - [parcel_lockers](../Layers/parcel_lockers.md) - - [shops](../Layers/shops.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [postboxes](../Layers/postboxes.md) + - [postoffices](../Layers/postoffices.md) + - [parcel_lockers](../Layers/parcel_lockers.md) + - [shops](../Layers/shops.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - de + - nb_NO + - it + - zh_Hant + - hu + - nl + - fr + - da + - ca + - es + - cs + - pl - - - en - - de - - nb_NO - - it - - zh_Hant - - hu - - nl - - fr - - da - - ca - - es - - cs - - pl - - This document is autogenerated from [assets/themes/postboxes/postboxes.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/postboxes/postboxes.json) diff --git a/Docs/Themes/rainbow_crossings.md b/Docs/Themes/rainbow_crossings.md index 7e97952c162..6bc77ed0fe5 100644 --- a/Docs/Themes/rainbow_crossings.md +++ b/Docs/Themes/rainbow_crossings.md @@ -1,47 +1,32 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Rainbow pedestrian crossings ( [rainbow_crossings](https://mapcomplete.org/rainbow_crossings) ) -------------------------------------------------------------------------------------------------- - - - +## Rainbow pedestrian crossings ( [rainbow_crossings](https://mapcomplete.org/rainbow_crossings) ) On this map, rainbow-painted pedestrian crossings are shown and can be easily added - This theme contains the following layers: - - - - - [rainbow_crossing_high_zoom](../Layers/rainbow_crossing_high_zoom.md) - - [rainbow_crossings](../Layers/rainbow_crossings.md) - - [cycleways_and_roads](../Layers/cycleways_and_roads.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [rainbow_crossing_high_zoom](../Layers/rainbow_crossing_high_zoom.md) + - [rainbow_crossings](../Layers/rainbow_crossings.md) + - [cycleways_and_roads](../Layers/cycleways_and_roads.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - de + - fr + - da + - nl + - ru + - ca + - es + - cs + - zh_Hant + - pl - - - en - - de - - fr - - da - - nl - - ru - - ca - - es - - cs - - zh_Hant - - pl - - This document is autogenerated from [assets/themes/rainbow_crossings/rainbow_crossings.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/rainbow_crossings/rainbow_crossings.json) diff --git a/Docs/Themes/shops.md b/Docs/Themes/shops.md index 7a7985b450d..802d89ce3c7 100644 --- a/Docs/Themes/shops.md +++ b/Docs/Themes/shops.md @@ -1,53 +1,38 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Shops ( [shops](https://mapcomplete.org/shops) ) --------------------------------------------------- - - - +## Shops ( [shops](https://mapcomplete.org/shops) ) On this map, one can mark basic information about shops, add opening hours and phone numbers - This theme contains the following layers: - - - - - [shops](../Layers/shops.md) - - [pharmacy](../Layers/pharmacy.md) - - [ice_cream](../Layers/ice_cream.md) - - [trolley_bay](../Layers/trolley_bay.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [shops](../Layers/shops.md) + - [pharmacy](../Layers/pharmacy.md) + - [ice_cream](../Layers/ice_cream.md) + - [trolley_bay](../Layers/trolley_bay.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - fr + - ja + - zh_Hant + - ru + - de + - it + - nb_NO + - hu + - nl + - ca + - da + - es + - cs + - eu + - pl - - - en - - fr - - ja - - zh_Hant - - ru - - de - - it - - nb_NO - - hu - - nl - - ca - - da - - es - - cs - - eu - - pl - - This document is autogenerated from [assets/themes/shops/shops.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/shops/shops.json) diff --git a/Docs/Themes/sidewalks.md b/Docs/Themes/sidewalks.md index fc48e686a17..8eae80a6246 100644 --- a/Docs/Themes/sidewalks.md +++ b/Docs/Themes/sidewalks.md @@ -1,49 +1,34 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Sidewalks ( [sidewalks](https://mapcomplete.org/sidewalks) ) --------------------------------------------------------------- - - - +## Sidewalks ( [sidewalks](https://mapcomplete.org/sidewalks) ) Experimental theme - This theme contains the following layers: - - - - - [sidewalks](../Layers/sidewalks.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [sidewalks](../Layers/sidewalks.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - ru + - nl + - de + - ca + - es + - fr + - nb_NO + - it + - da + - pa_PK + - cs + - zh_Hant + - eu + - pl - - - en - - ru - - nl - - de - - ca - - es - - fr - - nb_NO - - it - - da - - pa_PK - - cs - - zh_Hant - - eu - - pl - - This document is autogenerated from [assets/themes/sidewalks/sidewalks.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/sidewalks/sidewalks.json) diff --git a/Docs/Themes/ski.md b/Docs/Themes/ski.md index 68e18f59281..90d2b1d1331 100644 --- a/Docs/Themes/ski.md +++ b/Docs/Themes/ski.md @@ -1,49 +1,34 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Ski pistes and aerialways ( [ski](https://mapcomplete.org/ski) ) ------------------------------------------------------------------- - - - +## Ski pistes and aerialways ( [ski](https://mapcomplete.org/ski) ) Everything you need to go skiing - This theme contains the following layers: - - - - - [ski_piste](../Layers/ski_piste.md) - - [aerialway](../Layers/aerialway.md) - - [guidepost](../Layers/guidepost.md) - - [map](../Layers/map.md) - - [information_board](../Layers/information_board.md) - - [mountain_rescue](../Layers/mountain_rescue.md) - - [toilet](../Layers/toilet.md) - - [drinking_water](../Layers/drinking_water.md) - - [food](../Layers/food.md) - - [viewpoint](../Layers/viewpoint.md) - - [binocular](../Layers/binocular.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [ski_piste](../Layers/ski_piste.md) + - [aerialway](../Layers/aerialway.md) + - [guidepost](../Layers/guidepost.md) + - [map](../Layers/map.md) + - [information_board](../Layers/information_board.md) + - [mountain_rescue](../Layers/mountain_rescue.md) + - [toilet](../Layers/toilet.md) + - [drinking_water](../Layers/drinking_water.md) + - [food](../Layers/food.md) + - [viewpoint](../Layers/viewpoint.md) + - [binocular](../Layers/binocular.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - de + - es + - da + - fr - - - en - - de - - es - - da - - fr - - This document is autogenerated from [assets/themes/ski/ski.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/ski/ski.json) diff --git a/Docs/Themes/speelplekken.md b/Docs/Themes/speelplekken.md index 9c62a295420..e244a523d1c 100644 --- a/Docs/Themes/speelplekken.md +++ b/Docs/Themes/speelplekken.md @@ -1,41 +1,26 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Welkom bij de groendoener! ( [speelplekken](https://mapcomplete.org/speelplekken) ) -------------------------------------------------------------------------------------- - - - +## Welkom bij de groendoener! ( [speelplekken](https://mapcomplete.org/speelplekken) )

Welkom bij de Groendoener!

De Zuidrand dat is spelen, ravotten, chillen, wandelen,… in het groen. Meer dan 200 grote en kleine speelplekken liggen er in parken, in bossen en op pleintjes te wachten om ontdekt te worden. De verschillende speelplekken werden getest én goedgekeurd door kinder- en jongerenreporters uit de Zuidrand. Met leuke challenges dagen de reporters jou uit om ook op ontdekking te gaan. Klik op een speelplek op de kaart, bekijk het filmpje en ga op verkenning!

Het project groendoener kadert binnen het strategisch project Beleefbare Open Ruimte in de Antwerpse Zuidrand en is een samenwerking tussen het departement Leefmilieu van provincie Antwerpen, Sportpret vzw, een OpenStreetMap-België Consultent en Createlli vzw. Het project kwam tot stand met steun van Departement Omgeving van de Vlaamse Overheid.
- This theme contains the following layers: - - - - - [shadow](../Layers/shadow.md) - - [play_forest](../Layers/play_forest.md) - - [playground](../Layers/playground.md) - - [village_green](../Layers/village_green.md) - - [sport_pitch](../Layers/sport_pitch.md) - - [slow_roads](../Layers/slow_roads.md) - - [walking_routes](../Layers/walking_routes.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [shadow](../Layers/shadow.md) + - [play_forest](../Layers/play_forest.md) + - [playground](../Layers/playground.md) + - [village_green](../Layers/village_green.md) + - [sport_pitch](../Layers/sport_pitch.md) + - [slow_roads](../Layers/slow_roads.md) + - [walking_routes](../Layers/walking_routes.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - nl - - - nl - - This document is autogenerated from [assets/themes/speelplekken/speelplekken.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/speelplekken/speelplekken.json) diff --git a/Docs/Themes/sport_pitches.md b/Docs/Themes/sport_pitches.md index 8277f2710db..9ec4906ab2d 100644 --- a/Docs/Themes/sport_pitches.md +++ b/Docs/Themes/sport_pitches.md @@ -1,48 +1,33 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Sport pitches ( [sport_pitches](https://mapcomplete.org/sport_pitches) ) --------------------------------------------------------------------------- - - - +## Sport pitches ( [sport_pitches](https://mapcomplete.org/sport_pitches) ) A sport pitch is an area where sports are played - This theme contains the following layers: - - - - - [sport_pitch](../Layers/sport_pitch.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [sport_pitch](../Layers/sport_pitch.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - fr + - ja + - zh_Hant + - ru + - de + - it + - hu + - ca + - es + - da + - cs + - pl - - - en - - nl - - fr - - ja - - zh_Hant - - ru - - de - - it - - hu - - ca - - es - - da - - cs - - pl - - This document is autogenerated from [assets/themes/sport_pitches/sport_pitches.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/sport_pitches/sport_pitches.json) diff --git a/Docs/Themes/sports.md b/Docs/Themes/sports.md index 60db430b3e3..23cffd34939 100644 --- a/Docs/Themes/sports.md +++ b/Docs/Themes/sports.md @@ -1,49 +1,34 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Sports ( [sports](https://mapcomplete.org/sports) ) ------------------------------------------------------ - - - +## Sports ( [sports](https://mapcomplete.org/sports) ) All about sports, find sport pitches, fitness centres and more. - This theme contains the following layers: - - - - - [sport_pitch](../Layers/sport_pitch.md) - - [fitness_centre](../Layers/fitness_centre.md) - - [fitness_station](../Layers/fitness_station.md) - - [sports_centre](../Layers/sports_centre.md) - - [sport_shops](../Layers/sport_shops.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [sport_pitch](../Layers/sport_pitch.md) + - [fitness_centre](../Layers/fitness_centre.md) + - [fitness_station](../Layers/fitness_station.md) + - [sports_centre](../Layers/sports_centre.md) + - [sport_shops](../Layers/sport_shops.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - de + - pa_PK + - fr + - ca + - es + - cs + - zh_Hant + - eu + - pl - - - en - - nl - - de - - pa_PK - - fr - - ca - - es - - cs - - zh_Hant - - eu - - pl - - This document is autogenerated from [assets/themes/sports/sports.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/sports/sports.json) diff --git a/Docs/Themes/stations.md b/Docs/Themes/stations.md index dee2a59bb10..920bf8dfad3 100644 --- a/Docs/Themes/stations.md +++ b/Docs/Themes/stations.md @@ -1,67 +1,52 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Train Stations ( [stations](https://mapcomplete.org/stations) ) ------------------------------------------------------------------ - - - +## Train Stations ( [stations](https://mapcomplete.org/stations) ) View, edit and add details to a train station - This theme contains the following layers: - - - - - [indoors](../Layers/indoors.md) - - [stairs](../Layers/stairs.md) - - [pedestrian_path](../Layers/pedestrian_path.md) - - [train_station](../Layers/train_station.md) - - [shops](../Layers/shops.md) - - [bike_parking](../Layers/bike_parking.md) - - [bicycle_rental](../Layers/bicycle_rental.md) - - [car_rental](../Layers/car_rental.md) - - [food](../Layers/food.md) - - [cafe_pub](../Layers/cafe_pub.md) - - [toilet](../Layers/toilet.md) - - [railway_platforms](../Layers/railway_platforms.md) - - [ticket_machine](../Layers/ticket_machine.md) - - [ticket_validator](../Layers/ticket_validator.md) - - [entrance](../Layers/entrance.md) - - [elevator](../Layers/elevator.md) - - [waste_basket](../Layers/waste_basket.md) - - [atm](../Layers/atm.md) - - [clock](../Layers/clock.md) - - [bench](../Layers/bench.md) - - [drinking_water](../Layers/drinking_water.md) - - [departures_board](../Layers/departures_board.md) - - [walls_and_buildings](../Layers/walls_and_buildings.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [indoors](../Layers/indoors.md) + - [stairs](../Layers/stairs.md) + - [pedestrian_path](../Layers/pedestrian_path.md) + - [train_station](../Layers/train_station.md) + - [shops](../Layers/shops.md) + - [bike_parking](../Layers/bike_parking.md) + - [bicycle_rental](../Layers/bicycle_rental.md) + - [car_rental](../Layers/car_rental.md) + - [food](../Layers/food.md) + - [cafe_pub](../Layers/cafe_pub.md) + - [toilet](../Layers/toilet.md) + - [railway_platforms](../Layers/railway_platforms.md) + - [ticket_machine](../Layers/ticket_machine.md) + - [ticket_validator](../Layers/ticket_validator.md) + - [entrance](../Layers/entrance.md) + - [elevator](../Layers/elevator.md) + - [waste_basket](../Layers/waste_basket.md) + - [atm](../Layers/atm.md) + - [clock](../Layers/clock.md) + - [bench](../Layers/bench.md) + - [drinking_water](../Layers/drinking_water.md) + - [departures_board](../Layers/departures_board.md) + - [walls_and_buildings](../Layers/walls_and_buildings.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - de + - nl + - nb_NO + - fr + - ca + - es + - cs + - zh_Hant + - pl + - da - - - en - - de - - nl - - nb_NO - - fr - - ca - - es - - cs - - zh_Hant - - pl - - da - - This document is autogenerated from [assets/themes/stations/stations.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/stations/stations.json) diff --git a/Docs/Themes/street_lighting.md b/Docs/Themes/street_lighting.md index 3cef7c6c015..6cc5e6b703d 100644 --- a/Docs/Themes/street_lighting.md +++ b/Docs/Themes/street_lighting.md @@ -1,51 +1,36 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Street Lighting ( [street_lighting](https://mapcomplete.org/street_lighting) ) --------------------------------------------------------------------------------- - - - +## Street Lighting ( [street_lighting](https://mapcomplete.org/street_lighting) ) On this map you can find everything about street lighting - This theme contains the following layers: - - - - - [street_lamps](../Layers/street_lamps.md) - - [lit_streets](../Layers/lit_streets.md) - - [all_streets](../Layers/all_streets.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [street_lamps](../Layers/street_lamps.md) + - [lit_streets](../Layers/lit_streets.md) + - [all_streets](../Layers/all_streets.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - ru + - zh_Hant + - hu + - de + - ca + - fr + - nb_NO + - da + - pa_PK + - es + - cs + - it + - pl - - - en - - nl - - ru - - zh_Hant - - hu - - de - - ca - - fr - - nb_NO - - da - - pa_PK - - es - - cs - - it - - pl - - This document is autogenerated from [assets/themes/street_lighting/street_lighting.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/street_lighting/street_lighting.json) diff --git a/Docs/Themes/street_lighting_assen.md b/Docs/Themes/street_lighting_assen.md index b879e9c24d8..5673f71c7ed 100644 --- a/Docs/Themes/street_lighting_assen.md +++ b/Docs/Themes/street_lighting_assen.md @@ -1,37 +1,22 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Straatverlichting - Assen ( [street_lighting_assen](https://mapcomplete.org/street_lighting_assen) ) ------------------------------------------------------------------------------------------------------- - - - +## Straatverlichting - Assen ( [street_lighting_assen](https://mapcomplete.org/street_lighting_assen) ) Op deze kaart vind je alles over straatlantaarns + een dataset van Assen - This theme contains the following layers: - - - - - [street_lamps](../Layers/street_lamps.md) - - [assen](../Layers/assen.md) - - [maproulette_challenge](../Layers/maproulette_challenge.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [street_lamps](../Layers/street_lamps.md) + - [assen](../Layers/assen.md) + - [maproulette_challenge](../Layers/maproulette_challenge.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - nl - - - nl - - This document is autogenerated from [assets/themes/street_lighting_assen/street_lighting_assen.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/street_lighting_assen/street_lighting_assen.json) diff --git a/Docs/Themes/surveillance.md b/Docs/Themes/surveillance.md index a66089d1cc5..b9302e0f3e6 100644 --- a/Docs/Themes/surveillance.md +++ b/Docs/Themes/surveillance.md @@ -1,51 +1,36 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Surveillance under Surveillance ( [surveillance](https://mapcomplete.org/surveillance) ) ------------------------------------------------------------------------------------------- - - - +## Surveillance under Surveillance ( [surveillance](https://mapcomplete.org/surveillance) ) On this open map, you can find surveillance cameras. - This theme contains the following layers: - - - - - [surveillance_camera](../Layers/surveillance_camera.md) - - [speed_camera](../Layers/speed_camera.md) - - [walls_and_buildings](../Layers/walls_and_buildings.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [surveillance_camera](../Layers/surveillance_camera.md) + - [speed_camera](../Layers/speed_camera.md) + - [walls_and_buildings](../Layers/walls_and_buildings.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - ja + - zh_Hant + - fr + - de + - it + - hu + - ca + - nb_NO + - da + - es + - cs + - pl + - sl - - - en - - nl - - ja - - zh_Hant - - fr - - de - - it - - hu - - ca - - nb_NO - - da - - es - - cs - - pl - - sl - - This document is autogenerated from [assets/themes/surveillance/surveillance.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/surveillance/surveillance.json) diff --git a/Docs/Themes/toerisme_vlaanderen.md b/Docs/Themes/toerisme_vlaanderen.md index c4e09d54eba..1ecc7f63b2d 100644 --- a/Docs/Themes/toerisme_vlaanderen.md +++ b/Docs/Themes/toerisme_vlaanderen.md @@ -1,44 +1,29 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Pin je punt ( [toerisme_vlaanderen](https://mapcomplete.org/toerisme_vlaanderen) ) ------------------------------------------------------------------------------------- - - - +## Pin je punt ( [toerisme_vlaanderen](https://mapcomplete.org/toerisme_vlaanderen) )

Pin je punt is een open toerismekaart waarin wandelaars en fietsers nuttige info verzamelen voor andere wandelaars en fietsers.

Klik op de exacte locatie op de kaart om een punt toe te voegen of op een bestaand punt om het te wijzigen.
We verzamelen:

  1. Laadpunten voor elektrische fietsen
  2. Openbare toiletten
  3. Zit- en picknickbankjes
  4. Uitkijktorens
  5. Fietsherstelpunten
  6. Fietsverhuurpunten
  7. Speeltuinen

- This theme contains the following layers: - - - - - [charging_station_ebikes](../Layers/charging_station_ebikes.md) - - [charging_station](../Layers/charging_station.md) - - [toilet](../Layers/toilet.md) - - [bench](../Layers/bench.md) - - [picnic_table](../Layers/picnic_table.md) - - [observation_tower](../Layers/observation_tower.md) - - [bike_repair_station](../Layers/bike_repair_station.md) - - [bicycle_rental_non_docking](../Layers/bicycle_rental_non_docking.md) - - [bicycle_rental](../Layers/bicycle_rental.md) - - [playground](../Layers/playground.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [charging_station_ebikes](../Layers/charging_station_ebikes.md) + - [charging_station](../Layers/charging_station.md) + - [toilet](../Layers/toilet.md) + - [bench](../Layers/bench.md) + - [picnic_table](../Layers/picnic_table.md) + - [observation_tower](../Layers/observation_tower.md) + - [bike_repair_station](../Layers/bike_repair_station.md) + - [bicycle_rental_non_docking](../Layers/bicycle_rental_non_docking.md) + - [bicycle_rental](../Layers/bicycle_rental.md) + - [playground](../Layers/playground.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - nl - - - nl - - This document is autogenerated from [assets/themes/toerisme_vlaanderen/toerisme_vlaanderen.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/toerisme_vlaanderen/toerisme_vlaanderen.json) diff --git a/Docs/Themes/toilets.md b/Docs/Themes/toilets.md index c65ebb4919a..6bcbafab1b1 100644 --- a/Docs/Themes/toilets.md +++ b/Docs/Themes/toilets.md @@ -1,51 +1,36 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Public toilets ( [toilets](https://mapcomplete.org/toilets) ) ---------------------------------------------------------------- - - - +## Public toilets ( [toilets](https://mapcomplete.org/toilets) ) A map of public toilets - This theme contains the following layers: - - - - - [toilet](../Layers/toilet.md) - - [toilet_at_amenity](../Layers/toilet_at_amenity.md) - - [shower](../Layers/shower.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [toilet](../Layers/toilet.md) + - [toilet_at_amenity](../Layers/toilet_at_amenity.md) + - [shower](../Layers/shower.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - de + - fr + - nl + - ru + - ja + - zh_Hant + - pl + - it + - nb_NO + - hu + - ca + - da + - es + - cs - - - en - - de - - fr - - nl - - ru - - ja - - zh_Hant - - pl - - it - - nb_NO - - hu - - ca - - da - - es - - cs - - This document is autogenerated from [assets/themes/toilets/toilets.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/toilets/toilets.json) diff --git a/Docs/Themes/transit.md b/Docs/Themes/transit.md index ab150cd8569..84fcb46abc7 100644 --- a/Docs/Themes/transit.md +++ b/Docs/Themes/transit.md @@ -1,50 +1,35 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Bus routes ( [transit](https://mapcomplete.org/transit) ) ------------------------------------------------------------ - - - +## Bus routes ( [transit](https://mapcomplete.org/transit) ) Plan your trip with the help of the public transport system. - This theme contains the following layers: - - - - - [transit_stops](../Layers/transit_stops.md) - - [transit_routes](../Layers/transit_routes.md) - - [bike_parking](../Layers/bike_parking.md) - - [parking](../Layers/parking.md) - - [pt_shelter](../Layers/pt_shelter.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [transit_stops](../Layers/transit_stops.md) + - [transit_routes](../Layers/transit_routes.md) + - [bike_parking](../Layers/bike_parking.md) + - [parking](../Layers/parking.md) + - [pt_shelter](../Layers/pt_shelter.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - de + - fr + - da + - nb_NO + - ca + - pa_PK + - nl + - es + - cs + - zh_Hant + - pl - - - en - - de - - fr - - da - - nb_NO - - ca - - pa_PK - - nl - - es - - cs - - zh_Hant - - pl - - This document is autogenerated from [assets/themes/transit/transit.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/transit/transit.json) diff --git a/Docs/Themes/trees.md b/Docs/Themes/trees.md index 0c618a88bf2..cea78f933c6 100644 --- a/Docs/Themes/trees.md +++ b/Docs/Themes/trees.md @@ -1,54 +1,39 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Trees ( [trees](https://mapcomplete.org/trees) ) --------------------------------------------------- - - - +## Trees ( [trees](https://mapcomplete.org/trees) ) Map all the trees! - This theme contains the following layers: - - - - - [tree_node](../Layers/tree_node.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [tree_node](../Layers/tree_node.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - fr + - it + - ru + - ja + - zh_Hant + - pl + - de + - nb_NO + - id + - hu + - ca + - es + - da + - pa_PK + - cs + - pt_BR + - eu + - pt - - - en - - nl - - fr - - it - - ru - - ja - - zh_Hant - - pl - - de - - nb_NO - - id - - hu - - ca - - es - - da - - pa_PK - - cs - - pt_BR - - eu - - pt - - This document is autogenerated from [assets/themes/trees/trees.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/trees/trees.json) diff --git a/Docs/Themes/uk_addresses.md b/Docs/Themes/uk_addresses.md index 5ea55353ff1..a194f75456d 100644 --- a/Docs/Themes/uk_addresses.md +++ b/Docs/Themes/uk_addresses.md @@ -1,39 +1,24 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Addresses in Great Britain ( [uk_addresses](https://mapcomplete.org/uk_addresses) ) -------------------------------------------------------------------------------------- - - - +## Addresses in Great Britain ( [uk_addresses](https://mapcomplete.org/uk_addresses) ) Help us collect addresses and make them freely available. Each address contributed will be added to OpenStreetMap so you will need to create an account and log in before you start. Please do not copy addresses from the internet or other sources subject to copyright. This website works well on mobile so a good option is to contibute the addresses closest to you. - This theme contains the following layers: - - - - - [raw_inspire_polygons](../Layers/raw_inspire_polygons.md) - - [to_import](../Layers/to_import.md) - - [uk_address](../Layers/uk_address.md) - - [named_streets](../Layers/named_streets.md) - - [address](../Layers/address.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [raw_inspire_polygons](../Layers/raw_inspire_polygons.md) + - [to_import](../Layers/to_import.md) + - [uk_address](../Layers/uk_address.md) + - [named_streets](../Layers/named_streets.md) + - [address](../Layers/address.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en - - - en - - This document is autogenerated from [assets/themes/uk_addresses/uk_addresses.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/uk_addresses/uk_addresses.json) diff --git a/Docs/Themes/velopark.md b/Docs/Themes/velopark.md index a157473f3ae..5a6d9555a8c 100644 --- a/Docs/Themes/velopark.md +++ b/Docs/Themes/velopark.md @@ -1,42 +1,27 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Velopark to OpenStreetMap synchronisation tool ( [velopark](https://mapcomplete.org/velopark) ) -------------------------------------------------------------------------------------------------- - - - +## Velopark to OpenStreetMap synchronisation tool ( [velopark](https://mapcomplete.org/velopark) )

Velopark.be is a website collecting data about bicycle parkings in a semi-crowdsourced way. However, only 'authorized' instances are allowed to make changes there, in practice the operator of the bicycle parking such as SNCB, de Lijn or the municipality. They have now decided to synchronize their dataset with OpenStreetMap, and this MapComplete-instance is set up to help link and import their data into OpenStreetMap.

- This theme contains the following layers: - - - - - [velopark_maproulette](../Layers/velopark_maproulette.md) - - [bike_parking_with_velopark_ref](../Layers/bike_parking_with_velopark_ref.md) - - [bike_parking](../Layers/bike_parking.md) - - [toilet](../Layers/toilet.md) - - [bike_repair_station](../Layers/bike_repair_station.md) - - [bicycle_rental](../Layers/bicycle_rental.md) - - [current_view](../Layers/current_view.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [velopark_maproulette](../Layers/velopark_maproulette.md) + - [bike_parking_with_velopark_ref](../Layers/bike_parking_with_velopark_ref.md) + - [bike_parking](../Layers/bike_parking.md) + - [toilet](../Layers/toilet.md) + - [bike_repair_station](../Layers/bike_repair_station.md) + - [bicycle_rental](../Layers/bicycle_rental.md) + - [current_view](../Layers/current_view.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - nl + - en - - - nl - - en - - This document is autogenerated from [assets/themes/velopark/velopark.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/velopark/velopark.json) diff --git a/Docs/Themes/vending_machine.md b/Docs/Themes/vending_machine.md index 10211a53c7d..55a93f3b070 100644 --- a/Docs/Themes/vending_machine.md +++ b/Docs/Themes/vending_machine.md @@ -1,48 +1,33 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Vending Machines ( [vending_machine](https://mapcomplete.org/vending_machine) ) ---------------------------------------------------------------------------------- - - - +## Vending Machines ( [vending_machine](https://mapcomplete.org/vending_machine) ) Find vending machines for everything - This theme contains the following layers: - - - - - [vending_machine](../Layers/vending_machine.md) - - [all_vending_machine](../Layers/all_vending_machine.md) - - [parking_ticket_machine](../Layers/parking_ticket_machine.md) - - [elongated_coin](../Layers/elongated_coin.md) - - [ticket_machine](../Layers/ticket_machine.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [vending_machine](../Layers/vending_machine.md) + - [all_vending_machine](../Layers/all_vending_machine.md) + - [parking_ticket_machine](../Layers/parking_ticket_machine.md) + - [elongated_coin](../Layers/elongated_coin.md) + - [ticket_machine](../Layers/ticket_machine.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - de + - fr + - ca + - cs + - es + - pl + - zh_Hant + - da - - - en - - nl - - de - - fr - - ca - - cs - - es - - pl - - zh_Hant - - da - - This document is autogenerated from [assets/themes/vending_machine/vending_machine.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/vending_machine/vending_machine.json) diff --git a/Docs/Themes/walkingnodes.md b/Docs/Themes/walkingnodes.md index 738a490eb3f..597c0cfc3bc 100644 --- a/Docs/Themes/walkingnodes.md +++ b/Docs/Themes/walkingnodes.md @@ -1,42 +1,27 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Walking Node Networks ( [walkingnodes](https://mapcomplete.org/walkingnodes) ) --------------------------------------------------------------------------------- - - - +## Walking Node Networks ( [walkingnodes](https://mapcomplete.org/walkingnodes) ) This map shows walking node networks and allows you to add new nodes easily - This theme contains the following layers: - - - - - [node2node_hiking](../Layers/node2node_hiking.md) - - [node_hiking](../Layers/node_hiking.md) - - [guidepost_hiking](../Layers/guidepost_hiking.md) - - [route_marker](../Layers/route_marker.md) - - [cycleways_and_roads](../Layers/cycleways_and_roads.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [node2node_hiking](../Layers/node2node_hiking.md) + - [node_hiking](../Layers/node_hiking.md) + - [guidepost_hiking](../Layers/guidepost_hiking.md) + - [route_marker](../Layers/route_marker.md) + - [cycleways_and_roads](../Layers/cycleways_and_roads.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - de + - es - - - en - - nl - - de - - es - - This document is autogenerated from [assets/themes/walkingnodes/walkingnodes.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/walkingnodes/walkingnodes.json) diff --git a/Docs/Themes/walls_and_buildings.md b/Docs/Themes/walls_and_buildings.md index f07892f54a3..75537000c81 100644 --- a/Docs/Themes/walls_and_buildings.md +++ b/Docs/Themes/walls_and_buildings.md @@ -1,48 +1,33 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Walls and buildings ( [walls_and_buildings](https://mapcomplete.org/walls_and_buildings) ) --------------------------------------------------------------------------------------------- - - - +## Walls and buildings ( [walls_and_buildings](https://mapcomplete.org/walls_and_buildings) ) Special builtin layer providing all walls and buildings. This layer is useful in presets for objects which can be placed against walls (e.g. AEDs, postboxes, entrances, addresses, surveillance cameras, …). This layer is invisible by default and not toggleable by the user. - This theme contains the following layers: - - - - - [walls_and_buildings](../Layers/walls_and_buildings.md) - - [entrance](../Layers/entrance.md) - - [indoors](../Layers/indoors.md) - - [pedestrian_path](../Layers/pedestrian_path.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [walls_and_buildings](../Layers/walls_and_buildings.md) + - [entrance](../Layers/entrance.md) + - [indoors](../Layers/indoors.md) + - [pedestrian_path](../Layers/pedestrian_path.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - de + - fr + - da + - nb_NO + - nl + - ca + - es + - cs + - zh_Hant + - pl - - - en - - de - - fr - - da - - nb_NO - - nl - - ca - - es - - cs - - zh_Hant - - pl - - This document is autogenerated from [assets/themes/walls_and_buildings/walls_and_buildings.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/walls_and_buildings/walls_and_buildings.json) diff --git a/Docs/Themes/waste.md b/Docs/Themes/waste.md index 7d99e042d9e..86a23dcb4e1 100644 --- a/Docs/Themes/waste.md +++ b/Docs/Themes/waste.md @@ -1,50 +1,35 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Waste ( [waste](https://mapcomplete.org/waste) ) --------------------------------------------------- - - - +## Waste ( [waste](https://mapcomplete.org/waste) ) Map showing waste baskets and recycling facilities. - This theme contains the following layers: - - - - - [waste_basket](../Layers/waste_basket.md) - - [recycling](../Layers/recycling.md) - - [waste_disposal](../Layers/waste_disposal.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [waste_basket](../Layers/waste_basket.md) + - [recycling](../Layers/recycling.md) + - [waste_disposal](../Layers/waste_disposal.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - de + - ca + - nb_NO + - fr + - it + - da + - es + - ru + - cs + - zh_Hant + - eu + - pl - - - en - - nl - - de - - ca - - nb_NO - - fr - - it - - da - - es - - ru - - cs - - zh_Hant - - eu - - pl - - This document is autogenerated from [assets/themes/waste/waste.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/waste/waste.json) diff --git a/Docs/Themes/waste_assen.md b/Docs/Themes/waste_assen.md index 27ca302ffcc..c1368ca5249 100644 --- a/Docs/Themes/waste_assen.md +++ b/Docs/Themes/waste_assen.md @@ -1,39 +1,24 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Afval - Assen ( [waste_assen](https://mapcomplete.org/waste_assen) ) ----------------------------------------------------------------------- - - - +## Afval - Assen ( [waste_assen](https://mapcomplete.org/waste_assen) ) Kaart met afvalbakken en recyclingfaciliteiten + een dataset voor Assen. - This theme contains the following layers: - - - - - [waste_basket](../Layers/waste_basket.md) - - [waste_basket_assen](../Layers/waste_basket_assen.md) - - [recycling](../Layers/recycling.md) - - [recycling_assen](../Layers/recycling_assen.md) - - [waste_disposal](../Layers/waste_disposal.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [waste_basket](../Layers/waste_basket.md) + - [waste_basket_assen](../Layers/waste_basket_assen.md) + - [recycling](../Layers/recycling.md) + - [recycling_assen](../Layers/recycling_assen.md) + - [waste_disposal](../Layers/waste_disposal.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - nl - - - nl - - This document is autogenerated from [assets/themes/waste_assen/waste_assen.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/waste_assen/waste_assen.json) diff --git a/Docs/Themes/waste_basket.md b/Docs/Themes/waste_basket.md index 4082d5515bf..d61d34085d5 100644 --- a/Docs/Themes/waste_basket.md +++ b/Docs/Themes/waste_basket.md @@ -1,49 +1,34 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Waste Baskets ( [waste_basket](https://mapcomplete.org/waste_basket) ) ------------------------------------------------------------------------- - - - +## Waste Baskets ( [waste_basket](https://mapcomplete.org/waste_basket) ) On this map, you'll find waste baskets near you. If a waste basket is missing on this map, you can add it yourself - This theme contains the following layers: - - - - - [waste_basket](../Layers/waste_basket.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [waste_basket](../Layers/waste_basket.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - en + - nl + - de + - it + - zh_Hant + - hu + - id + - ca + - fr + - nb_NO + - da + - pa_PK + - es + - cs + - pl - - - en - - nl - - de - - it - - zh_Hant - - hu - - id - - ca - - fr - - nb_NO - - da - - pa_PK - - es - - cs - - pl - - This document is autogenerated from [assets/themes/waste_basket/waste_basket.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/waste_basket/waste_basket.json) diff --git a/Docs/Themes/width.md b/Docs/Themes/width.md index a91880c07ce..5aeb09380d5 100644 --- a/Docs/Themes/width.md +++ b/Docs/Themes/width.md @@ -1,39 +1,24 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Straatbreedtes ( [width](https://mapcomplete.org/width) ) ------------------------------------------------------------ - - -### Table of contents +## Straatbreedtes ( [width](https://mapcomplete.org/width) )### Table of contents 1. [De straat is opgebruikt](#de-straat-is-opgebruikt) 2. [Legende](#legende)

De straat is opgebruikt

Er is steeds meer druk op de openbare ruimte. Voetgangers, fietsers, steps, auto's, bussen, bestelwagens, buggies, cargobikes, ... willen allemaal hun deel van de openbare ruimte en de straat.

In deze studie nemen we Brugge onder de loep en kijken we hoe breed elke straat is én hoe breed elke straat zou moeten zijn voor een veilig én vlot verkeer.

Legende

    Straat te smal voor veilig verkeer
    Straat is breed genoeg veilig verkeer
    Straat zonder voetpad, te smal als ook voetgangers plaats krijgen
    Autoluw, autoloos of enkel plaatselijk verkeer


Een gestippelde lijn is een straat waar ook voor fietsers éénrichtingsverkeer geldt.
Klik op een straat om meer informatie te zien. - This theme contains the following layers: - - - - - [street_with_width](../Layers/street_with_width.md) - - [selected_element](../Layers/selected_element.md) - - [gps_location](../Layers/gps_location.md) - - [gps_location_history](../Layers/gps_location_history.md) - - [home_location](../Layers/home_location.md) - - [gps_track](../Layers/gps_track.md) - - [range](../Layers/range.md) - - [last_click](../Layers/last_click.md) - - [favourite](../Layers/favourite.md) - - [summary](../Layers/summary.md) - - + - [street_with_width](../Layers/street_with_width.md) + - [selected_element](../Layers/selected_element.md) + - [gps_location](../Layers/gps_location.md) + - [gps_location_history](../Layers/gps_location_history.md) + - [home_location](../Layers/home_location.md) + - [gps_track](../Layers/gps_track.md) + - [range](../Layers/range.md) + - [last_click](../Layers/last_click.md) + - [favourite](../Layers/favourite.md) + - [summary](../Layers/summary.md) Available languages: + - nl - - - nl - - This document is autogenerated from [assets/themes/width/width.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/width/width.json) diff --git a/Docs/URL_Parameters.md b/Docs/URL_Parameters.md index 7d08ed73ca5..09035b186b3 100644 --- a/Docs/URL_Parameters.md +++ b/Docs/URL_Parameters.md @@ -1,72 +1,59 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - URL-parameters and URL-hash -============================= - - +# URL-parameters and URL-hash This document gives an overview of which URL-parameters can be used to influence MapComplete. - - ## Table of contents -1. [ What is a URL parameter? ](#-what-is-a-url-parameter-) +1. [What is a URL parameter?](#what-is-a-url-parameter) - [Possible hashes to open a menu](#possible-hashes-to-open-a-menu) -2. [ language ](#-language-) -3. [ fs-translation-mode ](#-fs-translation-mode-) -4. [ fake-user ](#-fake-user-) -5. [ fs-enable-login ](#-fs-enable-login-) -6. [ fs-search ](#-fs-search-) -7. [ fs-background ](#-fs-background-) -8. [ fs-filter ](#-fs-filter-) -9. [ fs-welcome-message ](#-fs-welcome-message-) -10. [ fs-community-index ](#-fs-community-index-) -11. [ fs-iframe-popout ](#-fs-iframe-popout-) -12. [ fs-homepage-link ](#-fs-homepage-link-) -13. [ fs-share-screen ](#-fs-share-screen-) -14. [ fs-geolocation ](#-fs-geolocation-) -15. [ fs-layers-enabled ](#-fs-layers-enabled-) -16. [ fs-all-questions ](#-fs-all-questions-) -17. [ fs-export ](#-fs-export-) -18. [ test ](#-test-) -19. [ debug ](#-debug-) -20. [ moreprivacy ](#-moreprivacy-) -21. [ overpassUrl ](#-overpassurl-) -22. [ overpassTimeout ](#-overpasstimeout-) -23. [ overpassMaxZoom ](#-overpassmaxzoom-) -24. [ osmApiTileSize ](#-osmapitilesize-) -25. [ background ](#-background-) -26. [ z ](#-z-) -27. [ lat ](#-lat-) -28. [ lon ](#-lon-) -29. [ oauth_token ](#-oauth_token-) -30. [ layer-public_bookcase ](#-layer-public_bookcase-) -31. [ filter-public_bookcase-kid-books ](#-filter-public_bookcase-kid-books-) -32. [ filter-public_bookcase-adult-books ](#-filter-public_bookcase-adult-books-) -33. [ filter-public_bookcase-inside ](#-filter-public_bookcase-inside-) -34. [ filter-public_bookcase-has_image ](#-filter-public_bookcase-has_image-) -35. [ layer-note_import_public_bookcase ](#-layer-note_import_public_bookcase-) -36. [ mode ](#-mode-) -37. [ layer- ](#-layer--) - - What is a URL parameter? --------------------------- - +2. [language](#language) +3. [fs-translation-mode](#fs-translation-mode) +4. [fake-user](#fake-user) +5. [fs-enable-login](#fs-enable-login) +6. [fs-search](#fs-search) +7. [fs-background](#fs-background) +8. [fs-filter](#fs-filter) +9. [fs-welcome-message](#fs-welcome-message) +10. [fs-community-index](#fs-community-index) +11. [fs-iframe-popout](#fs-iframe-popout) +12. [fs-homepage-link](#fs-homepage-link) +13. [fs-share-screen](#fs-share-screen) +14. [fs-geolocation](#fs-geolocation) +15. [fs-layers-enabled](#fs-layers-enabled) +16. [fs-all-questions](#fs-all-questions) +17. [fs-export](#fs-export) +18. [test](#test) +19. [debug](#debug) +20. [moreprivacy](#moreprivacy) +21. [overpassUrl](#overpassurl) +22. [overpassTimeout](#overpasstimeout) +23. [overpassMaxZoom](#overpassmaxzoom) +24. [osmApiTileSize](#osmapitilesize) +25. [background](#background) +26. [z](#z) +27. [lat](#lat) +28. [lon](#lon) +29. [oauth_token](#oauth_token) +30. [layer-public_bookcase](#layer-public_bookcase) +31. [filter-public_bookcase-kid-books](#filter-public_bookcase-kid-books) +32. [filter-public_bookcase-adult-books](#filter-public_bookcase-adult-books) +33. [filter-public_bookcase-inside](#filter-public_bookcase-inside) +34. [filter-public_bookcase-has_image](#filter-public_bookcase-has_image) +35. [layer-note_import_public_bookcase](#layer-note_import_public_bookcase) +36. [mode](#mode) +37. [layer-](#layer-) +## What is a URL parameter? "URL-parameters are extra parts of the URL used to set the state. For example, if the url is `https://mapcomplete.org/cyclofix?lat=51.0&lon=4.3&z=5&test=true#node/1234`, the URL-parameters are stated in the part between the `?` and the `#`. There are multiple, all separated by `&`, namely: - - - - The url-parameter `lat` is `51.0` in this instance - - The url-parameter `lon` is `4.3` in this instance - - The url-parameter `z` is `5` in this instance - - The url-parameter `test` is `true` in this instance - + - The url-parameter `lat` is `51.0` in this instance + - The url-parameter `lon` is `4.3` in this instance + - The url-parameter `z` is `5` in this instance + - The url-parameter `test` is `true` in this instance Finally, the URL-hash is the part after the `#`. It is `node/1234` in this case. @@ -94,12 +81,9 @@ The possible hashes are: `theme-menu:intro`,`theme-menu:download`,`theme-menu:copyright`,`theme-menu:share` +## language - - language ----------- - - The language to display MapComplete in. +The language to display MapComplete in. The user display language is determined in the following order: 1. Use the language as set by the URL-parameter `language` (following ISO 639-1 | ex. `language=nl`). This will _disable_ setting the language by the user @@ -115,391 +99,359 @@ Translations are never complete. If a translation in a certain language is missi This documentation is defined in the source code at [Locale.ts](/src/UI/i18n/Locale.ts#L35) - No default value set +No default value set - fs-translation-mode ---------------------- +## fs-translation-mode - If set, will show a translation button next to every string. +If set, will show a translation button next to every string. This documentation is defined in the source code at [Locale.ts](/src/UI/i18n/Locale.ts#L78) - The default value is _false_ +The default value is _false_ - fake-user ------------ +## fake-user - If true, 'dryrun' mode is activated and a fake user account is loaded +If true, 'dryrun' mode is activated and a fake user account is loaded This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L37) - The default value is _false_ +The default value is _false_ - fs-enable-login ------------------ +## fs-enable-login - Disables/Enables logging in and thus disables editing all together. This effectively puts MapComplete into read-only mode. +Disables/Enables logging in and thus disables editing all together. This effectively puts MapComplete into read-only mode. This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L99) - The default value is _true_ +The default value is _true_ - fs-search ------------ +## fs-search - Disables/Enables the search bar +Disables/Enables the search bar This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L114) - The default value is _true_ +The default value is _true_ - fs-background ---------------- +## fs-background - Disables/Enables the background layer control where a user can enable e.g. aerial imagery +Disables/Enables the background layer control where a user can enable e.g. aerial imagery This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L119) - The default value is _true_ +The default value is _true_ - fs-filter ------------ +## fs-filter - Disables/Enables the filter view where a user can enable/disable MapComplete-layers or filter for certain properties +Disables/Enables the filter view where a user can enable/disable MapComplete-layers or filter for certain properties This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L125) - The default value is _true_ +The default value is _true_ - fs-welcome-message --------------------- +## fs-welcome-message - Disables/enables the help menu or welcome message +Disables/enables the help menu or welcome message This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L131) - The default value is _true_ +The default value is _true_ - fs-community-index --------------------- +## fs-community-index - Disables/enables the button to get in touch with the community +Disables/enables the button to get in touch with the community This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L136) - The default value is _true_ +The default value is _true_ - fs-iframe-popout ------------------- +## fs-iframe-popout - Disables/Enables the extraLink button. By default, if in iframe mode and the welcome message is hidden, a popout button to the full mapcomplete instance is shown instead (unless disabled with this switch or another extraLink button is enabled) +Disables/Enables the extraLink button. By default, if in iframe mode and the welcome message is hidden, a popout button to the full mapcomplete instance is shown instead (unless disabled with this switch or another extraLink button is enabled) This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L141) - The default value is _true_ +The default value is _true_ - fs-homepage-link ------------------- +## fs-homepage-link - Disables/Enables the various links which go back to the index page with the theme overview +Disables/Enables the various links which go back to the index page with the theme overview This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L146) - The default value is _true_ +The default value is _true_ - fs-share-screen ------------------ +## fs-share-screen - Disables/Enables the 'Share-screen'-tab in the welcome message +Disables/Enables the 'Share-screen'-tab in the welcome message This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L151) - The default value is _true_ +The default value is _true_ - fs-geolocation ----------------- +## fs-geolocation - Disables/Enables the geolocation button +Disables/Enables the geolocation button This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L156) - The default value is _true_ +The default value is _true_ - fs-layers-enabled -------------------- +## fs-layers-enabled - If set to false, all layers will be disabled - except the explicitly enabled layers +If set to false, all layers will be disabled - except the explicitly enabled layers This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L162) - The default value is _true_ + + +The default value is _true_ + +## fs-all-questions + +Always show all questions + +This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L167) - fs-all-questions ------------------- +The default value is _false_ - Always show all questions +## fs-export -This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L165) +Enable the export as GeoJSON and CSV button - The default value is _false_ +This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L173) - fs-export ------------ +The default value is _true_ - Enable the export as GeoJSON and CSV button +## test -This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L171) +If true, 'dryrun' mode is activated. The app will behave as normal, except that changes to OSM will be printed onto the console instead of actually uploaded to osm.org - The default value is _true_ +This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L187) - test ------- +The default value is _false_ - If true, 'dryrun' mode is activated. The app will behave as normal, except that changes to OSM will be printed onto the console instead of actually uploaded to osm.org +## debug -This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L185) +If true, shows some extra debugging help such as all the available tags on every object - The default value is _false_ +This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L193) - debug -------- +The default value is _false_ - If true, shows some extra debugging help such as all the available tags on every object +## moreprivacy -This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L191) +If true, the location distance indication will not be written to the changeset and other privacy enhancing measures might be taken. - The default value is _false_ +This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L199) - moreprivacy -------------- +The default value is _false_ - If true, the location distance indication will not be written to the changeset and other privacy enhancing measures might be taken. +## overpassUrl -This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L197) +Point mapcomplete to a different overpass-instance. Example: https://overpass-api.de/api/interpreter - The default value is _false_ +This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L205) - overpassUrl -------------- +The default value is _https://overpass-api.de/api/interpreter,https://overpass.kumi.systems/api/interpreter,https://overpass.openstreetmap.ru/cgi/interpreter_ - Point mapcomplete to a different overpass-instance. Example: https://overpass-api.de/api/interpreter +## overpassTimeout -This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L203) +Set a different timeout (in seconds) for queries in overpass - The default value is _https://overpass-api.de/api/interpreter,https://overpass.kumi.systems/api/interpreter,https://overpass.openstreetmap.ru/cgi/interpreter_ +This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L216) - overpassTimeout ------------------ +The default value is _30_ - Set a different timeout (in seconds) for queries in overpass +## overpassMaxZoom -This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L214) + point to switch between OSM-api and overpass - The default value is _30_ +This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L224) - overpassMaxZoom ------------------ +The default value is _16_ - point to switch between OSM-api and overpass +## osmApiTileSize -This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L222) +Tilesize when the OSM-API is used to fetch data within a BBOX - The default value is _16_ +This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L232) - osmApiTileSize ----------------- +The default value is _17_ - Tilesize when the OSM-API is used to fetch data within a BBOX +## background -This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L230) +The id of the background layer to start with - The default value is _17_ +This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L239) - background ------------- +No default value set - The id of the background layer to start with +## z -This documentation is defined in the source code at [FeatureSwitchState.ts](/src/Logic/State/FeatureSwitchState.ts#L237) - - No default value set - - - - z ---- - - The initial/current zoom level +The initial/current zoom level This documentation is defined in the source code at [InitialMapPositioning.ts](/src/Logic/Actors/InitialMapPositioning.ts#L37) - The default value is _1_ +The default value is _1_ - lat ------ +## lat - The initial/current latitude +The initial/current latitude This documentation is defined in the source code at [InitialMapPositioning.ts](/src/Logic/Actors/InitialMapPositioning.ts#L37) - The default value is _0_ +The default value is _0_ - lon ------ +## lon - The initial/current longitude of the app +The initial/current longitude of the app This documentation is defined in the source code at [InitialMapPositioning.ts](/src/Logic/Actors/InitialMapPositioning.ts#L37) - The default value is _0_ +The default value is _0_ - oauth_token -------------- +## oauth_token - Used to complete the login +Used to complete the login This documentation is defined in the source code at [ThemeViewState.ts](/src/Models/ThemeViewState.ts#L174) - No default value set +No default value set - layer-public_bookcase ------------------------ +## layer-public_bookcase - Whether or not layer public_bookcase is shown +Whether or not layer public_bookcase is shown This documentation is defined in the source code at [FilteredLayer.ts](/src/Models/FilteredLayer.ts#L110) - The default value is _true_ + + +The default value is _true_ + +## filter-public_bookcase-kid-books + +State of filter kid-books + +This documentation is defined in the source code at [FilterConfig.ts](/src/Models/ThemeConfig/FilterConfig.ts#L162) - filter-public_bookcase-kid-books ----------------------------------- +The default value is _false_ - State of filter kid-books +## filter-public_bookcase-adult-books -This documentation is defined in the source code at [FilterConfig.ts](/src/Models/ThemeConfig/FilterConfig.ts#L161) +State of filter adult-books - The default value is _false_ +This documentation is defined in the source code at [FilterConfig.ts](/src/Models/ThemeConfig/FilterConfig.ts#L162) - filter-public_bookcase-adult-books ------------------------------------- +The default value is _false_ - State of filter adult-books +## filter-public_bookcase-inside -This documentation is defined in the source code at [FilterConfig.ts](/src/Models/ThemeConfig/FilterConfig.ts#L161) +State of filter inside - The default value is _false_ +This documentation is defined in the source code at [FilterConfig.ts](/src/Models/ThemeConfig/FilterConfig.ts#L162) - filter-public_bookcase-inside -------------------------------- +The default value is _0_ - State of filter inside +## filter-public_bookcase-has_image -This documentation is defined in the source code at [FilterConfig.ts](/src/Models/ThemeConfig/FilterConfig.ts#L161) +State of filter has_image - The default value is _0_ +This documentation is defined in the source code at [FilterConfig.ts](/src/Models/ThemeConfig/FilterConfig.ts#L162) - filter-public_bookcase-has_image ----------------------------------- +The default value is _0_ - State of filter has_image +## layer-note_import_public_bookcase -This documentation is defined in the source code at [FilterConfig.ts](/src/Models/ThemeConfig/FilterConfig.ts#L161) - - The default value is _0_ - - - - layer-note_import_public_bookcase ------------------------------------ - - Whether or not layer note_import_public_bookcase is shown +Whether or not layer note_import_public_bookcase is shown This documentation is defined in the source code at [FilteredLayer.ts](/src/Models/FilteredLayer.ts#L110) - The default value is _true_ + + +The default value is _true_ + +## mode + +The mode the application starts in, e.g. 'map', 'dashboard' or 'statistics' + +This documentation is defined in the source code at [generateDocs.ts](ervdvn/git2/MapComplete/scripts/generateDocs.ts#L420) - mode ------- +The default value is _map_ - The mode the application starts in, e.g. 'map', 'dashboard' or 'statistics' +## layer-<layer-id> -This documentation is defined in the source code at [generateDocs.ts](ervdvn/git2/MapComplete/scripts/generateDocs.ts#L439) +Wether or not the layer with id is shown - The default value is _map_ +This documentation is defined in the source code at [QueryParameterDocumentation.ts](/src/UI/QueryParameterDocumentation.ts#L60) - layer-<layer-id> ------------------------- +The default value is _true_ - Wether or not the layer with id is shown - -This documentation is defined in the source code at [QueryParameterDocumentation.ts](/src/UI/QueryParameterDocumentation.ts#L59) - - The default value is _true_ This document is autogenerated from [src/Logic/Web/QueryParameters.ts](https://github.com/pietervdvn/MapComplete/blob/develop/src/Logic/Web/QueryParameters.ts), [src/UI/QueryParameterDocumentation.ts](https://github.com/pietervdvn/MapComplete/blob/develop/src/UI/QueryParameterDocumentation.ts) diff --git a/Docs/builtin_units.md b/Docs/builtin_units.md index 98271dc067d..17260b49d49 100644 --- a/Docs/builtin_units.md +++ b/Docs/builtin_units.md @@ -1,11 +1,6 @@ [//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources) - - - Units -======= - - +# Units ## Table of contents 1. [power](#power) @@ -33,184 +28,152 @@ - [months](#months) - [years](#years) - unit ------- +## unit - +### power -### power +#### MW - +Alternative denominations: -#### MW + - megawatts + - megawatt - Alternative denominations: +#### kW - - megawatts - - megawatt - +Alternative denominations: -#### kW + - kilowatts + - kilowatt - Alternative denominations: +#### W - - kilowatts - - kilowatt - +Alternative denominations: -#### W + - watts + - watt - Alternative denominations: +#### GW - - watts - - watt - +Alternative denominations: -#### GW + - gigawatts + - gigawatt - Alternative denominations: +### voltage - - gigawatts - - gigawatt - +#### V -### voltage +Alternative denominations: - + - v + - volt + - voltage + - Volt -#### V +### current - Alternative denominations: +#### A - - v - - volt - - voltage - - Volt - +Alternative denominations: -### current + - a + - amp + - amperage + - A - +### distance -#### A +#### m - Alternative denominations: +*Default denomination* - - a - - amp - - amperage - - A - +Alternative denominations: -### distance + - meter + - meters - +#### cm -#### m +Alternative denominations: - *Default denomination* Alternative denominations: + - centimeter + - centimeters + - cms - - meter - - meters - +#### mm -#### cm +Alternative denominations: - Alternative denominations: + - millimeter + - millimeters - - centimeter - - centimeters - - cms - +#### ft -#### mm +Alternative denominations: - Alternative denominations: + - feet + - voet - - millimeter - - millimeters - +### speed -#### ft +#### kmh - Alternative denominations: +Alternative denominations: - - feet - - voet - + - km/u + - km/h + - kph -### speed +#### mph - +Default denomination in the following countries: -#### kmh + - gb + - us - Alternative denominations: +Alternative denominations: - - km/u - - km/h - - kph - + - m/u + - mh + - m/ph -#### mph +### duration - Default denomination in the following countries: +#### minutes - - gb - - us - Alternative denominations: +Alternative denominations: - - m/u - - mh - - m/ph - + - m + - min + - mins + - minuten + - mns -### duration +#### hours - +Alternative denominations: -#### minutes + - h + - hrs + - hours + - u + - uur + - uren - Alternative denominations: +#### days - - m - - min - - mins - - minuten - - mns - +Alternative denominations: -#### hours + - dys + - dagen + - dag - Alternative denominations: +#### weeks - - h - - hrs - - hours - - u - - uur - - uren - +#### months -#### days +#### years - Alternative denominations: - - - dys - - dagen - - dag - - -#### weeks - - - -#### months - - - -#### years - - This document is autogenerated from [assets/layers/unit/unit.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/unit/unit.json) From 8e9c03e258270b3168fd67974a2864f9736a5915 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Fri, 12 Jul 2024 03:17:15 +0200 Subject: [PATCH 25/45] Refactoring: port doc generation to generate markdown directly without UIElements --- scripts/generateDocs.ts | 143 ++++++++---------- src/Logic/ExtraFunctions.ts | 13 +- src/Logic/Osm/Changes.ts | 15 +- src/Logic/SimpleMetaTagger.ts | 16 +- src/Models/ThemeConfig/FilterConfig.ts | 13 +- src/Models/ThemeConfig/LayerConfig.ts | 125 +++++++-------- src/UI/Base/Hotkeys.ts | 142 +++++++++-------- src/UI/Base/TableOfContents.ts | 2 +- src/UI/BaseUIElement.ts | 2 + src/UI/BigComponents/AboutMapComplete.svelte | 4 +- src/UI/BigComponents/HotkeyTable.svelte | 55 +++++++ .../BigComponents/SelectedElementView.svelte | 2 +- src/UI/Image/Attribution.ts | 51 ------- src/UI/InputElement/Validators.ts | 12 +- .../Validators/WikidataValidator.ts | 4 +- src/UI/QueryParameterDocumentation.ts | 27 ++-- src/UI/ThemeViewGUI.svelte | 3 +- 17 files changed, 309 insertions(+), 320 deletions(-) create mode 100644 src/UI/BigComponents/HotkeyTable.svelte delete mode 100644 src/UI/Image/Attribution.ts diff --git a/scripts/generateDocs.ts b/scripts/generateDocs.ts index 649258cddbb..2eb5fdd474a 100644 --- a/scripts/generateDocs.ts +++ b/scripts/generateDocs.ts @@ -31,6 +31,7 @@ import { TagUtils } from "../src/Logic/Tags/TagUtils" import Script from "./Script" import { Changes } from "../src/Logic/Osm/Changes" import TableOfContents from "../src/UI/Base/TableOfContents" +import MarkdownUtils from "../src/Utils/MarkdownUtils" /** * Converts a markdown-file into a .json file, which a walkthrough/slideshow element can use @@ -56,15 +57,15 @@ class ToSlideshowJson { sections.push(currentSection) currentSection = [] } - line = line.replace('src="../../public/', 'src="./') - line = line.replace('src="../../', 'src="./') + line = line.replace("src=\"../../public/", "src=\"./") + line = line.replace("src=\"../../", "src=\"./") currentSection.push(line) } sections.push(currentSection) writeFileSync( this._target, JSON.stringify({ - sections: sections.map((s) => s.join("\n")).filter((s) => s.length > 0), + sections: sections.map((s) => s.join("\n")).filter((s) => s.length > 0) }) ) } @@ -83,7 +84,7 @@ class WikiPageGenerator { generate() { let wikiPage = - '{|class="wikitable sortable"\n' + + "{|class=\"wikitable sortable\"\n" + "! Name, link !! Genre !! Covered region !! Language !! Description !! Free materials !! Image\n" + "|-" @@ -140,8 +141,8 @@ export class GenerateDocs extends Script { mkdirSync("./Docs/Themes") } - this.WriteFile("./Docs/Tags_format.md", TagUtils.generateDocs(), [ - "src/Logic/Tags/TagUtils.ts", + this.WriteMarkdownFile("./Docs/Tags_format.md", TagUtils.generateDocs(), [ + "src/Logic/Tags/TagUtils.ts" ]) new ToSlideshowJson( @@ -166,58 +167,30 @@ export class GenerateDocs extends Script { }) this.WriteMarkdownFile("./Docs/SpecialRenderings.md", SpecialVisualizations.HelpMessage(), [ - "src/UI/SpecialVisualizations.ts", + "src/UI/SpecialVisualizations.ts" ]) - this.WriteFile( + this.WriteMarkdownFile( "./Docs/CalculatedTags.md", - new Combine([ - new Title("Metatags", 1), + [ + "# Metatags", SimpleMetaTaggers.HelpText(), - ExtraFunctions.HelpText(), - ]).SetClass("flex-col"), + ExtraFunctions.HelpText() + ].join("\n"), ["src/Logic/SimpleMetaTagger.ts", "src/Logic/ExtraFunctions.ts"] ) - this.WriteFile("./Docs/SpecialInputElements.md", Validators.HelpText(), [ - "src/UI/InputElement/Validators.ts", + this.WriteMarkdownFile("./Docs/SpecialInputElements.md", Validators.HelpText(), [ + "src/UI/InputElement/Validators.ts" ]) - this.WriteFile("./Docs/ChangesetMeta.md", Changes.getDocs(), [ + this.WriteMarkdownFile("./Docs/ChangesetMeta.md", Changes.getDocs(), [ "src/Logic/Osm/Changes.ts", - "src/Logic/Osm/ChangesetHandler.ts", + "src/Logic/Osm/ChangesetHandler.ts" ]) new WikiPageGenerator().generate() console.log("Generated docs") } - /** - * @deprecated - */ - private WriteFile( - filename, - html: string | BaseUIElement, - autogenSource: string[], - options?: { - noTableOfContents: boolean - } - ): void { - if (!html) { - return - } - - let md = new Combine([ - Translations.W(html), - "\n\nThis document is autogenerated from " + - autogenSource - .map( - (file) => - `[${file}](https://github.com/pietervdvn/MapComplete/blob/develop/${file})` - ) - .join(", "), - ]).AsMarkdown() - this.WriteMarkdownFile(filename, md, autogenSource, options) - } - private WriteMarkdownFile( filename: string, markdown: string, @@ -254,22 +227,30 @@ export class GenerateDocs extends Script { const warnAutomated = "[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)\n\n" - writeFileSync(filename, warnAutomated + md) + const generatedFrom = + [ + + "This document is autogenerated from", + autogenSource.map(s => `[${s}](https://github.com/pietervdvn/MapComplete/blob/develop/${s})`).join(", ") + ].join(" ") + + + writeFileSync(filename, warnAutomated + md+"\n\n" +generatedFrom+"\n") } private generateHotkeyDocs() { new ThemeViewState(new LayoutConfig(bookcases), new Set()) - this.WriteFile("./Docs/Hotkeys.md", Hotkeys.generateDocumentation(), []) + this.WriteMarkdownFile("./Docs/Hotkeys.md", Hotkeys.generateDocumentation(), ["src/UI/Base/Hotkeys.ts"]) } private generateBuiltinUnits() { const layer = new LayerConfig(unit, "units", true) - const els: (BaseUIElement | string)[] = [new Title(layer.id, 2)] + const els: string[] = ["## " + layer.id] for (const unit of layer.units) { - els.push(new Title(unit.quantity)) + els.push("### " + unit.quantity) for (const denomination of unit.denominations) { - els.push(new Title(denomination.canonical, 4)) + els.push("#### " + denomination.canonical) if (denomination.useIfNoUnitGiven === true) { els.push("*Default denomination*") } else if ( @@ -277,7 +258,7 @@ export class GenerateDocs extends Script { denomination.useIfNoUnitGiven.length > 0 ) { els.push("Default denomination in the following countries:") - els.push(new List(denomination.useIfNoUnitGiven)) + els.push(MarkdownUtils.list(denomination.useIfNoUnitGiven)) } if (denomination.prefix) { els.push("Prefixed") @@ -285,14 +266,14 @@ export class GenerateDocs extends Script { if (denomination.alternativeDenominations.length > 0) { els.push( "Alternative denominations:", - new List(denomination.alternativeDenominations) + MarkdownUtils.list(denomination.alternativeDenominations) ) } } } - this.WriteFile("./Docs/builtin_units.md", new Combine([new Title("Units", 1), ...els]), [ - `assets/layers/unit/unit.json`, + this.WriteMarkdownFile("./Docs/builtin_units.md", ["# Units", ...els].join("\n\n"), [ + `assets/layers/unit/unit.json` ]) } @@ -373,7 +354,7 @@ export class GenerateDocs extends Script { if (inlineSource !== undefined) { source = `assets/themes/${inlineSource}/${inlineSource}.json` } - this.WriteFile("./Docs/Layers/" + layer.id + ".md", element, [source]) + this.WriteMarkdownFile("./Docs/Layers/" + layer.id + ".md", element, [source]) }) } @@ -442,7 +423,7 @@ export class GenerateDocs extends Script { "The mode the application starts in, e.g. 'map', 'dashboard' or 'statistics'" ) - this.WriteFile( + this.WriteMarkdownFile( "./Docs/URL_Parameters.md", QueryParameterDocumentation.GenerateQueryParameterDocs(), ["src/Logic/Web/QueryParameters.ts", "src/UI/QueryParameterDocumentation.ts"] @@ -451,7 +432,7 @@ export class GenerateDocs extends Script { private generateBuiltinQuestions() { const qLayer = new LayerConfig(questions, "questions.json", true) - this.WriteFile( + this.WriteMarkdownFile( "./Docs/BuiltinQuestions.md", qLayer.GenerateDocumentation([], new Map(), []), ["assets/layers/questions/questions.json"] @@ -459,27 +440,25 @@ export class GenerateDocs extends Script { } private generateForTheme(theme: LayoutConfig): void { - const el = new Combine([ - new Title( - new Combine([ - theme.title, - "(", - new Link(theme.id, "https://mapcomplete.org/" + theme.id), - ")", - ]), - 2 - ), - theme.description, + const el = [ + ["##", + theme.title, + "(", + `[${theme.id}](https://mapcomplete.org/${theme.id})`, + ")" + ].join(" "), + + theme.description.txt, "This theme contains the following layers:", - new List( + MarkdownUtils.list( theme.layers .filter((l) => !l.id.startsWith("note_import_")) - .map((l) => new Link(l.id, "../Layers/" + l.id + ".md")) + .map((l) => (`[${l.id}](../Layers/${l.id}.md)`)) ), "Available languages:", - new List(theme.language.filter((ln) => ln !== "_context")), - ]).SetClass("flex flex-col") - this.WriteFile( + MarkdownUtils.list(theme.language.filter((ln) => ln !== "_context")) + ].join("\n") + this.WriteMarkdownFile( "./Docs/Themes/" + theme.id + ".md", el, [`assets/themes/${theme.id}/${theme.id}.json`], @@ -533,11 +512,11 @@ export class GenerateDocs extends Script { } } - const el = new Combine([ - new Title("Special and other useful layers", 1), + const el = [ + "# Special and other useful layers", "MapComplete has a few data layers available in the theme which have special properties through builtin-hooks. Furthermore, there are some normal layers (which are built from normal Theme-config files) but are so general that they get a mention here.", - new Title("Priviliged layers", 1), - new List(Constants.priviliged_layers.map((id) => "[" + id + "](#" + id + ")")), + "# Priviliged layers", + MarkdownUtils.list(Constants.priviliged_layers.map((id) => "[" + id + "](#" + id + ")")), ...Utils.NoNull( Constants.priviliged_layers.map((id) => AllSharedLayers.sharedLayers.get(id)) ).map((l) => @@ -549,15 +528,15 @@ export class GenerateDocs extends Script { Constants.no_include.indexOf(l.id) < 0 ) ), - new Title("Normal layers", 1), + "# Normal layers", "The following layers are included in MapComplete:", - new List( + MarkdownUtils.list( Array.from(AllSharedLayers.sharedLayers.keys()).map( - (id) => new Link(id, "./Layers/" + id + ".md") + (id) => `[${id}](./Layers/${id}.md)` ) - ), - ]) - this.WriteFile("./Docs/BuiltinLayers.md", el, ["src/Customizations/AllKnownLayouts.ts"]) + ) + ].join("\n\n") + this.WriteMarkdownFile("./Docs/BuiltinLayers.md", el, ["src/Customizations/AllKnownLayouts.ts"]) } } diff --git a/src/Logic/ExtraFunctions.ts b/src/Logic/ExtraFunctions.ts index aad9cc4042e..20c6723d9bf 100644 --- a/src/Logic/ExtraFunctions.ts +++ b/src/Logic/ExtraFunctions.ts @@ -5,6 +5,7 @@ import List from "../UI/Base/List" import Title from "../UI/Base/Title" import { BBox } from "./BBox" import { Feature, Geometry, MultiPolygon, Polygon } from "geojson" +import MarkdownUtils from "../Utils/MarkdownUtils" export interface ExtraFuncParams { /** @@ -517,16 +518,16 @@ export class ExtraFunctions { return record } - public static HelpText(): BaseUIElement { - const elems = [] + public static HelpText(): string { + const elems: string[] = [] for (const func of ExtraFunctions.allFuncs) { - elems.push(new Title(func._name, 3), func._doc, new List(func._args ?? [], true)) + elems.push("### "+func._name, func._doc, MarkdownUtils.list(func._args)) } - return new Combine([ + return [ ExtraFunctions.intro, - new List(ExtraFunctions.allFuncs.map((func) => `[${func._name}](#${func._name})`)), + MarkdownUtils.list(ExtraFunctions.allFuncs.map((func) => `[${func._name}](#${func._name})`)), ...elems, - ]) + ].join("\n") } } diff --git a/src/Logic/Osm/Changes.ts b/src/Logic/Osm/Changes.ts index 2ca478825ac..f53a9c2391f 100644 --- a/src/Logic/Osm/Changes.ts +++ b/src/Logic/Osm/Changes.ts @@ -21,6 +21,7 @@ import ChangeLocationAction from "./Actions/ChangeLocationAction" import ChangeTagAction from "./Actions/ChangeTagAction" import FeatureSwitchState from "../State/FeatureSwitchState" import DeleteAction from "./Actions/DeleteAction" +import MarkdownUtils from "../../Utils/MarkdownUtils" /** * Handles all changes made to OSM. @@ -116,7 +117,7 @@ export class Changes { return changes } - public static getDocs(): BaseUIElement { + public static getDocs(): string { function addSource(items: any[], src: string) { items.forEach((i) => { i["source"] = src @@ -188,24 +189,24 @@ export class Changes { ...ReplaceGeometryAction.metatags, ...SplitAction.metatags,*/ ] - return new Combine([ - new Title("Metatags on a changeset", 1), + return [ + "# Metatags on a changeset", "You might encounter the following metatags on a changeset:", - new Table( + MarkdownUtils.table( ["key", "value", "explanation", "source"], metatagsDocs.map(({ key, value, docs, source, changeType, specialMotivation }) => [ key ?? changeType?.join(", ") ?? "", value, - new Combine([ + [ docs, specialMotivation ? "This might give a reason per modified node or way" : "", - ]), + ].join("\n"), source, ]), ), - ]) + ].join("\n\n") } private static GetNeededIds(changes: ChangeDescription[]) { diff --git a/src/Logic/SimpleMetaTagger.ts b/src/Logic/SimpleMetaTagger.ts index ec7b838b7a5..84d4358d8db 100644 --- a/src/Logic/SimpleMetaTagger.ts +++ b/src/Logic/SimpleMetaTagger.ts @@ -766,29 +766,27 @@ export default class SimpleMetaTaggers { return somethingChanged } - public static HelpText(): BaseUIElement { - const subElements: (string | BaseUIElement)[] = [ - new Combine([ + public static HelpText(): string { + const subElements: string[] = [ + [ "Metatags are extra tags available, in order to display more data or to give better questions.", "They are calculated automatically on every feature when the data arrives in the webbrowser. This document gives an overview of the available metatags.", "**Hint:** when using metatags, add the [query parameter](URL_Parameters.md) `debug=true` to the URL. This will include a box in the popup for features which shows all the properties of the object", - ]).SetClass("flex-col"), + ].join("\n"), ] - subElements.push(new Title("Metatags calculated by MapComplete", 2)) + subElements.push("## Metatags calculated by MapComplete") subElements.push( - new FixedUiElement( "The following values are always calculated, by default, by MapComplete and are available automatically on all elements in every theme" - ) ) for (const metatag of SimpleMetaTaggers.metatags) { subElements.push( - new Title(metatag.keys.join(", "), 3), + "### "+metatag.keys.join(", "), metatag.doc, metatag.isLazy ? "This is a lazy metatag and is only calculated when needed" : "" ) } - return new Combine(subElements).SetClass("flex-col") + return subElements.join("\n\n") } } diff --git a/src/Models/ThemeConfig/FilterConfig.ts b/src/Models/ThemeConfig/FilterConfig.ts index f23e9943ca6..c09c2d9d3cf 100644 --- a/src/Models/ThemeConfig/FilterConfig.ts +++ b/src/Models/ThemeConfig/FilterConfig.ts @@ -11,6 +11,7 @@ import { RegexTag } from "../../Logic/Tags/RegexTag" import BaseUIElement from "../../UI/BaseUIElement" import Table from "../../UI/Base/Table" import Combine from "../../UI/Base/Combine" +import MarkdownUtils from "../../Utils/MarkdownUtils" export type FilterConfigOption = { question: Translation osmTags: TagsFilter | undefined @@ -199,20 +200,20 @@ export default class FilterConfig { ) } - public GenerateDocs(): BaseUIElement { + public GenerateDocs(): string { const hasField = this.options.some((opt) => opt.fields?.length > 0) - return new Table( + return MarkdownUtils.table( Utils.NoNull(["id", "question", "osmTags", hasField ? "fields" : undefined]), this.options.map((opt, i) => { const isDefault = this.options.length > 1 && (this.defaultSelection ?? 0) == i - return Utils.NoNull([ + return Utils.NoNull([ this.id + "." + i, isDefault - ? new Combine([opt.question.SetClass("font-bold"), "(default)"]) + ? `*${opt.question.txt}* (default)` : opt.question, - opt.osmTags?.asHumanString(false, false, {}) ?? "", + opt.osmTags?.asHumanString() ?? "", opt.fields?.length > 0 - ? new Combine(opt.fields.map((f) => f.name + " (" + f.type + ")")) + ? (opt.fields.map((f) => f.name + " (" + f.type + ")")).join(" ") : undefined, ]) }) diff --git a/src/Models/ThemeConfig/LayerConfig.ts b/src/Models/ThemeConfig/LayerConfig.ts index 3d7d1a14c8b..4e88dc5b9c1 100644 --- a/src/Models/ThemeConfig/LayerConfig.ts +++ b/src/Models/ThemeConfig/LayerConfig.ts @@ -14,13 +14,9 @@ import WithContextLoader from "./WithContextLoader" import LineRenderingConfig from "./LineRenderingConfig" import { TagRenderingConfigJson } from "./Json/TagRenderingConfigJson" import BaseUIElement from "../../UI/BaseUIElement" -import Combine from "../../UI/Base/Combine" -import Title from "../../UI/Base/Title" -import List from "../../UI/Base/List" import Link from "../../UI/Base/Link" import { Utils } from "../../Utils" import { TagsFilter } from "../../Logic/Tags/TagsFilter" -import Table from "../../UI/Base/Table" import FilterConfigJson from "./Json/FilterConfigJson" import { Overpass } from "../../Logic/Osm/Overpass" import { FixedUiElement } from "../../UI/Base/FixedUiElement" @@ -28,6 +24,7 @@ import { ImmutableStore } from "../../Logic/UIEventSource" import { OsmTags } from "../OsmFeature" import Constants from "../Constants" import { QuestionableTagRenderingConfigJson } from "./Json/QuestionableTagRenderingConfigJson" +import MarkdownUtils from "../../Utils/MarkdownUtils" export default class LayerConfig extends WithContextLoader { public static readonly syncSelectionAllowed = ["no", "local", "theme-only", "global"] as const @@ -90,7 +87,7 @@ export default class LayerConfig extends WithContextLoader { overpassScript: json.source["overpassScript"], isOsmCache: json.source["isOsmCache"], mercatorCrs: json.source["mercatorCrs"], - idKey: json.source["idKey"], + idKey: json.source["idKey"] }, json.id ) @@ -159,7 +156,7 @@ export default class LayerConfig extends WithContextLoader { let preciseInput: PreciseInput = { preferredBackground: ["photo"], snapToLayers: undefined, - maxSnapDistance: undefined, + maxSnapDistance: undefined } if (pr["preciseInput"] !== undefined) { throw ( @@ -172,7 +169,7 @@ export default class LayerConfig extends WithContextLoader { let snapToLayers = pr.snapToLayer preciseInput = { snapToLayers, - maxSnapDistance: pr.maxSnapDistance ?? 10, + maxSnapDistance: pr.maxSnapDistance ?? 10 } } @@ -184,7 +181,7 @@ export default class LayerConfig extends WithContextLoader { `${translationContext}.presets.${i}.description` ), preciseInput: preciseInput, - exampleImages: pr.exampleImages, + exampleImages: pr.exampleImages } return config }) @@ -306,7 +303,7 @@ export default class LayerConfig extends WithContextLoader { } this.titleIcons = this.ParseTagRenderings(json.titleIcons ?? [], { - readOnlyMode: true, + readOnlyMode: true }) this.title = this.tr("title", undefined, translationContext) @@ -366,8 +363,8 @@ export default class LayerConfig extends WithContextLoader { }[] = [], addedByDefault = false, canBeIncluded = true - ): BaseUIElement { - const extraProps: (string | BaseUIElement)[] = [] + ): string { + const extraProps: string[] = [] extraProps.push("This layer is shown at zoomlevel **" + this.minzoom + "** and higher") if (canBeIncluded) { @@ -404,13 +401,11 @@ export default class LayerConfig extends WithContextLoader { if (this.source?.geojsonSource !== undefined) { extraProps.push( - new Combine([ - Utils.runningFromConsole - ? "" - : undefined, + [ + "", "This layer is loaded from an external source, namely ", - new FixedUiElement(this.source.geojsonSource).SetClass("code"), - ]) + "`" + this.source.geojsonSource + "`" + ].join("\n\n") ) } } else { @@ -419,44 +414,44 @@ export default class LayerConfig extends WithContextLoader { ) } - let usingLayer: BaseUIElement[] = [] + let usingLayer: string[] = [] if (!addedByDefault) { if (usedInThemes?.length > 0) { usingLayer = [ - new Title("Themes using this layer", 2), - new List( + "## Themes using this layer", + MarkdownUtils.list( (usedInThemes ?? []).map( - (id) => new Link(id, "https://mapcomplete.org/" + id) + (id) => (`[${id}](https://mapcomplete.org/${id})`) ) - ), + ) ] } else if (this.source !== null) { - usingLayer = [new FixedUiElement("No themes use this layer")] + usingLayer = ["No themes use this layer"] } } for (const dep of dependencies) { extraProps.push( - new Combine([ + [ "This layer will automatically load ", - new Link(dep.neededLayer, "./" + dep.neededLayer + ".md"), + (`[${dep.neededLayer}](./${dep.neededLayer}.md)`), " into the layout as it depends on it: ", dep.reason, - "(" + dep.context + ")", - ]) + "(" + dep.context + ")" + ].join(" ") ) } for (const revDep of Utils.Dedup(layerIsNeededBy?.get(this.id) ?? [])) { extraProps.push( - new Combine([ + [ "This layer is needed as dependency for layer", - new Link(revDep, "#" + revDep), - ]) + (`[${revDep}](#${revDep})`) + ].join(" ") ) } - const tableRows = Utils.NoNull( + const tableRows: string[][] = Utils.NoNull( this.tagRenderings .map((tr) => tr.FreeformValues()) .map((values) => { @@ -467,32 +462,28 @@ export default class LayerConfig extends WithContextLoader { Link.OsmWiki(values.key, v, true).SetClass("mr-2") ) ?? ["_no preset options defined, or no values in them_"] return [ - new Combine([ - new Link( - "", - "https://taginfo.openstreetmap.org/keys/" + values.key + "#values", - true - ), - Link.OsmWiki(values.key), - ]).SetClass("flex"), + [ + `]`, + Link.OsmWiki(values.key) + ].join(" "), values.type === undefined ? "Multiple choice" - : new Link(values.type, "../SpecialInputElements.md#" + values.type), - new Combine(embedded).SetClass("flex"), + : `[${values.type}](../SpecialInputElements.md#${values.type})`, + embedded.join(" ") ] }) ) - let quickOverview: BaseUIElement = undefined + let quickOverview: string[] = [] if (tableRows.length > 0) { - quickOverview = new Combine([ - new FixedUiElement("Warning: ").SetClass("bold"), + quickOverview = [ + ("**Warning:**"), "this quick overview is incomplete", - new Table( + MarkdownUtils.table( ["attribute", "type", "values which are supported by this layer"], tableRows - ).SetClass("zebra-table"), - ]).SetClass("flex-col flex") + ) + ] } let iconImg: BaseUIElement = new FixedUiElement("") @@ -503,35 +494,36 @@ export default class LayerConfig extends WithContextLoader { .map( (mr) => mr.RenderIcon(new ImmutableStore({ id: "node/-1" }), { - includeBadges: false, + includeBadges: false }).html ) .find((i) => i !== undefined) } - let overpassLink: BaseUIElement = undefined + let overpassLink: string = undefined if (this.source !== undefined) { try { - overpassLink = new Link( - "Execute on overpass", + overpassLink = ( + "[Execute on overpass](" + Overpass.AsOverpassTurboLink(this.source.osmTags.optimize()) .replaceAll("(", "%28") .replaceAll(")", "%29") + + ")" ) } catch (e) { console.error("Could not generate overpasslink for " + this.id) } } - const filterDocs: (string | BaseUIElement)[] = [] + const filterDocs: (string)[] = [] if (this.filters.length > 0) { - filterDocs.push(new Title("Filters", 4)) + filterDocs.push("#### Filters") filterDocs.push(...this.filters.map((filter) => filter.GenerateDocs())) } - const tagsDescription = [] + const tagsDescription: string[] = [] if (this.source !== null) { - tagsDescription.push(new Title("Basic tags for this layer", 2)) + tagsDescription.push("## Basic tags for this layer") const neededTags = this.source.osmTags.optimize() if (neededTags["and"]) { @@ -549,8 +541,8 @@ export default class LayerConfig extends WithContextLoader { } else { tagsDescription.push( "Elements must match the expression **" + - neededTags.asHumanString(true, false, {}) + - "**" + neededTags.asHumanString(true, false, {}) + + "**" ) } @@ -559,20 +551,19 @@ export default class LayerConfig extends WithContextLoader { tagsDescription.push("This is a special layer - data is not sourced from OpenStreetMap") } - return new Combine([ - new Combine([new Title(this.id, 1), iconImg, this.description, "\n"]).SetClass( - "flex flex-col" - ), - new List(extraProps), + return [ + [ + "# " + this.id+"\n", + iconImg, + this.description, "\n"].join("\n\n"), + MarkdownUtils.list(extraProps), ...usingLayer, ...tagsDescription, - new Title("Supported attributes", 2), + "## Supported attributes", quickOverview, ...this.tagRenderings.map((tr) => tr.GenerateDocumentation()), - ...filterDocs, - ]) - .SetClass("flex-col") - .SetClass("link-underline") + ...filterDocs + ] .join("\n\n") } public CustomCodeSnippets(): string[] { diff --git a/src/UI/Base/Hotkeys.ts b/src/UI/Base/Hotkeys.ts index e00f9a09f3a..f43d1d5ba28 100644 --- a/src/UI/Base/Hotkeys.ts +++ b/src/UI/Base/Hotkeys.ts @@ -3,11 +3,13 @@ import Combine from "./Combine" import BaseUIElement from "../BaseUIElement" import Title from "./Title" import Table from "./Table" -import { UIEventSource } from "../../Logic/UIEventSource" +import { Store, UIEventSource } from "../../Logic/UIEventSource" import { VariableUiElement } from "./VariableUIElement" import { Translation } from "../i18n/Translation" import { FixedUiElement } from "./FixedUiElement" import Translations from "../i18n/Translations" +import MarkdownUtils from "../../Utils/MarkdownUtils" +import Locale from "../i18n/Locale" export default class Hotkeys { public static readonly _docs: UIEventSource< @@ -28,18 +30,18 @@ export default class Hotkeys { public static RegisterHotkey( key: ( | { - ctrl: string - } + ctrl: string + } | { - shift: string - } + shift: string + } | { - alt: string - } + alt: string + } | { - nomod: string - } - ) & { + nomod: string + } + ) & { onUp?: boolean }, documentation: string | Translation, @@ -61,7 +63,7 @@ export default class Hotkeys { return } if (key["ctrl"] !== undefined) { - document.addEventListener("keydown", function (event) { + document.addEventListener("keydown", function(event) { if (event.ctrlKey && event.key === keycode) { if (action() !== false) { event.preventDefault() @@ -69,7 +71,7 @@ export default class Hotkeys { } }) } else if (key["shift"] !== undefined) { - document.addEventListener(type, function (event) { + document.addEventListener(type, function(event) { if (Hotkeys.textElementSelected(event)) { // A text element is selected, we don't do anything special return @@ -81,7 +83,7 @@ export default class Hotkeys { } }) } else if (key["alt"] !== undefined) { - document.addEventListener(type, function (event) { + document.addEventListener(type, function(event) { if (event.altKey && event.key === keycode) { if (action() !== false) { event.preventDefault() @@ -89,7 +91,7 @@ export default class Hotkeys { } }) } else if (key["nomod"] !== undefined) { - document.addEventListener(type, function (event) { + document.addEventListener(type, function(event) { if (Hotkeys.textElementSelected(event) && keycode !== "Escape") { // A text element is selected, we don't do anything special return @@ -104,61 +106,71 @@ export default class Hotkeys { } } - static generateDocumentation(): BaseUIElement { - return new VariableUiElement( - Hotkeys._docs.mapD((docs) => { - let byKey: [string, string | Translation, Translation[] | undefined][] = docs - .map(({ key, documentation, alsoTriggeredBy }) => { - const modifiers = Object.keys(key).filter( - (k) => k !== "nomod" && k !== "onUp" - ) - let keycode: string = - key["ctrl"] ?? key["shift"] ?? key["alt"] ?? key["nomod"] - if (keycode.length == 1) { - keycode = keycode.toUpperCase() - } - if (keycode === " ") { - keycode = "Spacebar" - } - modifiers.push(keycode) - return <[string, string | Translation, Translation[] | undefined]>[ - modifiers.join("+"), - documentation, - alsoTriggeredBy, - ] - }) - .sort() - byKey = Utils.NoNull(byKey) - for (let i = byKey.length - 1; i > 0; i--) { - if (byKey[i - 1][0] === byKey[i][0]) { - byKey.splice(i, 1) - } + static prepareDocumentation(docs: { + key: { ctrl?: string; shift?: string; alt?: string; nomod?: string; onUp?: boolean } + documentation: string | Translation + alsoTriggeredBy: Translation[] + }[]){ + let byKey: [string, string | Translation, Translation[] | undefined][] = docs + .map(({ key, documentation, alsoTriggeredBy }) => { + const modifiers = Object.keys(key).filter( + (k) => k !== "nomod" && k !== "onUp" + ) + let keycode: string = + key["ctrl"] ?? key["shift"] ?? key["alt"] ?? key["nomod"] + if (keycode.length == 1) { + keycode = keycode.toUpperCase() } - const t = Translations.t.hotkeyDocumentation - return new Combine([ - new Title(t.title, 1), - t.intro, - new Table( - [t.key, t.action], - byKey.map(([key, doc, alsoTriggeredBy]) => { - let keyEl: BaseUIElement = new FixedUiElement(key).SetClass( - "literal-code w-fit h-fit" - ) - if (alsoTriggeredBy?.length > 0) { - keyEl = new Combine([keyEl, ...alsoTriggeredBy]).SetClass( - "flex gap-x-4 items-center" - ) - } - return [keyEl, doc] - }) - ), - ]) + if (keycode === " ") { + keycode = "Spacebar" + } + modifiers.push(keycode) + return <[string, string | Translation, Translation[] | undefined]>[ + modifiers.join("+"), + documentation, + alsoTriggeredBy + ] }) - ) + .sort() + byKey = Utils.NoNull(byKey) + for (let i = byKey.length - 1; i > 0; i--) { + if (byKey[i - 1][0] === byKey[i][0]) { + byKey.splice(i, 1) + } + } + return byKey } - static generateDocumentationDynamic(): BaseUIElement { - return new VariableUiElement(Hotkeys._docs.map((_) => Hotkeys.generateDocumentation())) + static generateDocumentationFor(docs: { + key: { ctrl?: string; shift?: string; alt?: string; nomod?: string; onUp?: boolean } + documentation: string | Translation + alsoTriggeredBy: Translation[] + }[], language: string): string { + + const tr = Translations.t.hotkeyDocumentation + function t(t: Translation | string){ + if(typeof t === "string"){ + return t + } + return t.textFor(language) + } + const contents: string[][] = this.prepareDocumentation(docs) + .map(([key, doc, alsoTriggeredBy]) => { + let keyEl: string = [key, ...(alsoTriggeredBy??[])].map(k => "`"+t(k)+"`").join(" ") + return [keyEl, t(doc)] + }) + return [ + "# "+t(tr.title), + t(tr.intro), + MarkdownUtils.table( + [t(tr.key), t(tr.action)], + contents + ) + ].join("\n") + } + + public static generateDocumentation(language?: string){ + return Hotkeys.generateDocumentationFor(Hotkeys._docs.data, language?? Locale.language.data) } private static textElementSelected(event: KeyboardEvent): boolean { diff --git a/src/UI/Base/TableOfContents.ts b/src/UI/Base/TableOfContents.ts index 5a362f83c62..4854023a35f 100644 --- a/src/UI/Base/TableOfContents.ts +++ b/src/UI/Base/TableOfContents.ts @@ -98,7 +98,7 @@ export default class TableOfContents { const intro = md.substring(0, firstTitleIndex) const splitPoint = intro.lastIndexOf("\n") - return md.substring(0, splitPoint) + toc + md.substring(splitPoint) + return md.substring(0, splitPoint) +"\n" toc + md.substring(splitPoint) } public static generateStructure( diff --git a/src/UI/BaseUIElement.ts b/src/UI/BaseUIElement.ts index 9a213b79f92..c07d7b36872 100644 --- a/src/UI/BaseUIElement.ts +++ b/src/UI/BaseUIElement.ts @@ -5,6 +5,8 @@ */ import { Utils } from "../Utils" +/* @deprecated + */ export default abstract class BaseUIElement { protected _constructedHtmlElement: HTMLElement protected isDestroyed = false diff --git a/src/UI/BigComponents/AboutMapComplete.svelte b/src/UI/BigComponents/AboutMapComplete.svelte index 06f663a85a1..d6ee3caab88 100644 --- a/src/UI/BigComponents/AboutMapComplete.svelte +++ b/src/UI/BigComponents/AboutMapComplete.svelte @@ -1,15 +1,12 @@ + + +
+ +
+ + + + + + + + + {#each byKey as [key, doc, alsoTriggeredBy] } + + + + + + {/each} +
+
+
+ {#if alsoTriggeredBy} +
+ +
{key}
+
{alsoTriggeredBy}
+ +
+ + {:else} +
{key}
+ {/if} +
+
+
diff --git a/src/UI/BigComponents/SelectedElementView.svelte b/src/UI/BigComponents/SelectedElementView.svelte index 128c37a144e..f3842b778e7 100644 --- a/src/UI/BigComponents/SelectedElementView.svelte +++ b/src/UI/BigComponents/SelectedElementView.svelte @@ -22,7 +22,7 @@ selectedElement.properties.id ) - let isAddNew = tags.mapD(t => t.id.startsWith(LastClickFeatureSource.newPointElementId)) + let isAddNew = tags.mapD(t => t?.id?.startsWith(LastClickFeatureSource.newPointElementId) ?? false) function getLayer(properties: Record) { if (properties.id === "settings") { diff --git a/src/UI/Image/Attribution.ts b/src/UI/Image/Attribution.ts deleted file mode 100644 index aa5a017d3eb..00000000000 --- a/src/UI/Image/Attribution.ts +++ /dev/null @@ -1,51 +0,0 @@ -import Combine from "../Base/Combine" -import Translations from "../i18n/Translations" -import BaseUIElement from "../BaseUIElement" -import { VariableUiElement } from "../Base/VariableUIElement" -import { Store } from "../../Logic/UIEventSource" -import { LicenseInfo } from "../../Logic/ImageProviders/LicenseInfo" -import { FixedUiElement } from "../Base/FixedUiElement" -import Link from "../Base/Link" - -/** - * Small box in the bottom left of an image, e.g. the image in a popup - */ -export default class Attribution extends VariableUiElement { - constructor(license: Store, icon: BaseUIElement, date?: Date) { - if (license === undefined) { - throw "No license source given in the attribution element" - } - super( - license.map((license: LicenseInfo) => { - if (license === undefined) { - return undefined - } - - let title = undefined - if (license?.title) { - title = Translations.W(license?.title).SetClass("block") - if (license.informationLocation) { - title = new Link(title, license.informationLocation.href, true) - } - } - - return new Combine([ - icon - ?.SetClass("block left") - .SetStyle("height: 2em; width: 2em; padding-right: 0.5em;"), - - new Combine([ - title, - Translations.W(license?.artist ?? "").SetClass("block font-bold"), - Translations.W(license?.license ?? license?.licenseShortName), - date === undefined - ? undefined - : new FixedUiElement(date.toLocaleDateString()), - ]).SetClass("flex flex-col"), - ]).SetClass( - "flex flex-row bg-black text-white text-sm absolute bottom-0 left-0 p-0.5 pl-5 pr-3 rounded-lg no-images" - ) - }) - ) - } -} diff --git a/src/UI/InputElement/Validators.ts b/src/UI/InputElement/Validators.ts index a7751a80a26..c3a3f332f75 100644 --- a/src/UI/InputElement/Validators.ts +++ b/src/UI/InputElement/Validators.ts @@ -99,15 +99,15 @@ export default class Validators { private static _byType = Validators._byTypeConstructor() - public static HelpText(): BaseUIElement { - const explanations: BaseUIElement[] = Validators.AllValidators.map((type) => - new Combine([new Title(type.name, 3), type.explanation]).SetClass("flex flex-col") + public static HelpText(): string { + const explanations: string[] = Validators.AllValidators.flatMap((type) => + ["### "+type.name, type.explanation] ) - return new Combine([ - new Title("Available types for text fields", 1), + return [ + "# Available types for text fields", "The listed types here trigger a special input element. Use them in `tagrendering.freeform.type` of your tagrendering to activate them", ...explanations, - ]).SetClass("flex flex-col") + ].join("\n") } private static _byTypeConstructor(): Map { diff --git a/src/UI/InputElement/Validators/WikidataValidator.ts b/src/UI/InputElement/Validators/WikidataValidator.ts index d94fe646a9a..cdd4fb02412 100644 --- a/src/UI/InputElement/Validators/WikidataValidator.ts +++ b/src/UI/InputElement/Validators/WikidataValidator.ts @@ -1,11 +1,11 @@ import Combine from "../../Base/Combine" import Wikidata, { WikidataResponse } from "../../../Logic/Web/Wikidata" -import WikidataSearchBox from "../../Wikipedia/WikidataSearchBox" import { Validator } from "../Validator" import { Translation } from "../../i18n/Translation" import Translations from "../../i18n/Translations" import Title from "../../Base/Title" import Table from "../../Base/Table" +import MarkdownUtils from "../../../Utils/MarkdownUtils" export default class WikidataValidator extends Validator { public static readonly _searchCache = new Map>() @@ -23,7 +23,7 @@ export default class WikidataValidator extends Validator { "options", new Combine([ "A JSON-object of type `{ removePrefixes: string[], removePostfixes: string[] }`.", - new Table( + MarkdownUtils.table( ["subarg", "doc"], [ [ diff --git a/src/UI/QueryParameterDocumentation.ts b/src/UI/QueryParameterDocumentation.ts index 0bb2e115be4..fb26a29a518 100644 --- a/src/UI/QueryParameterDocumentation.ts +++ b/src/UI/QueryParameterDocumentation.ts @@ -7,28 +7,29 @@ import { QueryParameters } from "../Logic/Web/QueryParameters" import FeatureSwitchState from "../Logic/State/FeatureSwitchState" import LayoutConfig from "../Models/ThemeConfig/LayoutConfig" import ThemeViewStateHashActor from "../Logic/Web/ThemeViewStateHashActor" +import MarkdownUtils from "../Utils/MarkdownUtils" export default class QueryParameterDocumentation { - private static QueryParamDocsIntro = [ - new Title("URL-parameters and URL-hash", 1), + private static QueryParamDocsIntro: string[] = [ + "# URL-parameters and URL-hash", "This document gives an overview of which URL-parameters can be used to influence MapComplete.", - new Title("What is a URL parameter?", 2), + "## What is a URL parameter?", '"URL-parameters are extra parts of the URL used to set the state.', "For example, if the url is `https://mapcomplete.org/cyclofix?lat=51.0&lon=4.3&z=5&test=true#node/1234`, " + "the URL-parameters are stated in the part between the `?` and the `#`. There are multiple, all separated by `&`, namely: ", - new List( + MarkdownUtils.list( [ "The url-parameter `lat` is `51.0` in this instance", "The url-parameter `lon` is `4.3` in this instance", "The url-parameter `z` is `5` in this instance", "The url-parameter `test` is `true` in this instance", - ].map((s) => Translations.W(s)) + ] ), "Finally, the URL-hash is the part after the `#`. It is `node/1234` in this case.", ] public static UrlParamDocs(): Map { - const dummyLayout = new LayoutConfig({ + const dummyLayout = new LayoutConfig({ id: ">theme<", title: { en: "" }, description: "A theme to generate docs with", @@ -59,26 +60,26 @@ export default class QueryParameterDocumentation { QueryParameters.GetQueryParameter( "layer-<layer-id>", "true", - "Wether or not the layer with id is shown" + "Whether the layer with id is shown" ) return QueryParameters.documentation } - public static GenerateQueryParameterDocs(): BaseUIElement { - const docs: (string | BaseUIElement)[] = [ + public static GenerateQueryParameterDocs(): string { + const docs: string[] = [ ...QueryParameterDocumentation.QueryParamDocsIntro, ...ThemeViewStateHashActor.documentation, ] this.UrlParamDocs().forEach((value, key) => { - const c = new Combine([ - new Title(key, 2), + const c = [ + "## "+key, value, QueryParameters.defaults[key] === undefined ? "No default value set" : `The default value is _${QueryParameters.defaults[key]}_`, - ]) + ].join("\n\n") docs.push(c) }) - return new Combine(docs).SetClass("flex flex-col") + return docs.join("\n\n") } } diff --git a/src/UI/ThemeViewGUI.svelte b/src/UI/ThemeViewGUI.svelte index c93f40e5cb9..70a32da8fd8 100644 --- a/src/UI/ThemeViewGUI.svelte +++ b/src/UI/ThemeViewGUI.svelte @@ -74,6 +74,7 @@ import AboutMapComplete from "./BigComponents/AboutMapComplete.svelte" import IfNot from "./Base/IfNot.svelte" import Hotkeys from "./Base/Hotkeys" + import HotkeyTable from "./BigComponents/HotkeyTable.svelte" export let state: ThemeViewState let layout = state.layout @@ -575,7 +576,7 @@
- +
From 37c1d46dd43a9d75326a4f9187d4bb3846b4a211 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Sun, 14 Jul 2024 03:10:10 +0200 Subject: [PATCH 26/45] Fix: error server properly names files, add status endpoint --- scripts/serverErrorReport.ts | 51 +++++++++++++++++++++++++----------- 1 file changed, 36 insertions(+), 15 deletions(-) diff --git a/scripts/serverErrorReport.ts b/scripts/serverErrorReport.ts index 6ab5bde44f4..1701783a791 100644 --- a/scripts/serverErrorReport.ts +++ b/scripts/serverErrorReport.ts @@ -1,6 +1,6 @@ import { Handler, Server } from "./server" import Script from "./Script" -import { appendFileSync, existsSync, mkdirSync, writeFileSync } from "fs" +import { appendFileSync, existsSync, mkdirSync, readFileSync, writeFileSync } from "fs" import { mkdir } from "node:fs" import ScriptUtils from "./ScriptUtils" @@ -9,6 +9,17 @@ class ServerErrorReport extends Script { super("A server which receives and logs error reports") } + private getFilename(logDirectory: string, d: Date): string { + return logDirectory + + "/" + + d.getUTCFullYear() + + "_" + + (d.getUTCMonth() + 1) + + "_" + + d.getUTCDate() + + ".lines.json" + } + async main(args: string[]): Promise { const logDirectory = args[0] ?? "./error_logs" console.log("Logging to directory", logDirectory) @@ -16,33 +27,43 @@ class ServerErrorReport extends Script { mkdirSync(logDirectory) console.log("Created this directory") } + let errorReport = 0 new Server(2348, {}, [ + { + mustMatch: "status", + mimetype: "application/json", + handle: async () => { + const filename = this.getFilename(logDirectory, new Date()) + let errorsToday = 0 + if (existsSync(filename)) { + const contents = readFileSync(filename, "utf8") + errorsToday = contents.split("\n").length + } + return JSON.stringify({ + "online": true, + "errors_today": errorsToday + }) + } + }, { mustMatch: "report", mimetype: "application/json", handle: async (_, queryParams, req, body) => { if (!body) { - throw '{"error": "No body; use a post request"}' + throw "{\"error\": \"No body; use a post request\"}" } console.log(body) const ip = req.headers["x-forwarded-for"] - const d = new Date() - const date = d.toISOString() - const file = - logDirectory + - "/" + - d.getUTCFullYear() + - "_" + - d.getUTCMonth() + - "_" + - d.getUTCDay() + - ".lines.json" + try { body = JSON.parse(body) } catch (e) { // could not parse, we'll save it as is } + const d = new Date() + const file = this.getFilename(logDirectory, d) + const date = d.toISOString() const contents = "\n" + JSON.stringify({ ip, index: errorReport, date, message: body }) if (!existsSync(file)) { @@ -52,8 +73,8 @@ class ServerErrorReport extends Script { } errorReport++ return `{"status":"ok", "nr": ${errorReport}}` - }, - }, + } + } ]) } } From 26adc1d06bbe656fddfe06a791aea7b17bc7f221 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Sun, 14 Jul 2024 03:34:07 +0200 Subject: [PATCH 27/45] Add status indicator to serverLod --- scripts/serverLdScrape.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/scripts/serverLdScrape.ts b/scripts/serverLdScrape.ts index de6d9cae6e1..661fe01ac2a 100644 --- a/scripts/serverLdScrape.ts +++ b/scripts/serverLdScrape.ts @@ -51,8 +51,19 @@ class ServerLdScrape extends Script { async main(args: string[]): Promise { const port = Number(args[0] ?? 2346) + const start = new Date() const cache: Record = {} new Server(port, {}, [ + {mustMatch: "status", + mimetype: "application/json", + handle: async () => { + return JSON.stringify({ + online: true, + cached_entries: Object.keys(cache).length, + booted: start, + uptime: Math.floor((new Date().getTime() - start.getTime()) / 1000) + }) + }}, { mustMatch: "extractgraph", mimetype: "application/ld+json", From bdea29eea1441f1a77c3d46c6e832a3f686edeba Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Sun, 14 Jul 2024 03:55:30 +0200 Subject: [PATCH 28/45] Cleanup of caddy file --- Docs/ServerConfig/hetzner/Caddyfile | 28 ++++------------------------ 1 file changed, 4 insertions(+), 24 deletions(-) diff --git a/Docs/ServerConfig/hetzner/Caddyfile b/Docs/ServerConfig/hetzner/Caddyfile index 1711a47063b..631efadd468 100644 --- a/Docs/ServerConfig/hetzner/Caddyfile +++ b/Docs/ServerConfig/hetzner/Caddyfile @@ -16,37 +16,17 @@ countrycoder.mapcomplete.org { } report.mapcomplete.org { - reverse_proxy { - to http://127.0.0.1:2348 - } + reverse_proxy http://127.0.0.1:2348 } studio.mapcomplete.org { - reverse_proxy { - to http://127.0.0.1:1235 - } + reverse_proxy http://127.0.0.1:1235 } lod.mapcomplete.org { - reverse_proxy /extractgraph { - to http://127.0.0.1:2346 - } + reverse_proxy http://127.0.0.1:2346 } ipinfo.mapcomplete.org { - reverse_proxy { - to 127.0.0.1:2347 - } -} - -proxy0.mapcomplete.org { - reverse_proxy { - to 109.128.57.178:2345 - } -} - -proxy.mapcomplete.org { - reverse_proxy { - to 109.128.57.178:7800 - } + reverse_proxy 127.0.0.1:2347 } From 811bcecea449f38f05dfe3d460bfcf0ab7311aa1 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Sun, 14 Jul 2024 03:55:47 +0200 Subject: [PATCH 29/45] Add simple status page --- package.json | 6 +- src/UI/Status/MCService.ts | 7 + src/UI/Status/ServiceIndicator.svelte | 22 ++ src/UI/Status/StatusGUI.svelte | 285 ++++++++++++++++++++++++++ src/UI/Status/StatusIcon.svelte | 26 +++ src/UI/StatusGui.ts | 11 + 6 files changed, 354 insertions(+), 3 deletions(-) create mode 100644 src/UI/Status/MCService.ts create mode 100644 src/UI/Status/ServiceIndicator.svelte create mode 100644 src/UI/Status/StatusGUI.svelte create mode 100644 src/UI/Status/StatusIcon.svelte create mode 100644 src/UI/StatusGui.ts diff --git a/package.json b/package.json index 790581339a7..b0cc06e68cd 100644 --- a/package.json +++ b/package.json @@ -21,9 +21,9 @@ "oauth_secret": "NBWGhWDrD3QDB35xtVuxv4aExnmIt4FA_WgeLtwxasg", "url": "https://www.openstreetmap.org" }, - "mvt_layer_server": "https://proxy.mapcomplete.org/public.{type}_{layer}/{z}/{x}/{y}.pbf", + "mvt_layer_server": "https://cache.mapcomplete.org/public.{type}_{layer}/{z}/{x}/{y}.pbf", "#summary_server": "Should be the endpoint; appending status.json should work", - "summary_server": "https://proxy0.mapcomplete.org/", + "summary_server": "https://cache.mapcomplete.org/", "geoip_server": "https://ipinfo.mapcomplete.org/", "error_server": "https://report.mapcomplete.org/report", "disabled:oauth_credentials": { @@ -93,7 +93,7 @@ "generate:charging-stations": "cd ./assets/layers/charging_station && vite-node csvToJson.ts && cd -", "clean:tests": "find . -type f -name \"*.doctest.ts\" | xargs -r rm", - "clean": "rm -rf .cache/ && (find *.html | grep -v \"^\\(404\\|index\\|land\\|privacy\\|test\\|studio\\|theme\\|style_test\\|statistics\\|leaderboard\\).html\" | xargs -r rm) && (ls | grep \"^index_[a-zA-Z_-]\\+\\.ts$\" | xargs -r rm)", + "clean": "rm -rf .cache/ && (find *.html | grep -v \"^\\(404\\|index\\|land\\|privacy\\|test\\|studio\\|theme\\|style_test\\|statistics\\|status\\|leaderboard\\).html\" | xargs -r rm) && (ls | grep \"^index_[a-zA-Z_-]\\+\\.ts$\" | xargs -r rm)", "generate:dependency-graph": "node_modules/.bin/depcruise --exclude \"^node_modules\" --output-type dot Logic/State/MapState.ts > dependencies.dot && dot dependencies.dot -T svg -o dependencies.svg && rm dependencies.dot", "scrapeWebsites": "vite-node scripts/importscripts/compareWebsiteData.ts -- ~/Downloads/ShopsWithWebsiteNodes.csv ~/data/scraped_websites/", diff --git a/src/UI/Status/MCService.ts b/src/UI/Status/MCService.ts new file mode 100644 index 00000000000..6734911bfd7 --- /dev/null +++ b/src/UI/Status/MCService.ts @@ -0,0 +1,7 @@ +import { Store } from "../../Logic/UIEventSource" + +export interface MCService { + name: string + status: Store<"online" | "degraded" | "offline">, + message?: Store +} diff --git a/src/UI/Status/ServiceIndicator.svelte b/src/UI/Status/ServiceIndicator.svelte new file mode 100644 index 00000000000..e7894668dc7 --- /dev/null +++ b/src/UI/Status/ServiceIndicator.svelte @@ -0,0 +1,22 @@ + + + + + +

{service.name}

+
+ {#if $msg} + {$msg} + {:else} + No extra information available + {/if} +
+
diff --git a/src/UI/Status/StatusGUI.svelte b/src/UI/Status/StatusGUI.svelte new file mode 100644 index 00000000000..c7ee49590fb --- /dev/null +++ b/src/UI/Status/StatusGUI.svelte @@ -0,0 +1,285 @@ + + +

MapComplete status indicators

+ +{#if $someLoading} + +{/if} + + +{#each services as service} + +{/each} diff --git a/src/UI/Status/StatusIcon.svelte b/src/UI/Status/StatusIcon.svelte new file mode 100644 index 00000000000..8db8604ce77 --- /dev/null +++ b/src/UI/Status/StatusIcon.svelte @@ -0,0 +1,26 @@ + + +{#if status === "online"} + +{:else if status === "degraded"} + +{:else if status === "offline"} + +{:else if status === undefined} + +{:else} + ? {status} +{/if} + diff --git a/src/UI/StatusGui.ts b/src/UI/StatusGui.ts new file mode 100644 index 00000000000..8cb3fa14ec4 --- /dev/null +++ b/src/UI/StatusGui.ts @@ -0,0 +1,11 @@ +import StatusGUI from "./Status/StatusGUI.svelte" + +export default class StatusGui { + public setup() { + new StatusGUI({ + target: document.getElementById("main"), + }) + } +} + +new StatusGui().setup() From 8bf18ece88aa66487f5f413e23dc514ccb5db151 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Thu, 11 Jul 2024 02:15:17 +0200 Subject: [PATCH 30/45] Formatting --- assets/layers/drinking_water/drinking_water.json | 4 ++-- assets/layers/firepit/firepit.json | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/assets/layers/drinking_water/drinking_water.json b/assets/layers/drinking_water/drinking_water.json index 296004db380..b238634ab5c 100644 --- a/assets/layers/drinking_water/drinking_water.json +++ b/assets/layers/drinking_water/drinking_water.json @@ -329,7 +329,7 @@ ] }, { - "builtin": "seasonal", + "builtin": "seasonal", "override": { "question": { "en": "Is this drinking water point available all year round?", @@ -338,7 +338,7 @@ } } }, - { + { "builtin": "opening_hours_24_7", "override": { "questionHint": { diff --git a/assets/layers/firepit/firepit.json b/assets/layers/firepit/firepit.json index 8e3a69c908f..1eb7a284fd1 100644 --- a/assets/layers/firepit/firepit.json +++ b/assets/layers/firepit/firepit.json @@ -123,5 +123,4 @@ "enableImproveAccuracy": true }, "deletion": true - } From 14fc4dec9319ee54391ca31c196390e7598be10e Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Thu, 11 Jul 2024 02:15:35 +0200 Subject: [PATCH 31/45] Fix svelte warning --- scripts/generateIncludedImages.ts | 2 +- src/assets/svg/Add.svelte | 2 +- src/assets/svg/AddSmall.svelte | 2 +- src/assets/svg/Add_pin.svelte | 2 +- src/assets/svg/Back.svelte | 2 +- src/assets/svg/Blocked.svelte | 2 +- src/assets/svg/Brick_wall_raw.svelte | 2 +- src/assets/svg/Brick_wall_round.svelte | 2 +- src/assets/svg/Brick_wall_square.svelte | 2 +- src/assets/svg/Bug.svelte | 2 +- src/assets/svg/Center.svelte | 2 +- src/assets/svg/Checkmark.svelte | 2 +- src/assets/svg/Circle.svelte | 2 +- src/assets/svg/Clock.svelte | 2 +- src/assets/svg/Close.svelte | 2 +- src/assets/svg/Community.svelte | 2 +- src/assets/svg/Compass.svelte | 2 +- src/assets/svg/Compass_arrow.svelte | 2 +- src/assets/svg/Confirm.svelte | 2 +- src/assets/svg/Copyright.svelte | 2 +- src/assets/svg/Cross.svelte | 2 +- src/assets/svg/Cross_bottom_right.svelte | 2 +- src/assets/svg/Crosshair.svelte | 2 +- src/assets/svg/Crosshair_locked.svelte | 2 +- src/assets/svg/Delete_icon.svelte | 2 +- src/assets/svg/Direction_gradient.svelte | 2 +- src/assets/svg/Direction_stroke.svelte | 2 +- src/assets/svg/Duplicate.svelte | 2 +- src/assets/svg/Elevator.svelte | 2 +- src/assets/svg/Elevator_wheelchair.svelte | 2 +- src/assets/svg/Envelope.svelte | 2 +- src/assets/svg/Eye.svelte | 2 +- src/assets/svg/Filter.svelte | 2 +- src/assets/svg/Filter_disable.svelte | 2 +- src/assets/svg/Floppy.svelte | 2 +- src/assets/svg/Gear.svelte | 2 +- src/assets/svg/Gender_bi.svelte | 2 +- src/assets/svg/Gender_female.svelte | 2 +- src/assets/svg/Gender_inter.svelte | 2 +- src/assets/svg/Gender_male.svelte | 2 +- src/assets/svg/Gender_queer.svelte | 2 +- src/assets/svg/Gender_trans.svelte | 2 +- src/assets/svg/Generic_map.svelte | 2 +- src/assets/svg/Github.svelte | 2 +- src/assets/svg/Gps_arrow.svelte | 2 +- src/assets/svg/Hand.svelte | 2 +- src/assets/svg/Help.svelte | 2 +- src/assets/svg/Home.svelte | 2 +- src/assets/svg/Invalid.svelte | 2 +- src/assets/svg/Josm_logo.svelte | 2 +- src/assets/svg/Layers.svelte | 2 +- src/assets/svg/Length_crosshair.svelte | 2 +- src/assets/svg/Liberapay.svelte | 2 +- src/assets/svg/Loading.svelte | 2 +- src/assets/svg/Location.svelte | 2 +- src/assets/svg/Location_empty.svelte | 2 +- src/assets/svg/Location_locked.svelte | 2 +- src/assets/svg/Location_refused.svelte | 2 +- src/assets/svg/Location_unlocked.svelte | 2 +- src/assets/svg/Login.svelte | 2 +- src/assets/svg/Logo.svelte | 2 +- src/assets/svg/Mangrove_logo.svelte | 2 +- src/assets/svg/Mapcomplete_logo.svelte | 2 +- src/assets/svg/Mapillary.svelte | 2 +- src/assets/svg/Mapillary_black.svelte | 2 +- src/assets/svg/Mastodon.svelte | 2 +- src/assets/svg/Min.svelte | 2 +- src/assets/svg/Move.svelte | 2 +- src/assets/svg/Move_arrows.svelte | 2 +- src/assets/svg/Move_confirm.svelte | 2 +- src/assets/svg/Move_not_allowed.svelte | 2 +- src/assets/svg/Not_found.svelte | 2 +- src/assets/svg/Note.svelte | 2 +- src/assets/svg/Osm_logo.svelte | 2 +- src/assets/svg/Osm_logo_us.svelte | 2 +- src/assets/svg/Party.svelte | 2 +- src/assets/svg/Pencil.svelte | 2 +- src/assets/svg/Person.svelte | 2 +- src/assets/svg/Pin.svelte | 2 +- src/assets/svg/Plantnet_logo.svelte | 2 +- src/assets/svg/Plus.svelte | 2 +- src/assets/svg/Pop_out.svelte | 2 +- src/assets/svg/Reload.svelte | 2 +- src/assets/svg/Relocation.svelte | 2 +- src/assets/svg/Resolved.svelte | 2 +- src/assets/svg/Ring.svelte | 2 +- src/assets/svg/Robot.svelte | 2 +- src/assets/svg/Scissors.svelte | 2 +- src/assets/svg/Search.svelte | 2 +- src/assets/svg/Search_disable.svelte | 2 +- src/assets/svg/SocialImageForeground.svelte | 2 +- src/assets/svg/Speech_bubble.svelte | 2 +- src/assets/svg/Speech_bubble_black_outline.svelte | 2 +- src/assets/svg/Square.svelte | 2 +- src/assets/svg/Square_rounded.svelte | 2 +- src/assets/svg/Star.svelte | 2 +- src/assets/svg/Star_half.svelte | 2 +- src/assets/svg/Star_outline.svelte | 2 +- src/assets/svg/Statistics.svelte | 2 +- src/assets/svg/Teardrop.svelte | 2 +- src/assets/svg/Teardrop_with_hole_green.svelte | 2 +- src/assets/svg/Translate.svelte | 2 +- src/assets/svg/Triangle.svelte | 2 +- src/assets/svg/Wikidata.svelte | 2 +- src/assets/svg/Wikimedia_commons_white.svelte | 2 +- src/assets/svg/Wikipedia.svelte | 2 +- 106 files changed, 106 insertions(+), 106 deletions(-) diff --git a/scripts/generateIncludedImages.ts b/scripts/generateIncludedImages.ts index d31dd6b17d4..3970d2a6236 100644 --- a/scripts/generateIncludedImages.ts +++ b/scripts/generateIncludedImages.ts @@ -42,7 +42,7 @@ function genImages(dryrun = false) { svg .replace( " export let color = "#000000" - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/AddSmall.svelte b/src/assets/svg/AddSmall.svelte index 89f910a010c..eb36f0a1937 100644 --- a/src/assets/svg/AddSmall.svelte +++ b/src/assets/svg/AddSmall.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Add_pin.svelte b/src/assets/svg/Add_pin.svelte index d10cd191cd2..574b397f3d3 100644 --- a/src/assets/svg/Add_pin.svelte +++ b/src/assets/svg/Add_pin.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Back.svelte b/src/assets/svg/Back.svelte index af4d5789244..0df1b57fa62 100644 --- a/src/assets/svg/Back.svelte +++ b/src/assets/svg/Back.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Blocked.svelte b/src/assets/svg/Blocked.svelte index 9da0f8061f2..9ab05cabb30 100644 --- a/src/assets/svg/Blocked.svelte +++ b/src/assets/svg/Blocked.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Brick_wall_raw.svelte b/src/assets/svg/Brick_wall_raw.svelte index e1e56693aad..b1608a88d6c 100644 --- a/src/assets/svg/Brick_wall_raw.svelte +++ b/src/assets/svg/Brick_wall_raw.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Brick_wall_round.svelte b/src/assets/svg/Brick_wall_round.svelte index 558153d9c5e..f684bd30abd 100644 --- a/src/assets/svg/Brick_wall_round.svelte +++ b/src/assets/svg/Brick_wall_round.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Brick_wall_square.svelte b/src/assets/svg/Brick_wall_square.svelte index 34cde8a853c..35c3e3ababf 100644 --- a/src/assets/svg/Brick_wall_square.svelte +++ b/src/assets/svg/Brick_wall_square.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Bug.svelte b/src/assets/svg/Bug.svelte index 0eec307f269..8d8a346d2b7 100644 --- a/src/assets/svg/Bug.svelte +++ b/src/assets/svg/Bug.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Center.svelte b/src/assets/svg/Center.svelte index 7b0d1ccecf0..cbb57550b2d 100644 --- a/src/assets/svg/Center.svelte +++ b/src/assets/svg/Center.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Checkmark.svelte b/src/assets/svg/Checkmark.svelte index 2d876917c8f..492cc888e4c 100644 --- a/src/assets/svg/Checkmark.svelte +++ b/src/assets/svg/Checkmark.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Circle.svelte b/src/assets/svg/Circle.svelte index f76f4cabc63..f1926471abb 100644 --- a/src/assets/svg/Circle.svelte +++ b/src/assets/svg/Circle.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Clock.svelte b/src/assets/svg/Clock.svelte index de7ec97a2b7..4cb468740c2 100644 --- a/src/assets/svg/Clock.svelte +++ b/src/assets/svg/Clock.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Close.svelte b/src/assets/svg/Close.svelte index f5a2ca467cc..461482959ef 100644 --- a/src/assets/svg/Close.svelte +++ b/src/assets/svg/Close.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Community.svelte b/src/assets/svg/Community.svelte index 67008db4813..879b44ec13b 100644 --- a/src/assets/svg/Community.svelte +++ b/src/assets/svg/Community.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Compass.svelte b/src/assets/svg/Compass.svelte index 40e53913532..d7475364791 100644 --- a/src/assets/svg/Compass.svelte +++ b/src/assets/svg/Compass.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Compass_arrow.svelte b/src/assets/svg/Compass_arrow.svelte index 575a8c45fe1..ab16bce1438 100644 --- a/src/assets/svg/Compass_arrow.svelte +++ b/src/assets/svg/Compass_arrow.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Confirm.svelte b/src/assets/svg/Confirm.svelte index e5f211f809f..94114048050 100644 --- a/src/assets/svg/Confirm.svelte +++ b/src/assets/svg/Confirm.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Copyright.svelte b/src/assets/svg/Copyright.svelte index 0a6d92b4e11..cf4dc3339b9 100644 --- a/src/assets/svg/Copyright.svelte +++ b/src/assets/svg/Copyright.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Cross.svelte b/src/assets/svg/Cross.svelte index f56405153d4..2bd77097a96 100644 --- a/src/assets/svg/Cross.svelte +++ b/src/assets/svg/Cross.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Cross_bottom_right.svelte b/src/assets/svg/Cross_bottom_right.svelte index c97c69fbe34..0ad5de22346 100644 --- a/src/assets/svg/Cross_bottom_right.svelte +++ b/src/assets/svg/Cross_bottom_right.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Crosshair.svelte b/src/assets/svg/Crosshair.svelte index 068fdd59051..c556101892e 100644 --- a/src/assets/svg/Crosshair.svelte +++ b/src/assets/svg/Crosshair.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Crosshair_locked.svelte b/src/assets/svg/Crosshair_locked.svelte index fd78232eeaa..ac804dcec45 100644 --- a/src/assets/svg/Crosshair_locked.svelte +++ b/src/assets/svg/Crosshair_locked.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Delete_icon.svelte b/src/assets/svg/Delete_icon.svelte index 86e0a85205c..0a47901de8d 100644 --- a/src/assets/svg/Delete_icon.svelte +++ b/src/assets/svg/Delete_icon.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Direction_gradient.svelte b/src/assets/svg/Direction_gradient.svelte index 140cdaca413..e9d7b36f19f 100644 --- a/src/assets/svg/Direction_gradient.svelte +++ b/src/assets/svg/Direction_gradient.svelte @@ -1,4 +1,4 @@ - Created by potrace 1.15, written by Peter Selinger 2001-2017 image/svg+xml \ No newline at end of file + Created by potrace 1.15, written by Peter Selinger 2001-2017 image/svg+xml \ No newline at end of file diff --git a/src/assets/svg/Direction_stroke.svelte b/src/assets/svg/Direction_stroke.svelte index 255da201ffe..c6e5a51af28 100644 --- a/src/assets/svg/Direction_stroke.svelte +++ b/src/assets/svg/Direction_stroke.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Duplicate.svelte b/src/assets/svg/Duplicate.svelte index b5cde63c268..a15278f5915 100644 --- a/src/assets/svg/Duplicate.svelte +++ b/src/assets/svg/Duplicate.svelte @@ -1,4 +1,4 @@ - OpenStreetMap logo 2011 image/svg+xml OpenStreetMap logo 2011 Ken Vermette April 2011 OpenStreetMap.org Replacement logo for OpenStreetMap Foundation OSM openstreetmap logo http://wiki.openstreetmap.org/wiki/File:Public-images-osm_logo.svg \ No newline at end of file + OpenStreetMap logo 2011 image/svg+xml OpenStreetMap logo 2011 Ken Vermette April 2011 OpenStreetMap.org Replacement logo for OpenStreetMap Foundation OSM openstreetmap logo http://wiki.openstreetmap.org/wiki/File:Public-images-osm_logo.svg \ No newline at end of file diff --git a/src/assets/svg/Elevator.svelte b/src/assets/svg/Elevator.svelte index 74887336829..65d657c1287 100644 --- a/src/assets/svg/Elevator.svelte +++ b/src/assets/svg/Elevator.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Elevator_wheelchair.svelte b/src/assets/svg/Elevator_wheelchair.svelte index 274a49749cd..c4de3539d0d 100644 --- a/src/assets/svg/Elevator_wheelchair.svelte +++ b/src/assets/svg/Elevator_wheelchair.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Envelope.svelte b/src/assets/svg/Envelope.svelte index dcc10786f76..7a53dcf7345 100644 --- a/src/assets/svg/Envelope.svelte +++ b/src/assets/svg/Envelope.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Eye.svelte b/src/assets/svg/Eye.svelte index 905f4778be8..2f6d1ae0806 100644 --- a/src/assets/svg/Eye.svelte +++ b/src/assets/svg/Eye.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Filter.svelte b/src/assets/svg/Filter.svelte index a919d07a8cf..a129092a762 100644 --- a/src/assets/svg/Filter.svelte +++ b/src/assets/svg/Filter.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Filter_disable.svelte b/src/assets/svg/Filter_disable.svelte index 19a6b552f3a..b0d3d4c0117 100644 --- a/src/assets/svg/Filter_disable.svelte +++ b/src/assets/svg/Filter_disable.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Floppy.svelte b/src/assets/svg/Floppy.svelte index 2baa6224c6f..c84d5b74145 100644 --- a/src/assets/svg/Floppy.svelte +++ b/src/assets/svg/Floppy.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Gear.svelte b/src/assets/svg/Gear.svelte index 7d0df691e0a..dfbbc69b088 100644 --- a/src/assets/svg/Gear.svelte +++ b/src/assets/svg/Gear.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Gender_bi.svelte b/src/assets/svg/Gender_bi.svelte index 0b76ac5ba3d..d92058fbf37 100644 --- a/src/assets/svg/Gender_bi.svelte +++ b/src/assets/svg/Gender_bi.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Gender_female.svelte b/src/assets/svg/Gender_female.svelte index 73ad345b00f..b6dab543fcf 100644 --- a/src/assets/svg/Gender_female.svelte +++ b/src/assets/svg/Gender_female.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Gender_inter.svelte b/src/assets/svg/Gender_inter.svelte index 780318a9662..fd5a17f993f 100644 --- a/src/assets/svg/Gender_inter.svelte +++ b/src/assets/svg/Gender_inter.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Gender_male.svelte b/src/assets/svg/Gender_male.svelte index efff7b77c29..1893849bc04 100644 --- a/src/assets/svg/Gender_male.svelte +++ b/src/assets/svg/Gender_male.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Gender_queer.svelte b/src/assets/svg/Gender_queer.svelte index 2beba09e4e5..800e1fa7fa8 100644 --- a/src/assets/svg/Gender_queer.svelte +++ b/src/assets/svg/Gender_queer.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Gender_trans.svelte b/src/assets/svg/Gender_trans.svelte index dc15f947d65..72f04626e43 100644 --- a/src/assets/svg/Gender_trans.svelte +++ b/src/assets/svg/Gender_trans.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Generic_map.svelte b/src/assets/svg/Generic_map.svelte index 35a14192851..9367e5fd1f3 100644 --- a/src/assets/svg/Generic_map.svelte +++ b/src/assets/svg/Generic_map.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Github.svelte b/src/assets/svg/Github.svelte index 0d9750727f7..39cfc120405 100644 --- a/src/assets/svg/Github.svelte +++ b/src/assets/svg/Github.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Gps_arrow.svelte b/src/assets/svg/Gps_arrow.svelte index c2021e27ace..83a604e8bed 100644 --- a/src/assets/svg/Gps_arrow.svelte +++ b/src/assets/svg/Gps_arrow.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Hand.svelte b/src/assets/svg/Hand.svelte index 300ffcd8066..599894a84a3 100644 --- a/src/assets/svg/Hand.svelte +++ b/src/assets/svg/Hand.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Help.svelte b/src/assets/svg/Help.svelte index f8e5ebb3f8e..5fd359be7ee 100644 --- a/src/assets/svg/Help.svelte +++ b/src/assets/svg/Help.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Home.svelte b/src/assets/svg/Home.svelte index 6f3419c50e3..a78d31f22f4 100644 --- a/src/assets/svg/Home.svelte +++ b/src/assets/svg/Home.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Invalid.svelte b/src/assets/svg/Invalid.svelte index 16920e190b5..d610999fe80 100644 --- a/src/assets/svg/Invalid.svelte +++ b/src/assets/svg/Invalid.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Josm_logo.svelte b/src/assets/svg/Josm_logo.svelte index b778c8c7971..5547957ec33 100644 --- a/src/assets/svg/Josm_logo.svelte +++ b/src/assets/svg/Josm_logo.svelte @@ -1,4 +1,4 @@ - JOSM Logotype 2019 image/svg+xml JOSM Logotype 2019 2019-08-05 Diamond00744 Public Domain \ No newline at end of file + JOSM Logotype 2019 image/svg+xml JOSM Logotype 2019 2019-08-05 Diamond00744 Public Domain \ No newline at end of file diff --git a/src/assets/svg/Layers.svelte b/src/assets/svg/Layers.svelte index a9467937340..f490c002d73 100644 --- a/src/assets/svg/Layers.svelte +++ b/src/assets/svg/Layers.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Length_crosshair.svelte b/src/assets/svg/Length_crosshair.svelte index 8f9189990d9..1c2257687f6 100644 --- a/src/assets/svg/Length_crosshair.svelte +++ b/src/assets/svg/Length_crosshair.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Liberapay.svelte b/src/assets/svg/Liberapay.svelte index 6ccc2efd942..e72ebb7070a 100644 --- a/src/assets/svg/Liberapay.svelte +++ b/src/assets/svg/Liberapay.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Loading.svelte b/src/assets/svg/Loading.svelte index e1c9382a34d..db4869b87c9 100644 --- a/src/assets/svg/Loading.svelte +++ b/src/assets/svg/Loading.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Location.svelte b/src/assets/svg/Location.svelte index 1b9d878175c..546845bfe0e 100644 --- a/src/assets/svg/Location.svelte +++ b/src/assets/svg/Location.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Location_empty.svelte b/src/assets/svg/Location_empty.svelte index 44666e098cc..596826c0651 100644 --- a/src/assets/svg/Location_empty.svelte +++ b/src/assets/svg/Location_empty.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Location_locked.svelte b/src/assets/svg/Location_locked.svelte index 3369ba9336b..33f041df0a9 100644 --- a/src/assets/svg/Location_locked.svelte +++ b/src/assets/svg/Location_locked.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Location_refused.svelte b/src/assets/svg/Location_refused.svelte index a9901568e36..5c6b0a28caf 100644 --- a/src/assets/svg/Location_refused.svelte +++ b/src/assets/svg/Location_refused.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Location_unlocked.svelte b/src/assets/svg/Location_unlocked.svelte index ef02d45e74b..5a3232d1b4c 100644 --- a/src/assets/svg/Location_unlocked.svelte +++ b/src/assets/svg/Location_unlocked.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Login.svelte b/src/assets/svg/Login.svelte index 38a929bf155..947f8fe42b9 100644 --- a/src/assets/svg/Login.svelte +++ b/src/assets/svg/Login.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Logo.svelte b/src/assets/svg/Logo.svelte index a9ce06c3dca..016a04df700 100644 --- a/src/assets/svg/Logo.svelte +++ b/src/assets/svg/Logo.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Mangrove_logo.svelte b/src/assets/svg/Mangrove_logo.svelte index 97eff37cb0d..b50345f5306 100644 --- a/src/assets/svg/Mangrove_logo.svelte +++ b/src/assets/svg/Mangrove_logo.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Mapcomplete_logo.svelte b/src/assets/svg/Mapcomplete_logo.svelte index 62d5d5d7c3e..d921a97600c 100644 --- a/src/assets/svg/Mapcomplete_logo.svelte +++ b/src/assets/svg/Mapcomplete_logo.svelte @@ -1,4 +1,4 @@ - OpenStreetMap logo 2011 image/svg+xml OpenStreetMap logo 2011 Ken Vermette April 2011 OpenStreetMap.org Replacement logo for OpenStreetMap Foundation OSM openstreetmap logo http://wiki.openstreetmap.org/wiki/File:Public-images-osm_logo.svg \ No newline at end of file + OpenStreetMap logo 2011 image/svg+xml OpenStreetMap logo 2011 Ken Vermette April 2011 OpenStreetMap.org Replacement logo for OpenStreetMap Foundation OSM openstreetmap logo http://wiki.openstreetmap.org/wiki/File:Public-images-osm_logo.svg \ No newline at end of file diff --git a/src/assets/svg/Mapillary.svelte b/src/assets/svg/Mapillary.svelte index 3b2ac8ccce6..34e1022b558 100644 --- a/src/assets/svg/Mapillary.svelte +++ b/src/assets/svg/Mapillary.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Mapillary_black.svelte b/src/assets/svg/Mapillary_black.svelte index e05c8e0fb01..3f43185f70c 100644 --- a/src/assets/svg/Mapillary_black.svelte +++ b/src/assets/svg/Mapillary_black.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Mastodon.svelte b/src/assets/svg/Mastodon.svelte index aefa5a5f55e..70e3e789ca3 100644 --- a/src/assets/svg/Mastodon.svelte +++ b/src/assets/svg/Mastodon.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Min.svelte b/src/assets/svg/Min.svelte index 83884e49292..a6336721f8e 100644 --- a/src/assets/svg/Min.svelte +++ b/src/assets/svg/Min.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Move.svelte b/src/assets/svg/Move.svelte index 0b631161a3b..94f54722ee1 100644 --- a/src/assets/svg/Move.svelte +++ b/src/assets/svg/Move.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Move_arrows.svelte b/src/assets/svg/Move_arrows.svelte index 57881f048dc..2d6f287d196 100644 --- a/src/assets/svg/Move_arrows.svelte +++ b/src/assets/svg/Move_arrows.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Move_confirm.svelte b/src/assets/svg/Move_confirm.svelte index cb57c6f55cf..9ebc5803836 100644 --- a/src/assets/svg/Move_confirm.svelte +++ b/src/assets/svg/Move_confirm.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Move_not_allowed.svelte b/src/assets/svg/Move_not_allowed.svelte index 99e3cb5c6d2..5ed8b5e9051 100644 --- a/src/assets/svg/Move_not_allowed.svelte +++ b/src/assets/svg/Move_not_allowed.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Not_found.svelte b/src/assets/svg/Not_found.svelte index 59cbfee92bf..318161941a6 100644 --- a/src/assets/svg/Not_found.svelte +++ b/src/assets/svg/Not_found.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Note.svelte b/src/assets/svg/Note.svelte index 413225cd99f..b1184b4a531 100644 --- a/src/assets/svg/Note.svelte +++ b/src/assets/svg/Note.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Osm_logo.svelte b/src/assets/svg/Osm_logo.svelte index 036127ee349..182b0de8139 100644 --- a/src/assets/svg/Osm_logo.svelte +++ b/src/assets/svg/Osm_logo.svelte @@ -1,4 +1,4 @@ - OpenStreetMap logo 2011 image/svg+xml OpenStreetMap logo 2011 Ken Vermette April 2011 OpenStreetMap.org Replacement logo for OpenStreetMap Foundation OSM openstreetmap logo http://wiki.openstreetmap.org/wiki/File:Public-images-osm_logo.svg 01011001 00110101 10010011 01011001 00110101 10010011 \ No newline at end of file + OpenStreetMap logo 2011 image/svg+xml OpenStreetMap logo 2011 Ken Vermette April 2011 OpenStreetMap.org Replacement logo for OpenStreetMap Foundation OSM openstreetmap logo http://wiki.openstreetmap.org/wiki/File:Public-images-osm_logo.svg 01011001 00110101 10010011 01011001 00110101 10010011 \ No newline at end of file diff --git a/src/assets/svg/Osm_logo_us.svelte b/src/assets/svg/Osm_logo_us.svelte index aeb1d5f9081..3977c69f597 100644 --- a/src/assets/svg/Osm_logo_us.svelte +++ b/src/assets/svg/Osm_logo_us.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Party.svelte b/src/assets/svg/Party.svelte index 89a051b4cc6..e000ab93ae1 100644 --- a/src/assets/svg/Party.svelte +++ b/src/assets/svg/Party.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Pencil.svelte b/src/assets/svg/Pencil.svelte index 58d786038e4..f26eab19374 100644 --- a/src/assets/svg/Pencil.svelte +++ b/src/assets/svg/Pencil.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Person.svelte b/src/assets/svg/Person.svelte index 18527a7c42c..3b6c2d77149 100644 --- a/src/assets/svg/Person.svelte +++ b/src/assets/svg/Person.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Pin.svelte b/src/assets/svg/Pin.svelte index d935a9fe9a2..c5125406e17 100644 --- a/src/assets/svg/Pin.svelte +++ b/src/assets/svg/Pin.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Plantnet_logo.svelte b/src/assets/svg/Plantnet_logo.svelte index 5b680b4b9ed..91bc89b0bc7 100644 --- a/src/assets/svg/Plantnet_logo.svelte +++ b/src/assets/svg/Plantnet_logo.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Plus.svelte b/src/assets/svg/Plus.svelte index 34f3ec93bb8..6f0a183225c 100644 --- a/src/assets/svg/Plus.svelte +++ b/src/assets/svg/Plus.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Pop_out.svelte b/src/assets/svg/Pop_out.svelte index 21fbb0263ce..48baa120fed 100644 --- a/src/assets/svg/Pop_out.svelte +++ b/src/assets/svg/Pop_out.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Reload.svelte b/src/assets/svg/Reload.svelte index 4ca03a9c28b..605739d74cd 100644 --- a/src/assets/svg/Reload.svelte +++ b/src/assets/svg/Reload.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Relocation.svelte b/src/assets/svg/Relocation.svelte index f0f12a0ad72..c7ec9917ad4 100644 --- a/src/assets/svg/Relocation.svelte +++ b/src/assets/svg/Relocation.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Resolved.svelte b/src/assets/svg/Resolved.svelte index ea25848167a..77a2205ca61 100644 --- a/src/assets/svg/Resolved.svelte +++ b/src/assets/svg/Resolved.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Ring.svelte b/src/assets/svg/Ring.svelte index 65d921e1105..829dd29c8cb 100644 --- a/src/assets/svg/Ring.svelte +++ b/src/assets/svg/Ring.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Robot.svelte b/src/assets/svg/Robot.svelte index 410408e7e35..4eb8214c46b 100644 --- a/src/assets/svg/Robot.svelte +++ b/src/assets/svg/Robot.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Scissors.svelte b/src/assets/svg/Scissors.svelte index e38740320a8..e1ee24aac6f 100644 --- a/src/assets/svg/Scissors.svelte +++ b/src/assets/svg/Scissors.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Search.svelte b/src/assets/svg/Search.svelte index 581f2d93416..4a4b019608a 100644 --- a/src/assets/svg/Search.svelte +++ b/src/assets/svg/Search.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Search_disable.svelte b/src/assets/svg/Search_disable.svelte index 067b0778764..a83ec613cef 100644 --- a/src/assets/svg/Search_disable.svelte +++ b/src/assets/svg/Search_disable.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/SocialImageForeground.svelte b/src/assets/svg/SocialImageForeground.svelte index 7a670744649..65a857af242 100644 --- a/src/assets/svg/SocialImageForeground.svelte +++ b/src/assets/svg/SocialImageForeground.svelte @@ -1,4 +1,4 @@ - image/svg+xml \ No newline at end of file + image/svg+xml \ No newline at end of file diff --git a/src/assets/svg/Speech_bubble.svelte b/src/assets/svg/Speech_bubble.svelte index 085d0586d37..c0dab438d75 100644 --- a/src/assets/svg/Speech_bubble.svelte +++ b/src/assets/svg/Speech_bubble.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Speech_bubble_black_outline.svelte b/src/assets/svg/Speech_bubble_black_outline.svelte index 69a052f698f..939c5ec92db 100644 --- a/src/assets/svg/Speech_bubble_black_outline.svelte +++ b/src/assets/svg/Speech_bubble_black_outline.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Square.svelte b/src/assets/svg/Square.svelte index 1ce7ace8e42..67a2d554d7a 100644 --- a/src/assets/svg/Square.svelte +++ b/src/assets/svg/Square.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Square_rounded.svelte b/src/assets/svg/Square_rounded.svelte index 135e304ed6c..2adb231dfaa 100644 --- a/src/assets/svg/Square_rounded.svelte +++ b/src/assets/svg/Square_rounded.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Star.svelte b/src/assets/svg/Star.svelte index 9314766365c..651fdc81b3e 100644 --- a/src/assets/svg/Star.svelte +++ b/src/assets/svg/Star.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Star_half.svelte b/src/assets/svg/Star_half.svelte index f97d75e8de0..536f3aada87 100644 --- a/src/assets/svg/Star_half.svelte +++ b/src/assets/svg/Star_half.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Star_outline.svelte b/src/assets/svg/Star_outline.svelte index 96f57886fbb..eb068297d64 100644 --- a/src/assets/svg/Star_outline.svelte +++ b/src/assets/svg/Star_outline.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Statistics.svelte b/src/assets/svg/Statistics.svelte index 924408736b8..f0e8938dd19 100644 --- a/src/assets/svg/Statistics.svelte +++ b/src/assets/svg/Statistics.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Teardrop.svelte b/src/assets/svg/Teardrop.svelte index a6e0e4a2cb2..7554ebe204b 100644 --- a/src/assets/svg/Teardrop.svelte +++ b/src/assets/svg/Teardrop.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Teardrop_with_hole_green.svelte b/src/assets/svg/Teardrop_with_hole_green.svelte index c9bebd31bcd..21a8ac09b3e 100644 --- a/src/assets/svg/Teardrop_with_hole_green.svelte +++ b/src/assets/svg/Teardrop_with_hole_green.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Translate.svelte b/src/assets/svg/Translate.svelte index 35b02fa0e41..caa125d4044 100644 --- a/src/assets/svg/Translate.svelte +++ b/src/assets/svg/Translate.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Triangle.svelte b/src/assets/svg/Triangle.svelte index 03c4b1c9ad8..e667e5bc07b 100644 --- a/src/assets/svg/Triangle.svelte +++ b/src/assets/svg/Triangle.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Wikidata.svelte b/src/assets/svg/Wikidata.svelte index d3a174cf9f7..107dad3ff8f 100644 --- a/src/assets/svg/Wikidata.svelte +++ b/src/assets/svg/Wikidata.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Wikimedia_commons_white.svelte b/src/assets/svg/Wikimedia_commons_white.svelte index d6c7268d3f2..f8b0d63f814 100644 --- a/src/assets/svg/Wikimedia_commons_white.svelte +++ b/src/assets/svg/Wikimedia_commons_white.svelte @@ -1,4 +1,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/assets/svg/Wikipedia.svelte b/src/assets/svg/Wikipedia.svelte index 6164f2f8380..3440db56227 100644 --- a/src/assets/svg/Wikipedia.svelte +++ b/src/assets/svg/Wikipedia.svelte @@ -1,4 +1,4 @@ - Wikipedia logo version 2 \ No newline at end of file + Wikipedia logo version 2 \ No newline at end of file From 92b341aa5d529d495888ea9c92ceee9c4c3a2770 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Fri, 12 Jul 2024 13:23:43 +0200 Subject: [PATCH 32/45] Fix typo --- src/UI/OpeningHours/OpeningHours.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UI/OpeningHours/OpeningHours.ts b/src/UI/OpeningHours/OpeningHours.ts index c12a32d26c1..10098ffcfa8 100644 --- a/src/UI/OpeningHours/OpeningHours.ts +++ b/src/UI/OpeningHours/OpeningHours.ts @@ -453,7 +453,7 @@ export class OH { /* This function converts a number of ranges (generated by OpeningHours.js) into all the hours of day that a change occurs. E.g. -Monday, some business is opended from 9:00 till 17:00 +Monday, some business is opened from 9:00 till 17:00 Tuesday from 9:30 till 18:00 Wednesday from 9:30 till 12:30 This function will extract all those moments of change and will return 9:00, 9:30, 12:30, 17:00 and 18:00 From bf71bb0393faa389df5ff36248b4b52f110f405b Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Sun, 14 Jul 2024 04:17:22 +0200 Subject: [PATCH 33/45] Add script to create single-theme builds --- .gitignore | 1 + package.json | 1 + scripts/generateLayouts.ts | 2 +- scripts/single_build.sh | 94 ++++++++++++++++++++++++++++++++++++++ 4 files changed, 97 insertions(+), 1 deletion(-) create mode 100755 scripts/single_build.sh diff --git a/.gitignore b/.gitignore index dc8529f7a3d..7ce5a6d8286 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ dist/* +dist_*/* node_modules .cache/* .idea/* diff --git a/package.json b/package.json index b0cc06e68cd..d35530ef319 100644 --- a/package.json +++ b/package.json @@ -66,6 +66,7 @@ "strt:https": "vite --host | sed 's/localhost:/127.0.0.1:/g'", "strt": "vite --host | sed 's/localhost:/127.0.0.1:/g'", "build": "./scripts/build.sh", + "build:single": "./scripts/single_build.sh", "prepare-deploy": "npm run generate:service-worker && ./scripts/prepare-build.sh && npm run build", "watch:css": "tailwindcss -i src/index.css -o public/css/index-tailwind-output.css --watch", diff --git a/scripts/generateLayouts.ts b/scripts/generateLayouts.ts index e759f54fb21..abb1d6a64e8 100644 --- a/scripts/generateLayouts.ts +++ b/scripts/generateLayouts.ts @@ -630,7 +630,7 @@ class GenerateLayouts extends Script { const layout = new LayoutConfig(layoutConfigJson, true) const layoutName = layout.id if (blacklist.indexOf(layoutName.toLowerCase()) >= 0) { - console.log(`Skipping a layout with name${layoutName}, it is on the blacklist`) + console.log(`Skipping a layout with name ${layoutName}, it is on the blacklist`) continue } const err = (err) => { diff --git a/scripts/single_build.sh b/scripts/single_build.sh new file mode 100755 index 00000000000..a3161cb5dde --- /dev/null +++ b/scripts/single_build.sh @@ -0,0 +1,94 @@ +THEME=$1 + +if [ $# -eq 0 ] + then + echo "No arguments given. Expected a themename" +fi + +pwd +if [ -f "$THEME.html" ] +then + echo "$THEME.html found." +else + echo "Theme '$THEME' not found. Did you run 'npm run generate:layouts'?" + exit 1 +fi + +echo "Building theme $THEME" +rm -rf dist/* + +cp vite.config.js vite_single.config.js + +if [ -f index.bu.html ] +then + echo "Backup already exists" +else + cp index.html index.bu.html +fi + +rm index.html +cp "$THEME.html" index.html + +sed -i "s/input,/input: {index:\".\/index.html\"}/" vite_single.config.js + + + + + +export NODE_OPTIONS=--max-old-space-size=20000 +vite build --sourcemap --config vite_single.config.js || { echo 'Vite build failed' ; exit 1; } + + + + +cp -r assets/layers/ dist/assets/layers/ +cp -r assets/themes/ dist/assets/themes/ +cp -r assets/svg/ dist/assets/svg/ +cp -r assets/png/ dist/assets/png/ +mkdir dist/assets/langs +mkdir dist/assets/langs/layers +cp -r langs/layers/ dist/assets/langs/ +ls dist/assets/langs/layers/ +export NODE_OPTIONS="" +rm vite_single.config.js + + + +mkdir "dist_$THEME" +cp -r dist/* "dist_$THEME" + + +cd "dist_$THEME" || exit 1 +mv "$THEME.webmanifest" manif +rm *.webmanifest +mv manif "$THEME.webmanifest" + +rm -rf assets/docs/ +cd assets/generated/images/ || exit +pwd +ls . +for f in * +do + # echo ">>>" $f + case "$f" in + *$THEME* ) + echo "Keeping $f" + ;; + *) + rm "$f" + # echo "Not keeping $f" + esac + +done +cd - + +cd .. + +if [ -f index.bu.html ] +then + rm index.html + mv index.bu.html index.html +fi + +echo "BUILD COMPLETED" +echo "Deploying on github pages? Don't forget to add a CNAME file (containing your domain name verbatim, without protocol) and a .nojekyll file (which is empty)" From 719f05eba91aab9b2980d32fc643180e517c5fed Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Sun, 14 Jul 2024 11:03:20 +0200 Subject: [PATCH 34/45] Actually add status page --- status.html | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 status.html diff --git a/status.html b/status.html new file mode 100644 index 00000000000..12bf671415d --- /dev/null +++ b/status.html @@ -0,0 +1,20 @@ + + + + + MapComplete statistics + + + + + + + + + +
+ + + + + From e298ef88d9e2f83fa6d2452789369fcd279b8266 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Sun, 14 Jul 2024 11:06:29 +0200 Subject: [PATCH 35/45] Add more deploy and config instructions after the single build --- scripts/single_build.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/single_build.sh b/scripts/single_build.sh index a3161cb5dde..e01eb5ccb74 100755 --- a/scripts/single_build.sh +++ b/scripts/single_build.sh @@ -91,4 +91,8 @@ then fi echo "BUILD COMPLETED" -echo "Deploying on github pages? Don't forget to add a CNAME file (containing your domain name verbatim, without protocol) and a .nojekyll file (which is empty)" +echo "On what domain will you deploy?" +echo " ! Don't forget to add `https://yourdomain.tld/land.html` to the Redirect URIs on https://www.openstreetmap.org/oauth2/applications/" +echo "Deploying on github pages?" +echo " 1. Don't forget to add a CNAME file (containing your domain name verbatim, without protocol)" +echo " 2 .nojekyll file (which is empty)" From 74736b9878dca6e3dc051d8354546366d34a35e1 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Sun, 14 Jul 2024 12:06:18 +0200 Subject: [PATCH 36/45] Fix build --- status.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/status.html b/status.html index 12bf671415d..1e21e85e51e 100644 --- a/status.html +++ b/status.html @@ -13,7 +13,7 @@
- + From 09522004db01453dcdb9a26670c3d7ef6f4e1eee Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Sun, 14 Jul 2024 12:06:48 +0200 Subject: [PATCH 37/45] Fix: correct faulty name --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d35530ef319..4d6d5431ea6 100644 --- a/package.json +++ b/package.json @@ -60,7 +60,7 @@ }, "scripts": { - "init": "npm ci && npm run prep:layeroverview && npm run generate && npm run download:editor-layer-index && npm run generate:layouts && npm run clean && npm run weblate-add-upstream", + "init": "npm ci && npm run prep:layeroverview && npm run generate && npm run download:editor-layer-index && npm run generate:layouts && npm run clean && npm run weblate:add-upstream", "start": "npm run generate:layeroverview && npm run strt", "#strt:https": "Start in HTTPS mode. Makes a few things a bit harder, but allows to debug on Android with logging in", "strt:https": "vite --host | sed 's/localhost:/127.0.0.1:/g'", From 39a7ac93e0133bb43d808e19215c0004ab3497be Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Sun, 14 Jul 2024 12:07:23 +0200 Subject: [PATCH 38/45] Disable 'back to theme overview' for single builds, add convenience to deployment to a repo --- scripts/single_build.sh | 45 ++++++++++++++++++++++++++++++------- src/index_theme.ts.template | 1 + 2 files changed, 38 insertions(+), 8 deletions(-) diff --git a/scripts/single_build.sh b/scripts/single_build.sh index e01eb5ccb74..5ceba2352f1 100755 --- a/scripts/single_build.sh +++ b/scripts/single_build.sh @@ -1,5 +1,5 @@ THEME=$1 - +npm run generate:layouts if [ $# -eq 0 ] then echo "No arguments given. Expected a themename" @@ -29,8 +29,8 @@ fi rm index.html cp "$THEME.html" index.html -sed -i "s/input,/input: {index:\".\/index.html\"}/" vite_single.config.js - +sed -i "s/input,/input: {index:\".\/index.html\", land: \".\/land.html\"}/" vite_single.config.js +sed -i "s/\/\/ LAYOUT.ADD_CONFIG/layout.enableMoreQuests = false" index_"$1".ts @@ -89,10 +89,39 @@ then rm index.html mv index.bu.html index.html fi +npm run clean echo "BUILD COMPLETED" -echo "On what domain will you deploy?" -echo " ! Don't forget to add `https://yourdomain.tld/land.html` to the Redirect URIs on https://www.openstreetmap.org/oauth2/applications/" -echo "Deploying on github pages?" -echo " 1. Don't forget to add a CNAME file (containing your domain name verbatim, without protocol)" -echo " 2 .nojekyll file (which is empty)" + +if [ $# -eq 2 ] +then + echo "DEPLOY TO $2" + + if [ -f "$2"/CNAME ] + then + CNAME=$(cat "$2"/CNAME) + echo "Found a CNAME" + fi + echo "Assuming github pages, add \".nojekyll\"" + touch $2/.nojekyll + echo $CNAME > $2/CNAME + echo " ! Don't forget to add `https://$CNAME/land.html` to the Redirect URIs on https://www.openstreetmap.org/oauth2/applications/" + cp -r "dist_$1/"* "$2"/ + + if [ -d "$2"/.git ] + then + cd $2 + git add * + git commit -m "Add new version of MapComplete with single-page build of $1" + git push + cd - + fi + rm "dist_$1" +else + echo "BUILD COMPLETED" + echo "On what domain will you deploy?" + echo " ! Don't forget to add `https://yourdomain.tld/land.html` to the Redirect URIs on https://www.openstreetmap.org/oauth2/applications/" + echo "Deploying on github pages?" + echo " 1. Don't forget to add a CNAME file (containing your domain name verbatim, without protocol)" + echo " 2 .nojekyll file (which is empty)" +fi diff --git a/src/index_theme.ts.template b/src/index_theme.ts.template index 5627128dd1d..1a678b01eb7 100644 --- a/src/index_theme.ts.template +++ b/src/index_theme.ts.template @@ -45,6 +45,7 @@ async function main() { const availableLayers = await getAvailableLayers() MetaTagging.setThemeMetatagging(new ThemeMetaTagging()) // LAYOUT.ADD_LAYERS + // LAYOUT.ADD_CONFIG const state = new ThemeViewState(new LayoutConfig( layout), availableLayers) const target = document.getElementById("maindiv") const childs = Array.from(target.children) From f0c0590d6664a2600de8a4e77582a71cf5c040dc Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Sun, 14 Jul 2024 12:46:15 +0200 Subject: [PATCH 39/45] Fix typo in single build script --- scripts/single_build.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/scripts/single_build.sh b/scripts/single_build.sh index 5ceba2352f1..147e381d437 100755 --- a/scripts/single_build.sh +++ b/scripts/single_build.sh @@ -30,7 +30,7 @@ rm index.html cp "$THEME.html" index.html sed -i "s/input,/input: {index:\".\/index.html\", land: \".\/land.html\"}/" vite_single.config.js -sed -i "s/\/\/ LAYOUT.ADD_CONFIG/layout.enableMoreQuests = false" index_"$1".ts +sed -i "s/\/\/ LAYOUT.ADD_CONFIG/layout.enableMoreQuests = false/" index_"$THEME".ts @@ -105,18 +105,19 @@ then echo "Assuming github pages, add \".nojekyll\"" touch $2/.nojekyll echo $CNAME > $2/CNAME + rm -r "$2/assets/*" echo " ! Don't forget to add `https://$CNAME/land.html` to the Redirect URIs on https://www.openstreetmap.org/oauth2/applications/" - cp -r "dist_$1/"* "$2"/ + cp -r "dist_$THEME/"* "$2"/ if [ -d "$2"/.git ] then cd $2 git add * - git commit -m "Add new version of MapComplete with single-page build of $1" + git commit -m "Add new version of MapComplete with single-page build of $THEME" git push cd - fi - rm "dist_$1" + rm "dist_$THEME" else echo "BUILD COMPLETED" echo "On what domain will you deploy?" From 4947f4c0a19f2993aae8f5c527af943737aaa75b Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Mon, 15 Jul 2024 00:08:59 +0200 Subject: [PATCH 40/45] Single build: hide backlink, fix script --- scripts/single_build.sh | 2 +- src/UI/BigComponents/AboutMapComplete.svelte | 19 +++++++++++-------- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/scripts/single_build.sh b/scripts/single_build.sh index 147e381d437..49677134b35 100755 --- a/scripts/single_build.sh +++ b/scripts/single_build.sh @@ -117,7 +117,7 @@ then git push cd - fi - rm "dist_$THEME" + rm -r "dist_$THEME" else echo "BUILD COMPLETED" echo "On what domain will you deploy?" diff --git a/src/UI/BigComponents/AboutMapComplete.svelte b/src/UI/BigComponents/AboutMapComplete.svelte index d6ee3caab88..16deae2b8ca 100644 --- a/src/UI/BigComponents/AboutMapComplete.svelte +++ b/src/UI/BigComponents/AboutMapComplete.svelte @@ -21,19 +21,22 @@ let layout = state.layout let featureSwitches = state.featureSwitches + let showHome = featureSwitches.featureSwitchBackToThemeOverview