Merge branch 'develop' into post-partner
This commit is contained in:
commit
e15ea325e9
1123 changed files with 1069725 additions and 41075 deletions
15
.gitignore
vendored
15
.gitignore
vendored
|
@ -2,7 +2,6 @@ dist/*
|
|||
node_modules
|
||||
.cache/*
|
||||
.idea/*
|
||||
.vscode/*
|
||||
scratch
|
||||
assets/editor-layer-index.json
|
||||
assets/generated/*
|
||||
|
@ -23,3 +22,17 @@ Folder.DotSettings.user
|
|||
index_*.ts
|
||||
.~lock.*
|
||||
*.doctest.ts
|
||||
service-worker.js
|
||||
|
||||
.vscode/*
|
||||
!.vscode/settings.json
|
||||
!.vscode/tasks.json
|
||||
!.vscode/launch.json
|
||||
!.vscode/extensions.json
|
||||
!.vscode/*.code-snippets
|
||||
|
||||
# Local History for Visual Studio Code
|
||||
.history/
|
||||
|
||||
# Built Visual Studio Code Extensions
|
||||
*.vsix
|
14
.gitpod.yml
Normal file
14
.gitpod.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
tasks:
|
||||
- init: npm run init
|
||||
command: npm run start
|
||||
|
||||
ports:
|
||||
- name: MapComplete Website
|
||||
port: 1234
|
||||
onOpen: open-browser
|
||||
|
||||
vscode:
|
||||
extensions:
|
||||
- "esbenp.prettier-vscode"
|
||||
- "eamodio.gitlens"
|
||||
- "GitHub.vscode-pull-request-github"
|
7
.vscode/extensions.json
vendored
Normal file
7
.vscode/extensions.json
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"recommendations": [
|
||||
"esbenp.prettier-vscode",
|
||||
"eamodio.gitlens",
|
||||
"GitHub.vscode-pull-request-github"
|
||||
]
|
||||
}
|
21
.vscode/settings.json
vendored
Normal file
21
.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"json.schemas": [
|
||||
{
|
||||
"fileMatch": [
|
||||
"/assets/layers/*/*.json",
|
||||
"!/assets/layers/*/license_info.json"
|
||||
],
|
||||
"url": "./Docs/Schemas/LayerConfigJson.schema.json"
|
||||
},
|
||||
{
|
||||
"fileMatch": [
|
||||
"/assets/themes/*/*.json",
|
||||
"!/assets/themes/*/license_info.json"
|
||||
],
|
||||
"url": "./Docs/Schemas/LayoutConfigJson.schema.json"
|
||||
}
|
||||
],
|
||||
"editor.tabSize": 2,
|
||||
"files.autoSave": "onFocusChange",
|
||||
"search.useIgnoreFiles": true
|
||||
}
|
14
.vscode/tasks.json
vendored
Normal file
14
.vscode/tasks.json
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"type": "npm",
|
||||
"script": "start",
|
||||
"path": "/",
|
||||
"group": "build",
|
||||
"problemMatcher": [],
|
||||
"label": "MapComplete Dev",
|
||||
"detail": "Run MapComplete Dev Server"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -8,7 +8,7 @@ There are multiple ways to contribute:
|
|||
- Translating MapComplete to your own language can be done
|
||||
on [this website](https://hosted.weblate.org/projects/mapcomplete/)
|
||||
- If you encounter a bug, the [issue tracker](https://github.com/pietervdvn/MapComplete/issues) is the place to be
|
||||
- If you want to improve a theme, create a new theme, spot a typo in the repo... the best way is to open a pull request.
|
||||
- If you want to improve a theme, create a new theme, spot a typo in the repo... the best way is to open a pull request. Read more about [making your own theme](/Docs/Making_Your_Own_Theme.md).
|
||||
|
||||
People who stick around and contribute in a meaningful way, _might_ be granted write access to the repository. This is
|
||||
done on a purely subjective basis, e.g. after a few pull requests and if you are a member of the OSM community.
|
||||
|
|
|
@ -10,6 +10,7 @@ import Constants from "../Models/Constants";
|
|||
import {Utils} from "../Utils";
|
||||
import Link from "../UI/Base/Link";
|
||||
import {LayoutConfigJson} from "../Models/ThemeConfig/Json/LayoutConfigJson";
|
||||
import {LayerConfigJson} from "../Models/ThemeConfig/Json/LayerConfigJson";
|
||||
|
||||
export class AllKnownLayouts {
|
||||
public static allKnownLayouts: Map<string, LayoutConfig> = AllKnownLayouts.AllLayouts();
|
||||
|
@ -17,33 +18,47 @@ export class AllKnownLayouts {
|
|||
// Must be below the list...
|
||||
private static sharedLayers: Map<string, LayerConfig> = AllKnownLayouts.getSharedLayers();
|
||||
|
||||
public static AllPublicLayers() {
|
||||
public static AllPublicLayers(options?: {
|
||||
includeInlineLayers:true | boolean
|
||||
}) : LayerConfig[] {
|
||||
const allLayers: LayerConfig[] = []
|
||||
const seendIds = new Set<string>()
|
||||
AllKnownLayouts.sharedLayers.forEach((layer, key) => {
|
||||
seendIds.add(key)
|
||||
allLayers.push(layer)
|
||||
})
|
||||
|
||||
const publicLayouts = AllKnownLayouts.layoutsList.filter(l => !l.hideFromOverview)
|
||||
for (const layout of publicLayouts) {
|
||||
if (layout.hideFromOverview) {
|
||||
continue
|
||||
}
|
||||
for (const layer of layout.layers) {
|
||||
if (seendIds.has(layer.id)) {
|
||||
if (options?.includeInlineLayers ?? true) {
|
||||
const publicLayouts = AllKnownLayouts.layoutsList.filter(l => !l.hideFromOverview)
|
||||
for (const layout of publicLayouts) {
|
||||
if (layout.hideFromOverview) {
|
||||
continue
|
||||
}
|
||||
seendIds.add(layer.id)
|
||||
allLayers.push(layer)
|
||||
}
|
||||
for (const layer of layout.layers) {
|
||||
if (seendIds.has(layer.id)) {
|
||||
continue
|
||||
}
|
||||
seendIds.add(layer.id)
|
||||
allLayers.push(layer)
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
return allLayers
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns all themes which use the given layer, reverse sorted by minzoom. This sort maximizes the chances that the layer is prominently featured on the first theme
|
||||
*/
|
||||
public static themesUsingLayer(id: string, publicOnly = true): LayoutConfig[] {
|
||||
const themes = AllKnownLayouts.layoutsList
|
||||
.filter(l => !(publicOnly && l.hideFromOverview) && l.id !== "personal")
|
||||
.map(theme => ({theme, minzoom: theme.layers.find(layer => layer.id === id)?.minzoom}))
|
||||
.filter(obj => obj.minzoom !== undefined)
|
||||
themes.sort((th0, th1) => th1.minzoom - th0.minzoom)
|
||||
return themes.map(th => th.theme);
|
||||
}
|
||||
|
||||
/**
|
||||
* Generates documentation for the layers.
|
||||
* Inline layers are included (if the theme is public)
|
||||
|
@ -70,7 +85,7 @@ export class AllKnownLayouts {
|
|||
if (builtinLayerIds.has(layer.id)) {
|
||||
continue
|
||||
}
|
||||
if(layer.source.geojsonSource !== undefined){
|
||||
if (layer.source.geojsonSource !== undefined) {
|
||||
// Not an OSM-source
|
||||
continue
|
||||
}
|
||||
|
@ -184,9 +199,20 @@ export class AllKnownLayouts {
|
|||
|
||||
}
|
||||
|
||||
private static getSharedLayers(): Map<string, LayerConfig> {
|
||||
public static GenerateDocumentationForTheme(theme: LayoutConfig): BaseUIElement {
|
||||
return new Combine([
|
||||
new Title(new Combine([theme.title, "(", theme.id + ")"]), 2),
|
||||
theme.description,
|
||||
"This theme contains the following layers:",
|
||||
new List(theme.layers.map(l => l.id)),
|
||||
"Available languages:",
|
||||
new List(theme.language)
|
||||
])
|
||||
}
|
||||
|
||||
public static getSharedLayers(): Map<string, LayerConfig> {
|
||||
const sharedLayers = new Map<string, LayerConfig>();
|
||||
for (const layer of known_themes.layers) {
|
||||
for (const layer of known_themes["layers"]) {
|
||||
try {
|
||||
// @ts-ignore
|
||||
const parsed = new LayerConfig(layer, "shared_layers")
|
||||
|
@ -201,6 +227,16 @@ export class AllKnownLayouts {
|
|||
return sharedLayers;
|
||||
}
|
||||
|
||||
public static getSharedLayersConfigs(): Map<string, LayerConfigJson> {
|
||||
const sharedLayers = new Map<string, LayerConfigJson>();
|
||||
for (const layer of known_themes["layers"]) {
|
||||
// @ts-ignore
|
||||
sharedLayers.set(layer.id, layer);
|
||||
}
|
||||
|
||||
return sharedLayers;
|
||||
}
|
||||
|
||||
private static GenerateOrderedList(allKnownLayouts: Map<string, LayoutConfig>): LayoutConfig[] {
|
||||
const list = []
|
||||
allKnownLayouts.forEach((layout) => {
|
||||
|
@ -211,7 +247,7 @@ export class AllKnownLayouts {
|
|||
|
||||
private static AllLayouts(): Map<string, LayoutConfig> {
|
||||
const dict: Map<string, LayoutConfig> = new Map();
|
||||
for (const layoutConfigJson of known_themes.themes) {
|
||||
for (const layoutConfigJson of known_themes["themes"]) {
|
||||
const layout = new LayoutConfig(<LayoutConfigJson>layoutConfigJson, true)
|
||||
dict.set(layout.id, layout)
|
||||
for (let i = 0; i < layout.layers.length; i++) {
|
||||
|
@ -229,16 +265,5 @@ export class AllKnownLayouts {
|
|||
}
|
||||
return dict;
|
||||
}
|
||||
|
||||
public static GenerateDocumentationForTheme(theme: LayoutConfig): BaseUIElement{
|
||||
return new Combine([
|
||||
new Title(new Combine([theme.title, "(",theme.id+")"]), 2),
|
||||
theme.description,
|
||||
"This theme contains the following layers:",
|
||||
new List(theme.layers.map(l => l.id)),
|
||||
"Available languages:",
|
||||
new List(theme.language)
|
||||
])
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -21,15 +21,31 @@
|
|||
+ [bicycle_rental.*bicycle_rental](#bicycle_rental*bicycle_rental)
|
||||
+ [bike_cleaning.bike_cleaning-service:bicycle:cleaning:charge](#bike_cleaningbike_cleaning-service:bicycle:cleaning:charge)
|
||||
+ [wheelchair-access](#wheelchair-access)
|
||||
+ [smoking](#smoking)
|
||||
+ [service:electricity](#serviceelectricity)
|
||||
+ [dog-access](#dog-access)
|
||||
+ [all_tags](#all_tags)
|
||||
+ [questions](#questions)
|
||||
+ [reviews](#reviews)
|
||||
+ [climbing.website](#climbingwebsite)
|
||||
+ [climbing.fee](#climbingfee)
|
||||
+ [climbing.bouldering](#climbingbouldering)
|
||||
+ [climbing.average_length](#climbingaverage_length)
|
||||
+ [climbing.min_difficulty](#climbingmin_difficulty)
|
||||
+ [climbing.max_difficulty](#climbingmax_difficulty)
|
||||
+ [climbing.sportclimbing](#climbingsportclimbing)
|
||||
+ [climbing.max_bolts](#climbingmax_bolts)
|
||||
+ [all_tags](#all_tags)
|
||||
+ [multilevels](#multilevels)
|
||||
+ [induction-loop](#induction-loop)
|
||||
+ [questions](#questions)
|
||||
+ [export_as_gpx](#export_as_gpx)
|
||||
+ [export_as_geojson](#export_as_geojson)
|
||||
+ [minimap](#minimap)
|
||||
+ [wikipedia](#wikipedia)
|
||||
+ [wikidata.school-language](#wikidataschool-language)
|
||||
+ [id_presets.shop_types](#id_presetsshop_types)
|
||||
+ [school.capacity](#schoolcapacity)
|
||||
+ [school.gender](#schoolgender)
|
||||
+ [wikidata.language](#wikidatalanguage)
|
||||
|
||||
|
||||
|
||||
|
@ -65,37 +81,49 @@
|
|||
- birdhide
|
||||
- cafe_pub
|
||||
- charging_station
|
||||
- climbing
|
||||
- climbing_area
|
||||
- climbing_gym
|
||||
- climbing_route
|
||||
- defibrillator
|
||||
- doctors
|
||||
- dogpark
|
||||
- drinking_water
|
||||
- elevator
|
||||
- entrance
|
||||
- extinguisher
|
||||
- fire_station
|
||||
- food
|
||||
- ghost_bike
|
||||
- governments
|
||||
- grass_in_parks
|
||||
- hotel
|
||||
- hydrant
|
||||
- indoors
|
||||
- information_board
|
||||
- map
|
||||
- nature_reserve
|
||||
- observation_tower
|
||||
- parking
|
||||
- pharmacy
|
||||
- picnic_table
|
||||
- play_forest
|
||||
- playground
|
||||
- public_bookcase
|
||||
- rainbow_crossings
|
||||
- reception_desk
|
||||
- recycling
|
||||
- shops
|
||||
- slow_roads
|
||||
- sport_pitch
|
||||
- street_lamps
|
||||
- surveillance_camera
|
||||
- toilet
|
||||
- trail
|
||||
- transit_stops
|
||||
- tree_node
|
||||
- viewpoint
|
||||
- village_green
|
||||
- waste_basket
|
||||
- watermill
|
||||
- windturbine
|
||||
|
||||
|
@ -110,16 +138,27 @@
|
|||
|
||||
- bicycle_library
|
||||
- bicycle_rental
|
||||
- bike_shop
|
||||
- bike_themed_object
|
||||
- cafe_pub
|
||||
- climbing_club
|
||||
- climbing_gym
|
||||
- doctors
|
||||
- food
|
||||
- governments
|
||||
- hackerspace
|
||||
- hospital
|
||||
- hotel
|
||||
- kindergarten_childcare
|
||||
- nature_reserve
|
||||
- observation_tower
|
||||
- pharmacy
|
||||
- playground
|
||||
- recycling
|
||||
- school
|
||||
- shops
|
||||
- tertiary_education
|
||||
- veterinary
|
||||
|
||||
|
||||
|
||||
|
@ -132,13 +171,24 @@
|
|||
|
||||
- bicycle_library
|
||||
- bicycle_rental
|
||||
- bike_shop
|
||||
- bike_themed_object
|
||||
- cafe_pub
|
||||
- climbing_club
|
||||
- climbing_gym
|
||||
- doctors
|
||||
- food
|
||||
- governments
|
||||
- hackerspace
|
||||
- hospital
|
||||
- hotel
|
||||
- kindergarten_childcare
|
||||
- pharmacy
|
||||
- recycling
|
||||
- school
|
||||
- shops
|
||||
- tertiary_education
|
||||
- veterinary
|
||||
|
||||
|
||||
|
||||
|
@ -151,13 +201,23 @@
|
|||
|
||||
- bicycle_library
|
||||
- bicycle_rental
|
||||
- bike_shop
|
||||
- bike_themed_object
|
||||
- cafe_pub
|
||||
- climbing_club
|
||||
- climbing_gym
|
||||
- doctors
|
||||
- food
|
||||
- governments
|
||||
- hackerspace
|
||||
- hospital
|
||||
- hotel
|
||||
- kindergarten_childcare
|
||||
- pharmacy
|
||||
- recycling
|
||||
- school
|
||||
- shops
|
||||
- tertiary_education
|
||||
|
||||
|
||||
|
||||
|
@ -175,7 +235,12 @@
|
|||
- cafe_pub
|
||||
- climbing_club
|
||||
- climbing_gym
|
||||
- doctors
|
||||
- food
|
||||
- kindergarten_childcare
|
||||
- pharmacy
|
||||
- shops
|
||||
- veterinary
|
||||
|
||||
|
||||
|
||||
|
@ -189,6 +254,7 @@
|
|||
- bicycle_library
|
||||
- bike_shop
|
||||
- bike_themed_object
|
||||
- climbing_route
|
||||
- toilet
|
||||
|
||||
|
||||
|
@ -229,7 +295,14 @@
|
|||
|
||||
|
||||
- bike_repair_station
|
||||
- cafe_pub
|
||||
- charging_station
|
||||
- entrance
|
||||
- food
|
||||
- parking
|
||||
- picnic_table
|
||||
- reception_desk
|
||||
- shops
|
||||
- toilet
|
||||
|
||||
|
||||
|
@ -267,7 +340,20 @@
|
|||
- defibrillator
|
||||
- food
|
||||
- hackerspace
|
||||
- hotel
|
||||
- observation_tower
|
||||
- transit_stops
|
||||
|
||||
|
||||
|
||||
|
||||
### smoking
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- cafe_pub
|
||||
|
||||
|
||||
|
||||
|
@ -296,6 +382,113 @@
|
|||
|
||||
|
||||
|
||||
### reviews
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- cafe_pub
|
||||
- dogpark
|
||||
- food
|
||||
- hackerspace
|
||||
- hotel
|
||||
- shops
|
||||
- veterinary
|
||||
|
||||
|
||||
|
||||
|
||||
### climbing.website
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- climbing_area
|
||||
|
||||
|
||||
|
||||
|
||||
### climbing.fee
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- climbing_area
|
||||
- climbing_gym
|
||||
|
||||
|
||||
|
||||
|
||||
### climbing.bouldering
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- climbing_area
|
||||
- climbing_gym
|
||||
|
||||
|
||||
|
||||
|
||||
### climbing.average_length
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- climbing_gym
|
||||
|
||||
|
||||
|
||||
|
||||
### climbing.min_difficulty
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- climbing_gym
|
||||
|
||||
|
||||
|
||||
|
||||
### climbing.max_difficulty
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- climbing_gym
|
||||
|
||||
|
||||
|
||||
|
||||
### climbing.sportclimbing
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- climbing_gym
|
||||
|
||||
|
||||
|
||||
|
||||
### climbing.max_bolts
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- climbing_gym
|
||||
|
||||
|
||||
|
||||
|
||||
### all_tags
|
||||
|
||||
|
||||
|
@ -307,6 +500,29 @@
|
|||
|
||||
|
||||
|
||||
### multilevels
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- elevator
|
||||
|
||||
|
||||
|
||||
|
||||
### induction-loop
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- elevator
|
||||
- reception_desk
|
||||
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
@ -322,18 +538,6 @@
|
|||
|
||||
|
||||
|
||||
### reviews
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- food
|
||||
- shops
|
||||
|
||||
|
||||
|
||||
|
||||
### export_as_gpx
|
||||
|
||||
|
||||
|
@ -375,6 +579,61 @@
|
|||
|
||||
- nature_reserve
|
||||
- observation_tower
|
||||
|
||||
|
||||
|
||||
|
||||
### wikidata.school-language
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- school
|
||||
|
||||
|
||||
|
||||
|
||||
### id_presets.shop_types
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- shops
|
||||
|
||||
|
||||
|
||||
|
||||
### school.capacity
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- tertiary_education
|
||||
|
||||
|
||||
|
||||
|
||||
### school.gender
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- tertiary_education
|
||||
|
||||
|
||||
|
||||
|
||||
### wikidata.language
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- wikidata
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/*.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/*.json)
|
|
@ -35,12 +35,16 @@
|
|||
+ [conversation](#conversation)
|
||||
+ [add_image](#add_image)
|
||||
+ [comment](#comment)
|
||||
+ [nearby-images](#nearby-images)
|
||||
+ [report-contributor](#report-contributor)
|
||||
+ [report-note](#report-note)
|
||||
1. [import_candidate](#import_candidate)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [all_tags](#all_tags)
|
||||
1. [direction](#direction)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
1. [conflation](#conflation)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
|
@ -78,6 +82,7 @@ MapComplete has a few data layers available in the theme which have special prop
|
|||
- [type_node](#type_node)
|
||||
- [note](#note)
|
||||
- [import_candidate](#import_candidate)
|
||||
- [direction](#direction)
|
||||
- [conflation](#conflation)
|
||||
- [left_right_style](#left_right_style)
|
||||
- [split_point](#split_point)
|
||||
|
@ -103,7 +108,7 @@ Meta layer showing the current location of the user. Add this to your theme and
|
|||
|
||||
- This layer is shown at zoomlevel **0** and higher
|
||||
- **This layer is included automatically in every theme. This layer might contain no points**
|
||||
- This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable.
|
||||
- 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`
|
||||
|
||||
|
||||
|
@ -146,7 +151,7 @@ Meta layer which contains the previous locations of the user as single points. T
|
|||
|
||||
- This layer is shown at zoomlevel **0** and higher
|
||||
- **This layer is included automatically in every theme. This layer might contain no points**
|
||||
- This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable.
|
||||
- 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`
|
||||
|
||||
|
@ -190,7 +195,7 @@ Meta layer showing the home location of the user. The home location can be set i
|
|||
|
||||
- This layer is shown at zoomlevel **0** and higher
|
||||
- **This layer is included automatically in every theme. This layer might contain no points**
|
||||
- This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable.
|
||||
- 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`
|
||||
|
||||
|
||||
|
@ -264,7 +269,7 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -274,7 +279,9 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
Shows a button to export this feature as GPX. Especially useful for route relations
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -284,7 +291,9 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
Shows a button to export this feature as geojson. Especially useful for debugging or using this in other programs
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -294,7 +303,9 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
Shows a small map with the feature. Added by default to every popup
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -304,7 +315,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -366,7 +377,7 @@ This layer shows notes on OpenStreetMap. Having this layer in your theme will tr
|
|||
|
||||
|
||||
- This layer is shown at zoomlevel **10** and higher
|
||||
- <img src='../warning.svg' height='1rem'/> 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}`
|
||||
- <img src='../warning.svg' height='1rem'/> 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}`
|
||||
|
||||
|
||||
|
||||
|
@ -396,7 +407,7 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -406,7 +417,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -416,7 +427,17 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### nearby-images
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -426,11 +447,11 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
Only visible if `_opened_by_anonymous_user=false` is shown
|
||||
Only visible if `_opened_by_anonymous_user=false` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -438,7 +459,7 @@ Only visible if `_opened_by_anonymous_user=false` is shown
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -489,7 +510,48 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
direction
|
||||
===========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/direction_gradient:var(--catch-detail-color)' height="100px">
|
||||
|
||||
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.
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- camera:direction~^..*$|direction~^..*$
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
|
@ -730,6 +792,12 @@ The following layers are included in MapComplete:
|
|||
- [birdhide](./Layers/birdhide.md)
|
||||
- [cafe_pub](./Layers/cafe_pub.md)
|
||||
- [charging_station](./Layers/charging_station.md)
|
||||
- [climbing](./Layers/climbing.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)
|
||||
- [cluster_style](./Layers/cluster_style.md)
|
||||
- [conflation](./Layers/conflation.md)
|
||||
- [crab_address](./Layers/crab_address.md)
|
||||
|
@ -738,46 +806,68 @@ The following layers are included in MapComplete:
|
|||
- [cycleways_and_roads](./Layers/cycleways_and_roads.md)
|
||||
- [defibrillator](./Layers/defibrillator.md)
|
||||
- [direction](./Layers/direction.md)
|
||||
- [doctors](./Layers/doctors.md)
|
||||
- [dogpark](./Layers/dogpark.md)
|
||||
- [drinking_water](./Layers/drinking_water.md)
|
||||
- [elevator](./Layers/elevator.md)
|
||||
- [entrance](./Layers/entrance.md)
|
||||
- [etymology](./Layers/etymology.md)
|
||||
- [extinguisher](./Layers/extinguisher.md)
|
||||
- [fire_station](./Layers/fire_station.md)
|
||||
- [food](./Layers/food.md)
|
||||
- [ghost_bike](./Layers/ghost_bike.md)
|
||||
- [governments](./Layers/governments.md)
|
||||
- [gps_location](./Layers/gps_location.md)
|
||||
- [gps_location_history](./Layers/gps_location_history.md)
|
||||
- [gps_track](./Layers/gps_track.md)
|
||||
- [grass_in_parks](./Layers/grass_in_parks.md)
|
||||
- [hackerspace](./Layers/hackerspace.md)
|
||||
- [home_location](./Layers/home_location.md)
|
||||
- [hospital](./Layers/hospital.md)
|
||||
- [hotel](./Layers/hotel.md)
|
||||
- [hydrant](./Layers/hydrant.md)
|
||||
- [id_presets](./Layers/id_presets.md)
|
||||
- [import_candidate](./Layers/import_candidate.md)
|
||||
- [indoors](./Layers/indoors.md)
|
||||
- [information_board](./Layers/information_board.md)
|
||||
- [kerbs](./Layers/kerbs.md)
|
||||
- [kindergarten_childcare](./Layers/kindergarten_childcare.md)
|
||||
- [left_right_style](./Layers/left_right_style.md)
|
||||
- [map](./Layers/map.md)
|
||||
- [maproulette](./Layers/maproulette.md)
|
||||
- [maproulette_challenge](./Layers/maproulette_challenge.md)
|
||||
- [matchpoint](./Layers/matchpoint.md)
|
||||
- [maxspeed](./Layers/maxspeed.md)
|
||||
- [named_streets](./Layers/named_streets.md)
|
||||
- [nature_reserve](./Layers/nature_reserve.md)
|
||||
- [note](./Layers/note.md)
|
||||
- [note_import](./Layers/note_import.md)
|
||||
- [observation_tower](./Layers/observation_tower.md)
|
||||
- [parking](./Layers/parking.md)
|
||||
- [pedestrian_path](./Layers/pedestrian_path.md)
|
||||
- [pharmacy](./Layers/pharmacy.md)
|
||||
- [picnic_table](./Layers/picnic_table.md)
|
||||
- [play_forest](./Layers/play_forest.md)
|
||||
- [playground](./Layers/playground.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)
|
||||
- [slow_roads](./Layers/slow_roads.md)
|
||||
- [split_point](./Layers/split_point.md)
|
||||
- [sport_pitch](./Layers/sport_pitch.md)
|
||||
- [street_lamps](./Layers/street_lamps.md)
|
||||
- [surveillance_camera](./Layers/surveillance_camera.md)
|
||||
- [tertiary_education](./Layers/tertiary_education.md)
|
||||
- [toilet](./Layers/toilet.md)
|
||||
- [trail](./Layers/trail.md)
|
||||
- [transit_routes](./Layers/transit_routes.md)
|
||||
- [transit_stops](./Layers/transit_stops.md)
|
||||
- [tree_node](./Layers/tree_node.md)
|
||||
- [type_node](./Layers/type_node.md)
|
||||
- [veterinary](./Layers/veterinary.md)
|
||||
- [viewpoint](./Layers/viewpoint.md)
|
||||
- [village_green](./Layers/village_green.md)
|
||||
- [visitor_information_centre](./Layers/visitor_information_centre.md)
|
||||
|
@ -785,6 +875,7 @@ The following layers are included in MapComplete:
|
|||
- [waste_basket](./Layers/waste_basket.md)
|
||||
- [waste_disposal](./Layers/waste_disposal.md)
|
||||
- [watermill](./Layers/watermill.md)
|
||||
- [windturbine](./Layers/windturbine.md)
|
||||
|
||||
|
||||
This document is autogenerated from [Customizations/AllKnownLayouts.ts](https://github.com/pietervdvn/MapComplete/blob/develop/Customizations/AllKnownLayouts.ts)
|
|
@ -12,6 +12,7 @@ The following items can be easily reused in your layers
|
|||
1. [Builtin questions](#builtin-questions)
|
||||
+ [questions](#questions)
|
||||
+ [images](#images)
|
||||
+ [mapillary](#mapillary)
|
||||
+ [export_as_gpx](#export_as_gpx)
|
||||
+ [export_as_geojson](#export_as_geojson)
|
||||
+ [wikipedia](#wikipedia)
|
||||
|
@ -31,12 +32,16 @@ The following items can be easily reused in your layers
|
|||
+ [payment-options-advanced](#payment-options-advanced)
|
||||
+ [last_edit](#last_edit)
|
||||
+ [all_tags](#all_tags)
|
||||
+ [multilevels](#multilevels)
|
||||
+ [level](#level)
|
||||
+ [smoking](#smoking)
|
||||
+ [induction-loop](#induction-loop)
|
||||
+ [default](#default)
|
||||
+ [defaults](#defaults)
|
||||
+ [isOpen](#isopen)
|
||||
+ [phonelink](#phonelink)
|
||||
+ [emaillink](#emaillink)
|
||||
+ [smokingicon](#smokingicon)
|
||||
+ [sharelink](#sharelink)
|
||||
|
||||
|
||||
|
@ -55,7 +60,17 @@ Read-only tagrendering
|
|||
|
||||
|
||||
|
||||
{image_carousel()}{image_upload()}
|
||||
{image_carousel()}{image_upload()}{nearby_images(expandable)}
|
||||
|
||||
Read-only tagrendering
|
||||
|
||||
|
||||
|
||||
### mapillary
|
||||
|
||||
|
||||
|
||||
{mapillary()}
|
||||
|
||||
Read-only tagrendering
|
||||
|
||||
|
@ -91,6 +106,7 @@ What is the corresponding Wikidata entity?
|
|||
|
||||
|
||||
|
||||
- {wikipedia():max-height:25rem}
|
||||
- No Wikipedia page has been linked yet
|
||||
|
||||
|
||||
|
@ -135,7 +151,7 @@ What is the phone number of {title()}?
|
|||
|
||||
|
||||
|
||||
<a href='https://openstreetmap.org/{id}' target='_blank'><img src='./assets/svg/osm-logo-us.svg'/></a>
|
||||
<a href='https://openstreetmap.org/{id}' target='_blank'><img alt='on osm' textmode='🗺️' src='./assets/svg/osm-logo-us.svg'/></a>
|
||||
|
||||
Read-only tagrendering
|
||||
|
||||
|
@ -151,7 +167,7 @@ Read-only tagrendering
|
|||
|
||||
|
||||
|
||||
<a href='https://wikipedia.org/wiki/{wikipedia}' target='_blank'><img src='./assets/svg/wikipedia.svg' alt='WP'/></a>
|
||||
<a href='https://wikipedia.org/wiki/{wikipedia}' target='_blank'><img src='./assets/svg/wikipedia.svg' textmode='📖' alt='Wikipedia'/></a>
|
||||
|
||||
Read-only tagrendering
|
||||
|
||||
|
@ -310,6 +326,25 @@ Read-only tagrendering
|
|||
|
||||
|
||||
|
||||
### multilevels
|
||||
|
||||
|
||||
|
||||
This elevator goes to floors {level}
|
||||
|
||||
What levels does this elevator go to?
|
||||
|
||||
|
||||
|
||||
- Located underground
|
||||
- Located on the ground floor
|
||||
- Located on the ground floor
|
||||
- Located on the first floor
|
||||
- Located on the first basement level
|
||||
|
||||
|
||||
|
||||
|
||||
### level
|
||||
|
||||
|
||||
|
@ -329,6 +364,35 @@ On what level is this feature located?
|
|||
|
||||
|
||||
|
||||
### smoking
|
||||
|
||||
|
||||
|
||||
Is smoking allowed at {title()}?
|
||||
|
||||
|
||||
|
||||
- Smoking is <b>allowed</b>
|
||||
- Smoking is <b>not allowed</b>
|
||||
- Smoking is <b>allowed outside</b>.
|
||||
|
||||
|
||||
|
||||
|
||||
### induction-loop
|
||||
|
||||
|
||||
|
||||
Does this place have an audio induction loop for people with reduced hearing?
|
||||
|
||||
|
||||
|
||||
- This place has an audio induction loop
|
||||
- This place <b>does not</b> have an audio induction loop
|
||||
|
||||
|
||||
|
||||
|
||||
### default
|
||||
|
||||
|
||||
|
@ -365,7 +429,7 @@ Read-only tagrendering
|
|||
|
||||
|
||||
|
||||
<a href='tel:{phone}'><img src='./assets/svg/phone.svg'/></a>
|
||||
<a href='tel:{phone}'><img textmode='📞' alt='phone' src='./assets/tagRenderings/phone.svg'/></a>
|
||||
|
||||
Read-only tagrendering
|
||||
|
||||
|
@ -375,12 +439,26 @@ Read-only tagrendering
|
|||
|
||||
|
||||
|
||||
<a href='mailto:{email}'><img src='./assets/svg/send_email.svg'/></a>
|
||||
<a href='mailto:{email}'><img textmode='✉️' alt='email' src='./assets/tagRenderings/send_email.svg'/></a>
|
||||
|
||||
Read-only tagrendering
|
||||
|
||||
|
||||
|
||||
### smokingicon
|
||||
|
||||
|
||||
|
||||
Read-only tagrendering
|
||||
|
||||
|
||||
|
||||
- <img textmode='🚭️' alt='no-smoking' src='./assets/tagRenderings/no_smoking.svg'/>
|
||||
- <img textmode='🚬️' alt='smoking-allowed' src='./assets/tagRenderings/smoking.svg'/>
|
||||
|
||||
|
||||
|
||||
|
||||
### sharelink
|
||||
|
||||
|
||||
|
|
|
@ -21,8 +21,10 @@
|
|||
+ [_last_edit:contributor, _last_edit:contributor:uid, _last_edit:changeset, _last_edit:timestamp, _version_number, _backend](#_last_editcontributor,-_last_edit:contributor:uid,-_last_edit:changeset,-_last_edit:timestamp,-_version_number,-_backend)
|
||||
+ [sidewalk:left, sidewalk:right, generic_key:left:property, generic_key:right:property](#sidewalkleft,-sidewalk:right,-generic_key:left:property,-generic_key:right:property)
|
||||
+ [_geometry:type](#_geometrytype)
|
||||
+ [_level](#_level)
|
||||
+ [distanceTo](#distanceto)
|
||||
+ [overlapWith](#overlapwith)
|
||||
+ [enclosingFeatures](#enclosingfeatures)
|
||||
+ [intersectionsWith](#intersectionswith)
|
||||
+ [closest](#closest)
|
||||
+ [closestn](#closestn)
|
||||
|
@ -33,7 +35,7 @@
|
|||
|
||||
Metatags are extra tags available, in order to display more data or to give better questions.
|
||||
|
||||
The are calculated automatically on every feature when the data arrives in the webbrowser. This document gives an overview of the available metatags.
|
||||
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
|
||||
|
||||
|
@ -168,6 +170,16 @@ Adds the geometry type as property. This is identical to the GoeJson geometry ty
|
|||
|
||||
|
||||
|
||||
### _level
|
||||
|
||||
|
||||
|
||||
Extract the 'level'-tag into a normalized, ';'-separated value
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Calculating tags with Javascript
|
||||
----------------------------------
|
||||
|
||||
|
@ -218,6 +230,7 @@ Some advanced functions are available on **feat** as well:
|
|||
|
||||
- [distanceTo](#distanceTo)
|
||||
- [overlapWith](#overlapWith)
|
||||
- [enclosingFeatures](#enclosingFeatures)
|
||||
- [intersectionsWith](#intersectionsWith)
|
||||
- [closest](#closest)
|
||||
- [closestn](#closestn)
|
||||
|
@ -235,12 +248,25 @@ Some advanced functions are available on **feat** as well:
|
|||
|
||||
### 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.
|
||||
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.
|
||||
The resulting list is sorted in descending order by overlap. The feature with the most overlap will thus be the first in the list
|
||||
The resulting list is sorted in descending order by overlap. The feature with the most overlap will thus be the first in the list.
|
||||
|
||||
For example to get all objects which overlap or embed from a layer, use `_contained_climbing_routes_properties=feat.overlapWith('climbing_route')`
|
||||
For example to get all objects which overlap or embed from a layer, use `_contained_climbing_routes_properties=feat.overlapWith('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)
|
||||
|
||||
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)
|
||||
|
||||
|
@ -259,7 +285,7 @@ Points from other layers are ignored - even if the points are parts of the curre
|
|||
|
||||
### 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 laoded)
|
||||
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
|
||||
|
||||
|
|
|
@ -27,7 +27,10 @@ Devcontainer (see more details later).
|
|||
To develop and build MapComplete, you
|
||||
|
||||
0. Make a fork and clone the repository. (We recommend a shallow clone with `git clone --filter=blob:none <repo>`)
|
||||
0. Install the nodejs version specified in [.tool-versions](./.tool-versions)
|
||||
0. Install `python3` if you do not have it already
|
||||
- On linux: `sudo apt install python3`
|
||||
- On windows: find the latest download on the [Python Releases for Windows page](https://www.python.org/downloads/windows/)
|
||||
0. Install the nodejs version specified in [/.tool-versions](/.tool-versions)
|
||||
- On linux: install npm first `sudo apt install npm`, then install `n` using npm: ` npm install -g n`, which can
|
||||
then install node with `n install <node-version>`
|
||||
- You can [use asdf to manage your runtime versions](https://asdf-vm.com/).
|
||||
|
@ -72,6 +75,13 @@ To use the WSL in Visual Studio Code:
|
|||
or `userlayout=true#<layout configuration>` as [Query parameter](URL_Parameters.md). Note that the shorter URLs (
|
||||
e.g. `bookcases.html`, `aed.html`, ...) _don't_ exist on the development version.
|
||||
|
||||
Dependencies
|
||||
------------
|
||||
|
||||
`make` , `python3` `g++`
|
||||
|
||||
(Nix users may run `nix-env -iA nixos.gnumake nixos.gdc nixos.python3`)
|
||||
|
||||
Automatic deployment
|
||||
--------------------
|
||||
|
||||
|
|
|
@ -15,18 +15,7 @@ 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)
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
- 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)
|
||||
|
||||
|
||||
|
||||
|
@ -52,7 +41,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -69,14 +60,17 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
The question is **What is the number of this house?**
|
||||
The question is What is the number of this house?
|
||||
|
||||
This rendering asks information about the property [addr:housenumber](https://wiki.openstreetmap.org/wiki/Key:addr:housenumber)
|
||||
This is rendered with `The housenumber is <b>{addr:housenumber}</b>`
|
||||
|
||||
This is rendered with The house number is <b>{addr:housenumber}</b>
|
||||
|
||||
|
||||
|
||||
- **This building has no house number** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:nohousenumber' target='_blank'>nohousenumber</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:nohousenumber%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
- This building has no house number corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:nohousenumber' target='_blank'>nohousenumber</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:nohousenumber%3Dyes' target='_blank'>yes</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -85,16 +79,19 @@ This is rendered with `The housenumber is <b>{addr:housenumber}</b>`
|
|||
|
||||
|
||||
|
||||
The question is **What street is this address located in?**
|
||||
The question is What street is this address located in?
|
||||
|
||||
This rendering asks information about the property [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street)
|
||||
This is rendered with `This address is in street <b>{addr:street}</b>`
|
||||
|
||||
This is rendered with This address is in street <b>{addr:street}</b>
|
||||
|
||||
|
||||
|
||||
- **Located in <b>{_closest_street:0:name}</b>** corresponds with addr:street=
|
||||
- **Located in <b>{_closest_street:1:name}</b>** corresponds with addr:street=
|
||||
- **Located in <b>{_closest_street:2:name}</b>** corresponds with addr:street=
|
||||
|
||||
|
||||
- Located in <b>{_closest_street:0:name}</b> corresponds with `addr:street=`
|
||||
- Located in <b>{_closest_street:1:name}</b> corresponds with `addr:street=`
|
||||
- Located in <b>{_closest_street:2:name}</b> corresponds with `addr:street=`
|
||||
|
||||
|
||||
|
||||
|
@ -103,14 +100,17 @@ This is rendered with `This address is in street <b>{addr:street}</b>`
|
|||
|
||||
|
||||
|
||||
The question is **What should be fixed here? Please explain**
|
||||
The question is What should be fixed here? Please explain
|
||||
|
||||
This rendering asks information about the property [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme)
|
||||
This is rendered with `<b>Fixme description</b>{fixme}`
|
||||
|
||||
This is rendered with <b>Fixme description</b>{fixme}
|
||||
|
||||
|
||||
|
||||
- **No fixme - write something here to explain complicated cases** corresponds with
|
||||
|
||||
|
||||
- No fixme - write something here to explain complicated cases corresponds with ``
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/address/address.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/address/address.json)
|
|
@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -68,7 +70,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -78,16 +82,16 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **Is the street <b>{name}</b> a cyclestreet?**
|
||||
The question is Is the street <b>{name}</b> a cyclestreet?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This street is a cyclestreet (and has a speed limit of 30 km/h)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cyclestreet' target='_blank'>cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes' target='_blank'>yes</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D30' target='_blank'>30</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:overtaking:motor_vehicle' target='_blank'>overtaking:motor_vehicle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:overtaking:motor_vehicle%3Dno' target='_blank'>no</a>
|
||||
- **This street is a cyclestreet** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cyclestreet' target='_blank'>cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes' target='_blank'>yes</a>
|
||||
- **This street will become a cyclstreet soon** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:proposed:cyclestreet' target='_blank'>proposed:cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:proposed:cyclestreet%3Dyes' target='_blank'>yes</a>
|
||||
- **This street is not a cyclestreet** corresponds with
|
||||
- This street is a cyclestreet (and has a speed limit of 30 km/h) corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cyclestreet' target='_blank'>cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes' target='_blank'>yes</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D30' target='_blank'>30</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:overtaking:motor_vehicle' target='_blank'>overtaking:motor_vehicle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:overtaking:motor_vehicle%3Dno' target='_blank'>no</a>`
|
||||
- This street is a cyclestreet corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cyclestreet' target='_blank'>cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes' target='_blank'>yes</a>`
|
||||
- This street will become a cyclstreet soon corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:proposed:cyclestreet' target='_blank'>proposed:cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:proposed:cyclestreet%3Dyes' target='_blank'>yes</a>`
|
||||
- This street is not a cyclestreet corresponds with ``
|
||||
|
||||
|
||||
|
||||
|
@ -96,12 +100,15 @@ The question is **Is the street <b>{name}</b> a cyclestreet?**
|
|||
|
||||
|
||||
|
||||
The question is **When will this street become a cyclestreet?**
|
||||
The question is When will this street become a cyclestreet?
|
||||
|
||||
This rendering asks information about the property [cyclestreet:start_date](https://wiki.openstreetmap.org/wiki/Key:cyclestreet:start_date)
|
||||
This is rendered with `This street will become a cyclestreet at {cyclestreet:start_date}`
|
||||
|
||||
Only visible if `proposed:cyclestreet=yes` is shown
|
||||
This is rendered with This street will become a cyclestreet at {cyclestreet:start_date}
|
||||
|
||||
|
||||
|
||||
Only visible if `proposed:cyclestreet=yes` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -109,7 +116,9 @@ Only visible if `proposed:cyclestreet=yes` is shown
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
Show the images block at this location
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -119,7 +128,9 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
Shows a small map with the feature. Added by default to every popup
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -71,10 +73,13 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
The question is **What is the name of this ambulance station?**
|
||||
The question is What is the name of this ambulance station?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
This is rendered with `This station is called {name}.`
|
||||
|
||||
This is rendered with This station is called {name}.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -82,10 +87,13 @@ This is rendered with `This station is called {name}.`
|
|||
|
||||
|
||||
|
||||
The question is ** What is the street name where the station located?**
|
||||
The question is What is the street name where the station located?
|
||||
|
||||
This rendering asks information about the property [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street)
|
||||
This is rendered with `This station is along a highway called {addr:street}.`
|
||||
|
||||
This is rendered with This station is along a highway called {addr:street}.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -93,10 +101,13 @@ This is rendered with `This station is along a highway called {addr:street}.`
|
|||
|
||||
|
||||
|
||||
The question is **Where is the station located? (e.g. name of neighborhood, villlage, or town)**
|
||||
The question is Where is the station located? (e.g. name of neighborhood, villlage, or town)
|
||||
|
||||
This rendering asks information about the property [addr:place](https://wiki.openstreetmap.org/wiki/Key:addr:place)
|
||||
This is rendered with `This station is found within {addr:place}.`
|
||||
|
||||
This is rendered with This station is found within {addr:place}.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -104,10 +115,13 @@ This is rendered with `This station is found within {addr:place}.`
|
|||
|
||||
|
||||
|
||||
The question is **What agency operates this station?**
|
||||
The question is What agency operates this station?
|
||||
|
||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||
This is rendered with `This station is operated by {operator}.`
|
||||
|
||||
This is rendered with This station is operated by {operator}.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -120,17 +134,20 @@ This is rendered with `This station is operated by {operator}.`
|
|||
|
||||
|
||||
|
||||
The question is **How is the station operator classified?**
|
||||
The question is How is the station operator classified?
|
||||
|
||||
This rendering asks information about the property [operator:type](https://wiki.openstreetmap.org/wiki/Key:operator:type)
|
||||
This is rendered with `The operator is a(n) {operator:type} entity.`
|
||||
|
||||
This is rendered with The operator is a(n) {operator:type} entity.
|
||||
|
||||
|
||||
|
||||
- **The station is operated by the government.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment' target='_blank'>government</a>
|
||||
- **The station is operated by a community-based, or informal organization.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity' target='_blank'>community</a>
|
||||
- **The station is operated by a formal group of volunteers.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dngo' target='_blank'>ngo</a>
|
||||
- **The station is privately operated.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dprivate' target='_blank'>private</a>
|
||||
|
||||
|
||||
- The station is operated by the government. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment' target='_blank'>government</a>`
|
||||
- The station is operated by a community-based, or informal organization. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity' target='_blank'>community</a>`
|
||||
- The station is operated by a formal group of volunteers. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dngo' target='_blank'>ngo</a>`
|
||||
- The station is privately operated. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dprivate' target='_blank'>private</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -139,7 +156,9 @@ This is rendered with `The operator is a(n) {operator:type} entity.`
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/artwork/artwork.svg' height="100px">
|
||||
|
||||
Diverse pieces of artwork
|
||||
An open map of statues, busts, graffitis and other artwork all over the world
|
||||
|
||||
|
||||
|
||||
|
@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -70,7 +72,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -80,25 +84,28 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What is the type of this artwork?**
|
||||
The question is What is the type of this artwork?
|
||||
|
||||
This rendering asks information about the property [artwork_type](https://wiki.openstreetmap.org/wiki/Key:artwork_type)
|
||||
This is rendered with `This is a {artwork_type}`
|
||||
|
||||
This is rendered with This is a {artwork_type}
|
||||
|
||||
|
||||
|
||||
- **Architecture** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture' target='_blank'>architecture</a>
|
||||
- **Mural** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural' target='_blank'>mural</a>
|
||||
- **Painting** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpainting' target='_blank'>painting</a>
|
||||
- **Sculpture** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dsculpture' target='_blank'>sculpture</a>
|
||||
- **Statue** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstatue' target='_blank'>statue</a>
|
||||
- **Bust** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dbust' target='_blank'>bust</a>
|
||||
- **Stone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstone' target='_blank'>stone</a>
|
||||
- **Installation** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dinstallation' target='_blank'>installation</a>
|
||||
- **Graffiti** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dgraffiti' target='_blank'>graffiti</a>
|
||||
- **Relief** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Drelief' target='_blank'>relief</a>
|
||||
- **Azulejo (Spanish decorative tilework)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo' target='_blank'>azulejo</a>
|
||||
- **Tilework** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework' target='_blank'>tilework</a>
|
||||
|
||||
|
||||
- Architecture corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture' target='_blank'>architecture</a>`
|
||||
- Mural corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural' target='_blank'>mural</a>`
|
||||
- Painting corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpainting' target='_blank'>painting</a>`
|
||||
- Sculpture corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dsculpture' target='_blank'>sculpture</a>`
|
||||
- Statue corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstatue' target='_blank'>statue</a>`
|
||||
- Bust corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dbust' target='_blank'>bust</a>`
|
||||
- Stone corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstone' target='_blank'>stone</a>`
|
||||
- Installation corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dinstallation' target='_blank'>installation</a>`
|
||||
- Graffiti corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dgraffiti' target='_blank'>graffiti</a>`
|
||||
- Relief corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Drelief' target='_blank'>relief</a>`
|
||||
- Azulejo (Spanish decorative tilework) corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo' target='_blank'>azulejo</a>`
|
||||
- Tilework corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework' target='_blank'>tilework</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -107,10 +114,13 @@ This is rendered with `This is a {artwork_type}`
|
|||
|
||||
|
||||
|
||||
The question is **Which artist created this?**
|
||||
The question is Which artist created this?
|
||||
|
||||
This rendering asks information about the property [artist_name](https://wiki.openstreetmap.org/wiki/Key:artist_name)
|
||||
This is rendered with `Created by {artist_name}`
|
||||
|
||||
This is rendered with Created by {artist_name}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -118,10 +128,13 @@ This is rendered with `Created by {artist_name}`
|
|||
|
||||
|
||||
|
||||
The question is **Is there a website with more information about this artwork?**
|
||||
The question is Is there a website with more information about this artwork?
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `More information on <a href='{website}' target='_blank'>this website</a>`
|
||||
|
||||
This is rendered with More information on <a href='{website}' target='_blank'>this website</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -129,9 +142,12 @@ This is rendered with `More information on <a href='{website}' target='_blank'>t
|
|||
|
||||
|
||||
|
||||
The question is **Which Wikidata-entry corresponds with <b>this artwork</b>?**
|
||||
The question is Which Wikidata-entry corresponds with <b>this artwork</b>?
|
||||
|
||||
This rendering asks information about the property [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata)
|
||||
This is rendered with `Corresponds with <a href='https://www.wikidata.org/wiki/{wikidata}' target='_blank'>{wikidata}</a>`
|
||||
|
||||
This is rendered with Corresponds with <a href='https://www.wikidata.org/wiki/{wikidata}' target='_blank'>{wikidata}</a>
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/artwork/artwork.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/artwork/artwork.json)
|
|
@ -54,7 +54,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -64,10 +66,10 @@ attribute | type | values which are supported by this layer
|
|||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/maxwidth:physical#values) [maxwidth:physical](https://wiki.openstreetmap.org/wiki/Key:maxwidth:physical) | [length](../SpecialInputElements.md#length) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/width:separation#values) [width:separation](https://wiki.openstreetmap.org/wiki/Key:width:separation) | [length](../SpecialInputElements.md#length) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/width:opening#values) [width:opening](https://wiki.openstreetmap.org/wiki/Key:width:opening) | [length](../SpecialInputElements.md#length) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/overlap#values) [overlap](https://wiki.openstreetmap.org/wiki/Key:overlap) | [length](../SpecialInputElements.md#length) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/maxwidth:physical#values) [maxwidth:physical](https://wiki.openstreetmap.org/wiki/Key:maxwidth:physical) | [distance](../SpecialInputElements.md#distance) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/width:separation#values) [width:separation](https://wiki.openstreetmap.org/wiki/Key:width:separation) | [distance](../SpecialInputElements.md#distance) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/width:opening#values) [width:opening](https://wiki.openstreetmap.org/wiki/Key:width:opening) | [distance](../SpecialInputElements.md#distance) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/overlap#values) [overlap](https://wiki.openstreetmap.org/wiki/Key:overlap) | [distance](../SpecialInputElements.md#distance) |
|
||||
|
||||
|
||||
|
||||
|
@ -76,14 +78,14 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
The question is **Can a bicycle go past this barrier?**
|
||||
The question is Can a bicycle go past this barrier?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **A cyclist can go past this.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes' target='_blank'>yes</a>
|
||||
- **A cyclist can not go past this.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno' target='_blank'>no</a>
|
||||
- A cyclist can go past this. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes' target='_blank'>yes</a>`
|
||||
- A cyclist can not go past this. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -92,14 +94,14 @@ The question is **Can a bicycle go past this barrier?**
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This is a single bollard in the road** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dbollard' target='_blank'>bollard</a>
|
||||
- **This is a cycle barrier slowing down cyclists** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcycle_barrier' target='_blank'>cycle_barrier</a>
|
||||
- This is a single bollard in the road corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dbollard' target='_blank'>bollard</a>`
|
||||
- This is a cycle barrier slowing down cyclists corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcycle_barrier' target='_blank'>cycle_barrier</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -108,20 +110,20 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What kind of bollard is this?**
|
||||
The question is What kind of bollard is this?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Removable bollard** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dremovable' target='_blank'>removable</a>
|
||||
- **Fixed bollard** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dfixed' target='_blank'>fixed</a>
|
||||
- **Bollard that can be folded down** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dfoldable' target='_blank'>foldable</a>
|
||||
- **Flexible bollard, usually plastic** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dflexible' target='_blank'>flexible</a>
|
||||
- **Rising bollard** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Drising' target='_blank'>rising</a>
|
||||
- Removable bollard corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dremovable' target='_blank'>removable</a>`
|
||||
- Fixed bollard corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dfixed' target='_blank'>fixed</a>`
|
||||
- Bollard that can be folded down corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dfoldable' target='_blank'>foldable</a>`
|
||||
- Flexible bollard, usually plastic corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dflexible' target='_blank'>flexible</a>`
|
||||
- Rising bollard corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Drising' target='_blank'>rising</a>`
|
||||
|
||||
|
||||
Only visible if `barrier=bollard` is shown
|
||||
Only visible if `barrier=bollard` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -129,19 +131,19 @@ Only visible if `barrier=bollard` is shown
|
|||
|
||||
|
||||
|
||||
The question is **What kind of cycling barrier is this?**
|
||||
The question is What kind of cycling barrier is this?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Single, just two barriers with a space inbetween** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dsingle' target='_blank'>single</a>
|
||||
- **Double, two barriers behind each other** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Ddouble' target='_blank'>double</a>
|
||||
- **Triple, three barriers behind each other** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dtriple' target='_blank'>triple</a>
|
||||
- **Squeeze gate, gap is smaller at top, than at the bottom** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dsqueeze' target='_blank'>squeeze</a>
|
||||
- Single, just two barriers with a space inbetween corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dsingle' target='_blank'>single</a>`
|
||||
- Double, two barriers behind each other corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Ddouble' target='_blank'>double</a>`
|
||||
- Triple, three barriers behind each other corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dtriple' target='_blank'>triple</a>`
|
||||
- Squeeze gate, gap is smaller at top, than at the bottom corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dsqueeze' target='_blank'>squeeze</a>`
|
||||
|
||||
|
||||
Only visible if `barrier=cycle_barrier` is shown
|
||||
Only visible if `barrier=cycle_barrier` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -149,10 +151,13 @@ Only visible if `barrier=cycle_barrier` is shown
|
|||
|
||||
|
||||
|
||||
The question is **How wide is the gap left over besides the barrier?**
|
||||
The question is How wide is the gap left over besides the barrier?
|
||||
|
||||
This rendering asks information about the property [maxwidth:physical](https://wiki.openstreetmap.org/wiki/Key:maxwidth:physical)
|
||||
This is rendered with `Maximum width: {maxwidth:physical} m`
|
||||
|
||||
This is rendered with Maximum width: {maxwidth:physical} m
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -160,12 +165,15 @@ This is rendered with `Maximum width: {maxwidth:physical} m`
|
|||
|
||||
|
||||
|
||||
The question is **How much space is there between the barriers (along the length of the road)?**
|
||||
The question is How much space is there between the barriers (along the length of the road)?
|
||||
|
||||
This rendering asks information about the property [width:separation](https://wiki.openstreetmap.org/wiki/Key:width:separation)
|
||||
This is rendered with `Space between barriers (along the length of the road): {width:separation} m`
|
||||
|
||||
Only visible if `cycle_barrier=double|cycle_barrier=triple` is shown
|
||||
This is rendered with Space between barriers (along the length of the road): {width:separation} m
|
||||
|
||||
|
||||
|
||||
Only visible if `cycle_barrier=double|cycle_barrier=triple` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -173,12 +181,15 @@ Only visible if `cycle_barrier=double|cycle_barrier=triple` is shown
|
|||
|
||||
|
||||
|
||||
The question is **How wide is the smallest opening next to the barriers?**
|
||||
The question is How wide is the smallest opening next to the barriers?
|
||||
|
||||
This rendering asks information about the property [width:opening](https://wiki.openstreetmap.org/wiki/Key:width:opening)
|
||||
This is rendered with `Width of opening: {width:opening} m`
|
||||
|
||||
Only visible if `cycle_barrier=double|cycle_barrier=triple` is shown
|
||||
This is rendered with Width of opening: {width:opening} m
|
||||
|
||||
|
||||
|
||||
Only visible if `cycle_barrier=double|cycle_barrier=triple` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -186,11 +197,14 @@ Only visible if `cycle_barrier=double|cycle_barrier=triple` is shown
|
|||
|
||||
|
||||
|
||||
The question is **How much overlap do the barriers have?**
|
||||
The question is How much overlap do the barriers have?
|
||||
|
||||
This rendering asks information about the property [overlap](https://wiki.openstreetmap.org/wiki/Key:overlap)
|
||||
This is rendered with `Overlap: {overlap} m`
|
||||
|
||||
Only visible if `cycle_barrier=double|cycle_barrier=triple` is shown
|
||||
This is rendered with Overlap: {overlap} m
|
||||
|
||||
|
||||
|
||||
Only visible if `cycle_barrier=double|cycle_barrier=triple` is shown
|
||||
|
||||
This document is autogenerated from [assets/layers/barrier/barrier.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/barrier/barrier.json)
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/bench/bench.svg' height="100px">
|
||||
|
||||
A bench is a wooden, metal, stone, ... surface where a human can sit. This layers visualises them and asks a few questions about them.
|
||||
A bench is a wooden, metal, stone, … surface where a human can sit. This layers visualises them and asks a few questions about them.
|
||||
|
||||
|
||||
|
||||
|
@ -53,7 +53,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -73,7 +75,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -83,14 +87,14 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **Does this bench have a backrest?**
|
||||
The question is Does this bench have a backrest?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Backrest: Yes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:backrest' target='_blank'>backrest</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes' target='_blank'>yes</a>
|
||||
- **Backrest: No** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:backrest' target='_blank'>backrest</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dno' target='_blank'>no</a>
|
||||
- Backrest: Yes corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:backrest' target='_blank'>backrest</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes' target='_blank'>yes</a>`
|
||||
- Backrest: No corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:backrest' target='_blank'>backrest</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -99,10 +103,13 @@ The question is **Does this bench have a backrest?**
|
|||
|
||||
|
||||
|
||||
The question is **How many seats does this bench have?**
|
||||
The question is How many seats does this bench have?
|
||||
|
||||
This rendering asks information about the property [seats](https://wiki.openstreetmap.org/wiki/Key:seats)
|
||||
This is rendered with `{seats} seats`
|
||||
|
||||
This is rendered with {seats} seats
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -110,19 +117,22 @@ This is rendered with `{seats} seats`
|
|||
|
||||
|
||||
|
||||
The question is **What is the bench (seating) made from?**
|
||||
The question is What is the bench (seating) made from?
|
||||
|
||||
This rendering asks information about the property [material](https://wiki.openstreetmap.org/wiki/Key:material)
|
||||
This is rendered with `Material: {material}`
|
||||
|
||||
This is rendered with Material: {material}
|
||||
|
||||
|
||||
|
||||
- **Material: wood** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood' target='_blank'>wood</a>
|
||||
- **Material: metal** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dmetal' target='_blank'>metal</a>
|
||||
- **Material: stone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dstone' target='_blank'>stone</a>
|
||||
- **Material: concrete** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete' target='_blank'>concrete</a>
|
||||
- **Material: plastic** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dplastic' target='_blank'>plastic</a>
|
||||
- **Material: steel** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dsteel' target='_blank'>steel</a>
|
||||
|
||||
|
||||
- Material: wood corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood' target='_blank'>wood</a>`
|
||||
- Material: metal corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dmetal' target='_blank'>metal</a>`
|
||||
- Material: stone corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dstone' target='_blank'>stone</a>`
|
||||
- Material: concrete corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete' target='_blank'>concrete</a>`
|
||||
- Material: plastic corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dplastic' target='_blank'>plastic</a>`
|
||||
- Material: steel corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dsteel' target='_blank'>steel</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -131,10 +141,13 @@ This is rendered with `Material: {material}`
|
|||
|
||||
|
||||
|
||||
The question is **In which direction are you looking when sitting on the bench?**
|
||||
The question is In which direction are you looking when sitting on the bench?
|
||||
|
||||
This rendering asks information about the property [direction](https://wiki.openstreetmap.org/wiki/Key:direction)
|
||||
This is rendered with `When sitting on the bench, one looks towards {direction}°.`
|
||||
|
||||
This is rendered with When sitting on the bench, one looks towards {direction}°.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -142,21 +155,24 @@ This is rendered with `When sitting on the bench, one looks towards {direction}
|
|||
|
||||
|
||||
|
||||
The question is **Which colour does this bench have?**
|
||||
The question is Which colour does this bench have?
|
||||
|
||||
This rendering asks information about the property [colour](https://wiki.openstreetmap.org/wiki/Key:colour)
|
||||
This is rendered with `Colour: {colour}`
|
||||
|
||||
This is rendered with Colour: {colour}
|
||||
|
||||
|
||||
|
||||
- **Colour: brown** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dbrown' target='_blank'>brown</a>
|
||||
- **Colour: green** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgreen' target='_blank'>green</a>
|
||||
- **Colour: gray** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgray' target='_blank'>gray</a>
|
||||
- **Colour: white** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dwhite' target='_blank'>white</a>
|
||||
- **Colour: red** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred' target='_blank'>red</a>
|
||||
- **Colour: black** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblack' target='_blank'>black</a>
|
||||
- **Colour: blue** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblue' target='_blank'>blue</a>
|
||||
- **Colour: yellow** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow' target='_blank'>yellow</a>
|
||||
|
||||
|
||||
- Colour: brown corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dbrown' target='_blank'>brown</a>`
|
||||
- Colour: green corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgreen' target='_blank'>green</a>`
|
||||
- Colour: gray corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgray' target='_blank'>gray</a>`
|
||||
- Colour: white corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dwhite' target='_blank'>white</a>`
|
||||
- Colour: red corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred' target='_blank'>red</a>`
|
||||
- Colour: black corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblack' target='_blank'>black</a>`
|
||||
- Colour: blue corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblue' target='_blank'>blue</a>`
|
||||
- Colour: yellow corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow' target='_blank'>yellow</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -165,14 +181,17 @@ This is rendered with `Colour: {colour}`
|
|||
|
||||
|
||||
|
||||
The question is **When was this bench last surveyed?**
|
||||
The question is When was this bench last surveyed?
|
||||
|
||||
This rendering asks information about the property [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date)
|
||||
This is rendered with `This bench was last surveyed on {survey:date}`
|
||||
|
||||
This is rendered with This bench was last surveyed on {survey:date}
|
||||
|
||||
|
||||
|
||||
- **Surveyed today!** corresponds with survey:date=
|
||||
|
||||
|
||||
- Surveyed today! corresponds with `survey:date=`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/bench/bench.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bench/bench.json)
|
|
@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -68,7 +70,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -78,10 +82,13 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
This is rendered with `{name}`
|
||||
|
||||
This is rendered with {name}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -89,15 +96,15 @@ This is rendered with `{name}`
|
|||
|
||||
|
||||
|
||||
The question is **What kind of bench is this?**
|
||||
The question is What kind of bench is this?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **There is a normal, sit-down bench here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dyes' target='_blank'>yes</a>
|
||||
- **Stand up bench** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dstand_up_bench' target='_blank'>stand_up_bench</a>
|
||||
- **There is no bench here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dno' target='_blank'>no</a>
|
||||
- There is a normal, sit-down bench here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dyes' target='_blank'>yes</a>`
|
||||
- Stand up bench corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dstand_up_bench' target='_blank'>stand_up_bench</a>`
|
||||
- There is no bench here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
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)
|
|
@ -53,7 +53,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -75,7 +77,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -85,10 +89,13 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What is the name of this bicycle library?**
|
||||
The question is What is the name of this bicycle library?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
This is rendered with `This bicycle library is called {name}`
|
||||
|
||||
This is rendered with This bicycle library is called {name}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -96,14 +103,18 @@ This is rendered with `This bicycle library is called {name}`
|
|||
|
||||
|
||||
|
||||
The question is **What is the website of {title()}?**
|
||||
The question is What is the website of {title()}?
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||
|
||||
This is rendered with <a href='{website}' target='_blank'>{website}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='{contact:website}' target='_blank'>{contact:website}</a> corresponds with `contact:website~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -112,14 +123,18 @@ This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **What is the phone number of {title()}?**
|
||||
The question is What is the phone number of {title()}?
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||
|
||||
This is rendered with <a href='tel:{phone}'>{phone}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='tel:{contact:phone}'>{contact:phone}</a> corresponds with `contact:phone~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -128,14 +143,18 @@ This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **What is the email address of {title()}?**
|
||||
The question is What is the email address of {title()}?
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||
|
||||
This is rendered with <a href='mailto:{email}' target='_blank'>{email}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='mailto:{contact:email}' target='_blank'>{contact:email}</a> corresponds with `contact:email~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -144,10 +163,13 @@ This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **What are the opening hours of {title()}?**
|
||||
The question is What are the opening hours of {title()}?
|
||||
|
||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||
|
||||
This is rendered with <h3>Opening hours</h3>{opening_hours_table(opening_hours)}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -155,15 +177,18 @@ This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)
|
|||
|
||||
|
||||
|
||||
The question is **How much does lending a bicycle cost?**
|
||||
The question is How much does lending a bicycle cost?
|
||||
|
||||
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
||||
This is rendered with `Lending a bicycle costs {charge}`
|
||||
|
||||
This is rendered with Lending a bicycle costs {charge}
|
||||
|
||||
|
||||
|
||||
- **Lending a bicycle is free** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>
|
||||
- **Lending a bicycle costs €20/year and €20 warranty** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:charge' target='_blank'>charge</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:charge%3D€20warranty + €20/year' target='_blank'>€20warranty + €20/year</a>
|
||||
|
||||
|
||||
- Lending a bicycle is free corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>`
|
||||
- Lending a bicycle costs €20/year and €20 warranty corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:charge' target='_blank'>charge</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:charge%3D€20warranty + €20/year' target='_blank'>€20warranty + €20/year</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -172,15 +197,15 @@ This is rendered with `Lending a bicycle costs {charge}`
|
|||
|
||||
|
||||
|
||||
The question is **Who can lend bicycles here?**
|
||||
The question is Who can loan bicycles here?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Bikes for children available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_library:for' target='_blank'>bicycle_library:for</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dchild' target='_blank'>child</a>
|
||||
- **Bikes for adult available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_library:for' target='_blank'>bicycle_library:for</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dadult' target='_blank'>adult</a>
|
||||
- **Bikes for disabled persons available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_library:for' target='_blank'>bicycle_library:for</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Ddisabled' target='_blank'>disabled</a>
|
||||
- Bikes for children available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_library:for' target='_blank'>bicycle_library:for</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dchild' target='_blank'>child</a>`
|
||||
- Bikes for adult available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_library:for' target='_blank'>bicycle_library:for</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dadult' target='_blank'>adult</a>`
|
||||
- Bikes for disabled persons available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_library:for' target='_blank'>bicycle_library:for</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Ddisabled' target='_blank'>disabled</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -189,9 +214,12 @@ The question is **Who can lend bicycles here?**
|
|||
|
||||
|
||||
|
||||
The question is **Is there still something relevant you couldn't give in the previous questions? Add it here.<br/><span style='font-size: small'>Don't repeat already stated facts</span>**
|
||||
The question is Is there still something relevant you couldn't give in the previous questions? Add it here.<br/><span style='font-size: small'>Don't repeat already stated facts</span>
|
||||
|
||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||
This is rendered with `{description}`
|
||||
|
||||
This is rendered with {description}
|
||||
|
||||
|
||||
|
||||
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)
|
|
@ -26,6 +26,7 @@ Bicycle rental stations
|
|||
|
||||
|
||||
- [bicycle_rental](https://mapcomplete.osm.be/bicycle_rental)
|
||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
|
@ -52,7 +53,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -62,7 +65,7 @@ attribute | type | values which are supported by this layer
|
|||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity:ebike#values) [capacity:ebike](https://wiki.openstreetmap.org/wiki/Key:capacity:ebike) | [pnat](../SpecialInputElements.md#pnat) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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) |
|
||||
|
@ -78,7 +81,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -88,20 +93,21 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What kind of bicycle rental is this?**
|
||||
The question is What kind of bicycle rental is this?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This is a shop whose main focus is bicycle rental** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Drental' target='_blank'>rental</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_rental' target='_blank'>bicycle_rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_rental%3Dshop' target='_blank'>shop</a>
|
||||
- **This is a rental buisiness which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental' target='_blank'>service:bicycle:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dyes' target='_blank'>yes</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbicycle' target='_blank'>bicycle</a>
|
||||
- **This is a shop which sells or repairs bicycles, but also rents out bicycles** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_rental' target='_blank'>bicycle_rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_rental%3Ddocking_station' target='_blank'>docking_station</a>
|
||||
- **This is an automated docking station, where a bicycle is mechanically locked into a structure** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_rental' target='_blank'>bicycle_rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_rental%3Dkey_dispensing_machine' target='_blank'>key_dispensing_machine</a>
|
||||
- **A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_rental' target='_blank'>bicycle_rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_rental%3Ddropoff_point' target='_blank'>dropoff_point</a>
|
||||
- This is a shop whose main focus is bicycle rental corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Drental' target='_blank'>rental</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_rental' target='_blank'>bicycle_rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_rental%3Dshop' target='_blank'>shop</a>`
|
||||
- This is a rental buisiness which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Drental' target='_blank'>rental</a>`
|
||||
- This is a shop which sells or repairs bicycles, but also rents out bicycles corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental' target='_blank'>service:bicycle:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dyes' target='_blank'>yes</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbicycle' target='_blank'>bicycle</a>`
|
||||
- This is an automated docking station, where a bicycle is mechanically locked into a structure corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_rental' target='_blank'>bicycle_rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_rental%3Ddocking_station' target='_blank'>docking_station</a>`
|
||||
- A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_rental' target='_blank'>bicycle_rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_rental%3Dkey_dispensing_machine' target='_blank'>key_dispensing_machine</a>`
|
||||
- This is a dropoff point, e.g. a reserved parking to place the bicycles which clearly marked as being for the rental service only corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_rental' target='_blank'>bicycle_rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_rental%3Ddropoff_point' target='_blank'>dropoff_point</a>`
|
||||
|
||||
|
||||
Only visible if `amenity=bicycle_rental` is shown
|
||||
Only visible if `amenity=bicycle_rental` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -109,14 +115,18 @@ Only visible if `amenity=bicycle_rental` is shown
|
|||
|
||||
|
||||
|
||||
The question is **What is the website of {title()}?**
|
||||
The question is What is the website of {title()}?
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||
|
||||
This is rendered with <a href='{website}' target='_blank'>{website}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='{contact:website}' target='_blank'>{contact:website}</a> corresponds with `contact:website~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -125,14 +135,18 @@ This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **What is the email address of {title()}?**
|
||||
The question is What is the email address of {title()}?
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||
|
||||
This is rendered with <a href='mailto:{email}' target='_blank'>{email}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='mailto:{contact:email}' target='_blank'>{contact:email}</a> corresponds with `contact:email~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -141,14 +155,18 @@ This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **What is the phone number of {title()}?**
|
||||
The question is What is the phone number of {title()}?
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||
|
||||
This is rendered with <a href='tel:{phone}'>{phone}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='tel:{contact:phone}'>{contact:phone}</a> corresponds with `contact:phone~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -157,12 +175,15 @@ This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **What are the opening hours of {title()}?**
|
||||
The question is What are the opening hours of {title()}?
|
||||
|
||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||
|
||||
Only visible if `shop~^..*$|opening_hours~^..*$` is shown
|
||||
This is rendered with <h3>Opening hours</h3>{opening_hours_table(opening_hours)}
|
||||
|
||||
|
||||
|
||||
Only visible if `shop~^..*$|opening_hours~^..*$` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -170,17 +191,19 @@ Only visible if `shop~^..*$|opening_hours~^..*$` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Which methods of payment are accepted here?**
|
||||
The question is Which methods of payment are accepted here?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Cash is accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dno' target='_blank'>no</a>
|
||||
- **Payment cards are accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||
- Cash is accepted here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dno' target='_blank'>no</a>
|
||||
- Payment cards are accepted here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
Only visible if `shop~^..*$` is shown
|
||||
Only visible if `shop~^..*$` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -188,16 +211,20 @@ Only visible if `shop~^..*$` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Which methods of payment are accepted here?**
|
||||
The question is Which methods of payment are accepted here?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Cash is accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dno' target='_blank'>no</a>
|
||||
- **Payment cards are accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||
- **Payment is done using a dedicated app** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:app' target='_blank'>payment:app</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:app%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:app' target='_blank'>payment:app</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:app%3Dno' target='_blank'>no</a>
|
||||
- **Payment is done using a membership card** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:membership_card' target='_blank'>payment:membership_card</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:membership_card%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:membership_card' target='_blank'>payment:membership_card</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:membership_card%3Dno' target='_blank'>no</a>
|
||||
- Cash is accepted here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dno' target='_blank'>no</a>
|
||||
- Payment cards are accepted here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||
- Payment is done using a dedicated app corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:payment:app' target='_blank'>payment:app</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:app%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:app' target='_blank'>payment:app</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:app%3Dno' target='_blank'>no</a>
|
||||
- Payment is done using a membership card corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:payment:membership_card' target='_blank'>payment:membership_card</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:membership_card%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:membership_card' target='_blank'>payment:membership_card</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:membership_card%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
@ -206,20 +233,24 @@ The question is **Which methods of payment are accepted here?**
|
|||
|
||||
|
||||
|
||||
The question is **What kind of bicycles and accessories are rented here?**
|
||||
The question is What kind of bicycles and accessories are rented here?
|
||||
|
||||
This rendering asks information about the property [rental](https://wiki.openstreetmap.org/wiki/Key:rental)
|
||||
This is rendered with `{rental} is rented here`
|
||||
|
||||
This is rendered with {rental} is rented here
|
||||
|
||||
|
||||
|
||||
- **Normal city bikes can be rented here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dcity_bike' target='_blank'>city_bike</a>
|
||||
- **Electrical bikes can be rented here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Debike' target='_blank'>ebike</a>
|
||||
- **BMX bikes can be rented here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbmx' target='_blank'>bmx</a>
|
||||
- **Mountainbikes can be rented here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dmtb' target='_blank'>mtb</a>
|
||||
- **Bikes for childs can be rented here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dkid_bike' target='_blank'>kid_bike</a>
|
||||
- **Tandem bicycles can be rented here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dtandem' target='_blank'>tandem</a>
|
||||
- **Race bicycles can be rented here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dracebike' target='_blank'>racebike</a>
|
||||
|
||||
|
||||
- Normal city bikes can be rented here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dcity_bike' target='_blank'>city_bike</a>`
|
||||
- Electrical bikes can be rented here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Debike' target='_blank'>ebike</a>`
|
||||
- BMX bikes can be rented here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbmx' target='_blank'>bmx</a>`
|
||||
- Mountainbikes can be rented here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dmtb' target='_blank'>mtb</a>`
|
||||
- Bikes for children can be rented here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dkid_bike' target='_blank'>kid_bike</a>`
|
||||
- Tandem bicycles can be rented here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dtandem' target='_blank'>tandem</a>`
|
||||
- Race bicycles can be rented here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dracebike' target='_blank'>racebike</a>`
|
||||
- Bike helmets can be rented here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbike_helmet' target='_blank'>bike_helmet</a>`
|
||||
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
@ -230,12 +261,15 @@ This tagrendering has labels `bicycle_rental`
|
|||
|
||||
|
||||
|
||||
The question is **How much city bikes can be rented here? **
|
||||
The question is How much city bikes can be rented here?
|
||||
|
||||
This rendering asks information about the property [capacity:city_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:city_bike)
|
||||
This is rendered with `{capacity:city_bike} city bikes can be rented here`
|
||||
|
||||
Only visible if `rental~^.*city_bike.*$` is shown
|
||||
This is rendered with {capacity:city_bike} city bikes can be rented here
|
||||
|
||||
|
||||
|
||||
Only visible if `rental~^.*city_bike.*$` is shown
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
@ -245,12 +279,15 @@ This tagrendering has labels `bicycle_rental`
|
|||
|
||||
|
||||
|
||||
The question is **How much electrical bikes can be rented here? **
|
||||
The question is How much electrical bikes can be rented here?
|
||||
|
||||
This rendering asks information about the property [capacity:ebike](https://wiki.openstreetmap.org/wiki/Key:capacity:ebike)
|
||||
This is rendered with `{capacity:ebike} electrical bikes can be rented here`
|
||||
|
||||
Only visible if `rental~^.*ebike.*$` is shown
|
||||
This is rendered with {capacity:ebike} electrical bikes can be rented here
|
||||
|
||||
|
||||
|
||||
Only visible if `rental~^.*ebike.*$` is shown
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
@ -260,12 +297,15 @@ This tagrendering has labels `bicycle_rental`
|
|||
|
||||
|
||||
|
||||
The question is **How much bikes for children can be rented here? **
|
||||
The question is How much bikes for children can be rented here?
|
||||
|
||||
This rendering asks information about the property [capacity:kid_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:kid_bike)
|
||||
This is rendered with `{capacity:kid_bike} bikes for children can be rented here`
|
||||
|
||||
Only visible if `rental~^.*kid_bike.*$` is shown
|
||||
This is rendered with {capacity:kid_bike} bikes for children can be rented here
|
||||
|
||||
|
||||
|
||||
Only visible if `rental~^.*kid_bike.*$` is shown
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
@ -275,12 +315,15 @@ This tagrendering has labels `bicycle_rental`
|
|||
|
||||
|
||||
|
||||
The question is **How much BMX bikes can be rented here? **
|
||||
The question is How much BMX bikes can be rented here?
|
||||
|
||||
This rendering asks information about the property [capacity:bmx](https://wiki.openstreetmap.org/wiki/Key:capacity:bmx)
|
||||
This is rendered with `{capacity:bmx} BMX bikes can be rented here`
|
||||
|
||||
Only visible if `rental~^.*bmx.*$` is shown
|
||||
This is rendered with {capacity:bmx} BMX bikes can be rented here
|
||||
|
||||
|
||||
|
||||
Only visible if `rental~^.*bmx.*$` is shown
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
@ -290,12 +333,15 @@ This tagrendering has labels `bicycle_rental`
|
|||
|
||||
|
||||
|
||||
The question is **How much mountainbike can be rented here? **
|
||||
The question is How much mountainbike can be rented here?
|
||||
|
||||
This rendering asks information about the property [capacity:mtb](https://wiki.openstreetmap.org/wiki/Key:capacity:mtb)
|
||||
This is rendered with `{capacity:mtb} mountainbike can be rented here`
|
||||
|
||||
Only visible if `rental~^.*mtb.*$` is shown
|
||||
This is rendered with {capacity:mtb} mountainbike can be rented here
|
||||
|
||||
|
||||
|
||||
Only visible if `rental~^.*mtb.*$` is shown
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
@ -305,12 +351,15 @@ This tagrendering has labels `bicycle_rental`
|
|||
|
||||
|
||||
|
||||
The question is **How much bicycle panniers can be rented here? **
|
||||
The question is How much bicycle panniers can be rented here?
|
||||
|
||||
This rendering asks information about the property [capacity:bicycle_pannier](https://wiki.openstreetmap.org/wiki/Key:capacity:bicycle_pannier)
|
||||
This is rendered with `{capacity:bicycle_pannier} bicycle panniers can be rented here`
|
||||
|
||||
Only visible if `rental~^.*bicycle_pannier.*$` is shown
|
||||
This is rendered with {capacity:bicycle_pannier} bicycle panniers can be rented here
|
||||
|
||||
|
||||
|
||||
Only visible if `rental~^.*bicycle_pannier.*$` is shown
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
@ -320,12 +369,15 @@ This tagrendering has labels `bicycle_rental`
|
|||
|
||||
|
||||
|
||||
The question is **How much tandem can be rented here? **
|
||||
The question is How much tandem can be rented here?
|
||||
|
||||
This rendering asks information about the property [capacity:tandem_bicycle](https://wiki.openstreetmap.org/wiki/Key:capacity:tandem_bicycle)
|
||||
This is rendered with `{capacity:tandem_bicycle} tandem can be rented here`
|
||||
|
||||
Only visible if `rental~^.*tandem_bicycle.*$` is shown
|
||||
This is rendered with {capacity:tandem_bicycle} tandem can be rented here
|
||||
|
||||
|
||||
|
||||
Only visible if `rental~^.*tandem_bicycle.*$` is shown
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
|
407
Docs/Layers/bicycle_rental_non_docking.md
Normal file
407
Docs/Layers/bicycle_rental_non_docking.md
Normal file
|
@ -0,0 +1,407 @@
|
|||
|
||||
|
||||
bicycle_rental_non_docking
|
||||
============================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/pin:#ba2792;./assets/themes/cyclofix/key.svg' height="100px">
|
||||
|
||||
Bicycle rental stations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **14** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_rental' target='_blank'>bicycle_rental</a>|bicycle_rental~^..*$|<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental' target='_blank'>service:bicycle:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dyes' target='_blank'>yes</a>|rental~^.*bicycle.*$
|
||||
- bicycle_rental!=docking_station
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22bicycle_rental%22%5D%5B%22bicycle_rental%22!%3D%22docking_station%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22service%3Abicycle%3Arental%22%3D%22yes%22%5D%5B%22bicycle_rental%22!%3D%22docking_station%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22bicycle_rental%22%5D%5B%22bicycle_rental%22!%3D%22docking_station%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22rental%22~%22%5E.*bicycle.*%24%22%5D%5B%22bicycle_rental%22!%3D%22docking_station%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity:ebike#values) [capacity:ebike](https://wiki.openstreetmap.org/wiki/Key:capacity:ebike) | [pnat](../SpecialInputElements.md#pnat) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity:bmx#values) [capacity:bmx](https://wiki.openstreetmap.org/wiki/Key:capacity:bmx) | [pnat](../SpecialInputElements.md#pnat) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity:mtb#values) [capacity:mtb](https://wiki.openstreetmap.org/wiki/Key:capacity:mtb) | [pnat](../SpecialInputElements.md#pnat) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### bicycle_rental_type
|
||||
|
||||
|
||||
|
||||
The question is What kind of bicycle rental is this?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This is a shop whose main focus is bicycle rental corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Drental' target='_blank'>rental</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_rental' target='_blank'>bicycle_rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_rental%3Dshop' target='_blank'>shop</a>`
|
||||
- This is a rental buisiness which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Drental' target='_blank'>rental</a>`
|
||||
- This is a shop which sells or repairs bicycles, but also rents out bicycles corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental' target='_blank'>service:bicycle:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dyes' target='_blank'>yes</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbicycle' target='_blank'>bicycle</a>`
|
||||
- This is an automated docking station, where a bicycle is mechanically locked into a structure corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_rental' target='_blank'>bicycle_rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_rental%3Ddocking_station' target='_blank'>docking_station</a>`
|
||||
- A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_rental' target='_blank'>bicycle_rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_rental%3Dkey_dispensing_machine' target='_blank'>key_dispensing_machine</a>`
|
||||
- This is a dropoff point, e.g. a reserved parking to place the bicycles which clearly marked as being for the rental service only corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_rental' target='_blank'>bicycle_rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_rental%3Ddropoff_point' target='_blank'>dropoff_point</a>`
|
||||
|
||||
|
||||
Only visible if `amenity=bicycle_rental` is shown
|
||||
|
||||
|
||||
|
||||
### website
|
||||
|
||||
|
||||
|
||||
The question is What is the website of {title()}?
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
|
||||
This is rendered with <a href='{website}' target='_blank'>{website}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='{contact:website}' target='_blank'>{contact:website}</a> corresponds with `contact:website~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### email
|
||||
|
||||
|
||||
|
||||
The question is What is the email address of {title()}?
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
|
||||
This is rendered with <a href='mailto:{email}' target='_blank'>{email}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='mailto:{contact:email}' target='_blank'>{contact:email}</a> corresponds with `contact:email~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### phone
|
||||
|
||||
|
||||
|
||||
The question is What is the phone number of {title()}?
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
|
||||
This is rendered with <a href='tel:{phone}'>{phone}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='tel:{contact:phone}'>{contact:phone}</a> corresponds with `contact:phone~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### opening_hours
|
||||
|
||||
|
||||
|
||||
The question is What are the opening hours of {title()}?
|
||||
|
||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||
|
||||
This is rendered with <h3>Opening hours</h3>{opening_hours_table(opening_hours)}
|
||||
|
||||
|
||||
|
||||
Only visible if `shop~^..*$|opening_hours~^..*$` is shown
|
||||
|
||||
|
||||
|
||||
### payment-options
|
||||
|
||||
|
||||
|
||||
The question is Which methods of payment are accepted here?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Cash is accepted here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dno' target='_blank'>no</a>
|
||||
- Payment cards are accepted here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
Only visible if `shop~^..*$` is shown
|
||||
|
||||
|
||||
|
||||
### payment-options-advanced
|
||||
|
||||
|
||||
|
||||
The question is Which methods of payment are accepted here?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Cash is accepted here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dno' target='_blank'>no</a>
|
||||
- Payment cards are accepted here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||
- Payment is done using a dedicated app corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:payment:app' target='_blank'>payment:app</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:app%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:app' target='_blank'>payment:app</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:app%3Dno' target='_blank'>no</a>
|
||||
- Payment is done using a membership card corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:payment:membership_card' target='_blank'>payment:membership_card</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:membership_card%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:membership_card' target='_blank'>payment:membership_card</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:membership_card%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### bicycle-types
|
||||
|
||||
|
||||
|
||||
The question is What kind of bicycles and accessories are rented here?
|
||||
|
||||
This rendering asks information about the property [rental](https://wiki.openstreetmap.org/wiki/Key:rental)
|
||||
|
||||
This is rendered with {rental} is rented here
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Normal city bikes can be rented here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dcity_bike' target='_blank'>city_bike</a>`
|
||||
- Electrical bikes can be rented here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Debike' target='_blank'>ebike</a>`
|
||||
- BMX bikes can be rented here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbmx' target='_blank'>bmx</a>`
|
||||
- Mountainbikes can be rented here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dmtb' target='_blank'>mtb</a>`
|
||||
- Bikes for children can be rented here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dkid_bike' target='_blank'>kid_bike</a>`
|
||||
- Tandem bicycles can be rented here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dtandem' target='_blank'>tandem</a>`
|
||||
- Race bicycles can be rented here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dracebike' target='_blank'>racebike</a>`
|
||||
- Bike helmets can be rented here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbike_helmet' target='_blank'>bike_helmet</a>`
|
||||
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
||||
|
||||
### rental-capacity-city_bike
|
||||
|
||||
|
||||
|
||||
The question is How much city bikes can be rented here?
|
||||
|
||||
This rendering asks information about the property [capacity:city_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:city_bike)
|
||||
|
||||
This is rendered with {capacity:city_bike} city bikes can be rented here
|
||||
|
||||
|
||||
|
||||
Only visible if `rental~^.*city_bike.*$` is shown
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
||||
|
||||
### rental-capacity-ebike
|
||||
|
||||
|
||||
|
||||
The question is How much electrical bikes can be rented here?
|
||||
|
||||
This rendering asks information about the property [capacity:ebike](https://wiki.openstreetmap.org/wiki/Key:capacity:ebike)
|
||||
|
||||
This is rendered with {capacity:ebike} electrical bikes can be rented here
|
||||
|
||||
|
||||
|
||||
Only visible if `rental~^.*ebike.*$` is shown
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
||||
|
||||
### rental-capacity-kid_bike
|
||||
|
||||
|
||||
|
||||
The question is How much bikes for children can be rented here?
|
||||
|
||||
This rendering asks information about the property [capacity:kid_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:kid_bike)
|
||||
|
||||
This is rendered with {capacity:kid_bike} bikes for children can be rented here
|
||||
|
||||
|
||||
|
||||
Only visible if `rental~^.*kid_bike.*$` is shown
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
||||
|
||||
### rental-capacity-bmx
|
||||
|
||||
|
||||
|
||||
The question is How much BMX bikes can be rented here?
|
||||
|
||||
This rendering asks information about the property [capacity:bmx](https://wiki.openstreetmap.org/wiki/Key:capacity:bmx)
|
||||
|
||||
This is rendered with {capacity:bmx} BMX bikes can be rented here
|
||||
|
||||
|
||||
|
||||
Only visible if `rental~^.*bmx.*$` is shown
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
||||
|
||||
### rental-capacity-mtb
|
||||
|
||||
|
||||
|
||||
The question is How much mountainbike can be rented here?
|
||||
|
||||
This rendering asks information about the property [capacity:mtb](https://wiki.openstreetmap.org/wiki/Key:capacity:mtb)
|
||||
|
||||
This is rendered with {capacity:mtb} mountainbike can be rented here
|
||||
|
||||
|
||||
|
||||
Only visible if `rental~^.*mtb.*$` is shown
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
||||
|
||||
### rental-capacity-bicycle_pannier
|
||||
|
||||
|
||||
|
||||
The question is How much bicycle panniers can be rented here?
|
||||
|
||||
This rendering asks information about the property [capacity:bicycle_pannier](https://wiki.openstreetmap.org/wiki/Key:capacity:bicycle_pannier)
|
||||
|
||||
This is rendered with {capacity:bicycle_pannier} bicycle panniers can be rented here
|
||||
|
||||
|
||||
|
||||
Only visible if `rental~^.*bicycle_pannier.*$` is shown
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
||||
|
||||
### rental-capacity-tandem_bicycle
|
||||
|
||||
|
||||
|
||||
The question is How much tandem can be rented here?
|
||||
|
||||
This rendering asks information about the property [capacity:tandem_bicycle](https://wiki.openstreetmap.org/wiki/Key:capacity:tandem_bicycle)
|
||||
|
||||
This is rendered with {capacity:tandem_bicycle} tandem can be rented here
|
||||
|
||||
|
||||
|
||||
Only visible if `rental~^.*tandem_bicycle.*$` is shown
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
Show the images block at this location
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### minimap
|
||||
|
||||
|
||||
|
||||
Shows a small map with the feature. Added by default to every popup
|
||||
|
||||
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)
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
<img src='https://mapcomplete.osm.be/pin:#ffffff;./assets/layers/bicycle_tube_vending_machine/pinIcon.svg' height="100px">
|
||||
|
||||
A layer showing vending machines for bicycle tubes (either purpose-built bicycle tube vending machines or classical vending machines with bicycle tubes and optionally additional bicycle related objects such as lights, gloves, locks, ...)
|
||||
A layer showing vending machines for bicycle tubes (either purpose-built bicycle tube vending machines or classical vending machines with bicycle tubes and optionally additional bicycle related objects such as lights, gloves, locks, …)
|
||||
|
||||
|
||||
|
||||
|
@ -53,7 +53,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -71,7 +73,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -81,16 +85,19 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **Is this vending machine still operational?**
|
||||
The question is Is this vending machine still operational?
|
||||
|
||||
This rendering asks information about the property [operational_status](https://wiki.openstreetmap.org/wiki/Key:operational_status)
|
||||
This is rendered with `The operational status is <i>{operational_status}</i>`
|
||||
|
||||
This is rendered with The operational status is <i>{operational_status}</i>
|
||||
|
||||
|
||||
|
||||
- **This vending machine works** corresponds with
|
||||
- **This vending machine is broken** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operational_status' target='_blank'>operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dbroken' target='_blank'>broken</a>
|
||||
- **This vending machine is closed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operational_status' target='_blank'>operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dclosed' target='_blank'>closed</a>
|
||||
|
||||
|
||||
- This vending machine works corresponds with ``
|
||||
- This vending machine is broken corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:operational_status' target='_blank'>operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dbroken' target='_blank'>broken</a>`
|
||||
- This vending machine is closed corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:operational_status' target='_blank'>operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dclosed' target='_blank'>closed</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -99,10 +106,13 @@ This is rendered with `The operational status is <i>{operational_status}</i>`
|
|||
|
||||
|
||||
|
||||
The question is **How much does a bicycle tube cost?**
|
||||
The question is How much does a bicycle tube cost?
|
||||
|
||||
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
||||
This is rendered with `A bicycle tube costs {charge}`
|
||||
|
||||
This is rendered with A bicycle tube costs {charge}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -110,15 +120,18 @@ This is rendered with `A bicycle tube costs {charge}`
|
|||
|
||||
|
||||
|
||||
The question is **How can one pay at this tube vending machine?**
|
||||
The question is How can one pay at this tube vending machine?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Payment with coins is possible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins' target='_blank'>payment:coins</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins' target='_blank'>payment:coins</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins%3Dno' target='_blank'>no</a>
|
||||
- **Payment with notes is possible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes' target='_blank'>payment:notes</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes' target='_blank'>payment:notes</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes%3Dno' target='_blank'>no</a>
|
||||
- **Payment with cards is possible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||
- Payment with coins is possible corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins' target='_blank'>payment:coins</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins' target='_blank'>payment:coins</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins%3Dno' target='_blank'>no</a>
|
||||
- Payment with notes is possible corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes' target='_blank'>payment:notes</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes' target='_blank'>payment:notes</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes%3Dno' target='_blank'>no</a>
|
||||
- Payment with cards is possible corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
@ -127,15 +140,18 @@ The question is **How can one pay at this tube vending machine?**
|
|||
|
||||
|
||||
|
||||
The question is **Which brand of tubes are sold here?**
|
||||
The question is Which brand of tubes are sold here?
|
||||
|
||||
This rendering asks information about the property [brand](https://wiki.openstreetmap.org/wiki/Key:brand)
|
||||
This is rendered with `{brand} tubes are sold here`
|
||||
|
||||
This is rendered with {brand} tubes are sold here
|
||||
|
||||
|
||||
|
||||
- **Continental tubes are sold here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:brand' target='_blank'>brand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:brand%3DContinental' target='_blank'>Continental</a>
|
||||
- **Schwalbe tubes are sold here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:brand' target='_blank'>brand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:brand%3DSchwalbe' target='_blank'>Schwalbe</a>
|
||||
|
||||
|
||||
- Continental tubes are sold here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:brand' target='_blank'>brand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:brand%3DContinental' target='_blank'>Continental</a>`
|
||||
- Schwalbe tubes are sold here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:brand' target='_blank'>brand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:brand%3DSchwalbe' target='_blank'>Schwalbe</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -144,15 +160,18 @@ This is rendered with `{brand} tubes are sold here`
|
|||
|
||||
|
||||
|
||||
The question is **Who maintains this vending machine?**
|
||||
The question is Who maintains this vending machine?
|
||||
|
||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||
This is rendered with `This vending machine is maintained by {operator}`
|
||||
|
||||
This is rendered with This vending machine is maintained by {operator}
|
||||
|
||||
|
||||
|
||||
- **Maintained by Schwalbe** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DSchwalbe' target='_blank'>Schwalbe</a>
|
||||
- **Maintained by Continental** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DContinental' target='_blank'>Continental</a>
|
||||
|
||||
|
||||
- Maintained by Schwalbe corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DSchwalbe' target='_blank'>Schwalbe</a>`
|
||||
- Maintained by Continental corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DContinental' target='_blank'>Continental</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -161,17 +180,22 @@ This is rendered with `This vending machine is maintained by {operator}`
|
|||
|
||||
|
||||
|
||||
The question is **Are other bicycle bicycle accessories sold here?**
|
||||
The question is Are other bicycle bicycle accessories sold here?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Bicycle lights are sold here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_light' target='_blank'>vending:bicycle_light</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_light%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_light' target='_blank'>vending:bicycle_light</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_light%3Dno' target='_blank'>no</a>
|
||||
- **Gloves are sold here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:vending:gloves' target='_blank'>vending:gloves</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:gloves%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:gloves' target='_blank'>vending:gloves</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:gloves%3Dno' target='_blank'>no</a>
|
||||
- **Bicycle repair kits are sold here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_repair_kit' target='_blank'>vending:bicycle_repair_kit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_repair_kit%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_repair_kit' target='_blank'>vending:bicycle_repair_kit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_repair_kit%3Dno' target='_blank'>no</a>
|
||||
- **Bicycle pumps are sold here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_pump' target='_blank'>vending:bicycle_pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_pump%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_pump' target='_blank'>vending:bicycle_pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_pump%3Dno' target='_blank'>no</a>
|
||||
- **Bicycle locks are sold here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_lock' target='_blank'>vending:bicycle_lock</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_lock%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_lock' target='_blank'>vending:bicycle_lock</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_lock%3Dno' target='_blank'>no</a>
|
||||
- Bicycle lights are sold here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_light' target='_blank'>vending:bicycle_light</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_light%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_light' target='_blank'>vending:bicycle_light</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_light%3Dno' target='_blank'>no</a>
|
||||
- Gloves are sold here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:vending:gloves' target='_blank'>vending:gloves</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:gloves%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:gloves' target='_blank'>vending:gloves</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:gloves%3Dno' target='_blank'>no</a>
|
||||
- Bicycle repair kits are sold here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_repair_kit' target='_blank'>vending:bicycle_repair_kit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_repair_kit%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_repair_kit' target='_blank'>vending:bicycle_repair_kit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_repair_kit%3Dno' target='_blank'>no</a>
|
||||
- Bicycle pumps are sold here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_pump' target='_blank'>vending:bicycle_pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_pump%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_pump' target='_blank'>vending:bicycle_pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_pump%3Dno' target='_blank'>no</a>
|
||||
- Bicycle locks are sold here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_lock' target='_blank'>vending:bicycle_lock</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_lock%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_lock' target='_blank'>vending:bicycle_lock</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_lock%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/bicycle_tube_vending_machine/bicycle_tube_vending_machine.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bicycle_tube_vending_machine/bicycle_tube_vending_machine.json)
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
<img src='https://mapcomplete.osm.be/pin:#684c2b;./assets/layers/bike_cafe/bike_cafe.svg' height="100px">
|
||||
|
||||
A bike café is a café geared towards cyclists, for example with services such as a pump, with lots of bicycle-related decoration, ...
|
||||
A bike café is a café geared towards cyclists, for example with services such as a pump, with lots of bicycle-related decoration, …
|
||||
|
||||
|
||||
|
||||
|
@ -53,7 +53,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -75,7 +77,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -85,10 +89,13 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What is the name of this bike cafe?**
|
||||
The question is What is the name of this bike cafe?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
This is rendered with `This bike cafe is called {name}`
|
||||
|
||||
This is rendered with This bike cafe is called {name}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -96,14 +103,14 @@ This is rendered with `This bike cafe is called {name}`
|
|||
|
||||
|
||||
|
||||
The question is **Does this bike cafe offer a bike pump for use by anyone?**
|
||||
The question is Does this bike cafe offer a bike pump for use by anyone?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This bike cafe offers a bike pump for anyone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>
|
||||
- **This bike cafe doesn't offer a bike pump for anyone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno' target='_blank'>no</a>
|
||||
- This bike cafe offers a bike pump for anyone corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>`
|
||||
- This bike cafe doesn't offer a bike pump for anyone corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -112,14 +119,14 @@ The question is **Does this bike cafe offer a bike pump for use by anyone?**
|
|||
|
||||
|
||||
|
||||
The question is **Are there tools here to repair your own bike?**
|
||||
The question is Are there tools here to repair your own bike?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This bike cafe offers tools for DIY repair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dyes' target='_blank'>yes</a>
|
||||
- **This bike cafe doesn't offer tools for DIY repair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dno' target='_blank'>no</a>
|
||||
- This bike cafe offers tools for DIY repair corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dyes' target='_blank'>yes</a>`
|
||||
- This bike cafe doesn't offer tools for DIY repair corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -128,14 +135,14 @@ The question is **Are there tools here to repair your own bike?**
|
|||
|
||||
|
||||
|
||||
The question is **Does this bike cafe repair bikes?**
|
||||
The question is Does this bike cafe repair bikes?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This bike cafe repairs bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes' target='_blank'>yes</a>
|
||||
- **This bike cafe doesn't repair bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno' target='_blank'>no</a>
|
||||
- This bike cafe repairs bikes corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes' target='_blank'>yes</a>`
|
||||
- This bike cafe doesn't repair bikes corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -144,10 +151,13 @@ The question is **Does this bike cafe repair bikes?**
|
|||
|
||||
|
||||
|
||||
The question is **What is the website of {name}?**
|
||||
The question is What is the website of {name}?
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||
|
||||
This is rendered with <a href='{website}' target='_blank'>{website}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -155,10 +165,13 @@ This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **What is the phone number of {name}?**
|
||||
The question is What is the phone number of {name}?
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||
|
||||
This is rendered with <a href='tel:{phone}'>{phone}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -166,10 +179,13 @@ This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **What is the email address of {name}?**
|
||||
The question is What is the email address of {name}?
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||
|
||||
This is rendered with <a href='mailto:{email}' target='_blank'>{email}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -177,9 +193,12 @@ This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **When it this bike café opened?**
|
||||
The question is When it this bike café opened?
|
||||
|
||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||
This is rendered with `{opening_hours_table(opening_hours)}`
|
||||
|
||||
This is rendered with {opening_hours_table(opening_hours)}
|
||||
|
||||
|
||||
|
||||
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)
|
|
@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -68,7 +70,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -78,16 +82,21 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **How much does it cost to use the cleaning service?**
|
||||
The question is How much does it cost to use the cleaning service?
|
||||
|
||||
This rendering asks information about the property [service:bicycle:cleaning:charge](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:charge)
|
||||
This is rendered with `Using the cleaning service costs {service:bicycle:cleaning:charge}`
|
||||
|
||||
This is rendered with Using the cleaning service costs {service:bicycle:cleaning:charge}
|
||||
|
||||
|
||||
|
||||
- **The cleaning service is free to use** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dno&service:bicycle:cleaning:charge=' target='_blank'>no&service:bicycle:cleaning:charge=</a>
|
||||
- **Free to use** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dno' target='_blank'>no</a>_This option cannot be chosen as answer_
|
||||
- **The cleaning service has a fee, but the amount is not known** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dyes&service:bicycle:cleaning:charge=' target='_blank'>yes&service:bicycle:cleaning:charge=</a>_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- The cleaning service is free to use corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dno&service:bicycle:cleaning:charge=' target='_blank'>no&service:bicycle:cleaning:charge=</a>`
|
||||
- Free to use corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dno' target='_blank'>no</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- The cleaning service has a fee, but the amount is not known corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dyes&service:bicycle:cleaning:charge=' target='_blank'>yes&service:bicycle:cleaning:charge=</a>`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -96,18 +105,22 @@ This is rendered with `Using the cleaning service costs {service:bicycle:cleanin
|
|||
|
||||
|
||||
|
||||
The question is **How much does it cost to use the cleaning service?**
|
||||
The question is How much does it cost to use the cleaning service?
|
||||
|
||||
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
||||
This is rendered with `Using the cleaning service costs {charge}`
|
||||
|
||||
This is rendered with Using the cleaning service costs {charge}
|
||||
|
||||
|
||||
|
||||
- **Free to use cleaning service** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno&charge=' target='_blank'>no&charge=</a>
|
||||
- **Free to use** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>_This option cannot be chosen as answer_
|
||||
- **The cleaning service has a fee** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
Only visible if `amenity=bike_wash|amenity=bicycle_wash` is shown
|
||||
- Free to use cleaning service corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno&charge=' target='_blank'>no&charge=</a>`
|
||||
- Free to use corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- The cleaning service has a fee corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>`
|
||||
|
||||
|
||||
Only visible if `amenity=bike_wash|amenity=bicycle_wash` is shown
|
||||
|
||||
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)
|
|
@ -27,6 +27,7 @@ A layer showing where you can park your bike
|
|||
|
||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
- [transit](https://mapcomplete.osm.be/transit)
|
||||
|
||||
|
||||
|
||||
|
@ -52,7 +53,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -73,7 +76,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -83,21 +88,24 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What is the type of this bicycle parking?**
|
||||
The question is What is the type of this bicycle parking?
|
||||
|
||||
This rendering asks information about the property [bicycle_parking](https://wiki.openstreetmap.org/wiki/Key:bicycle_parking)
|
||||
This is rendered with `This is a bicycle parking of the type: {bicycle_parking}`
|
||||
|
||||
This is rendered with This is a bicycle parking of the type: {bicycle_parking}
|
||||
|
||||
|
||||
|
||||
- **Staple racks** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dstands' target='_blank'>stands</a>
|
||||
- **Wheel rack/loops** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dwall_loops' target='_blank'>wall_loops</a>
|
||||
- **Handlebar holder** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dhandlebar_holder' target='_blank'>handlebar_holder</a>
|
||||
- **Rack** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Drack' target='_blank'>rack</a>
|
||||
- **Two-tiered** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dtwo_tier' target='_blank'>two_tier</a>
|
||||
- **Shed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dshed' target='_blank'>shed</a>
|
||||
- **Bollard** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dbollard' target='_blank'>bollard</a>
|
||||
- **An area on the floor which is marked for bicycle parking** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dfloor' target='_blank'>floor</a>
|
||||
|
||||
|
||||
- Staple racks corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dstands' target='_blank'>stands</a>`
|
||||
- Wheel rack/loops corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dwall_loops' target='_blank'>wall_loops</a>`
|
||||
- Handlebar holder corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dhandlebar_holder' target='_blank'>handlebar_holder</a>`
|
||||
- Rack corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Drack' target='_blank'>rack</a>`
|
||||
- Two-tiered corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dtwo_tier' target='_blank'>two_tier</a>`
|
||||
- Shed corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dshed' target='_blank'>shed</a>`
|
||||
- Bollard corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dbollard' target='_blank'>bollard</a>`
|
||||
- An area on the floor which is marked for bicycle parking corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dfloor' target='_blank'>floor</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -106,16 +114,17 @@ This is rendered with `This is a bicycle parking of the type: {bicycle_parking}`
|
|||
|
||||
|
||||
|
||||
The question is **What is the relative location of this bicycle parking?**
|
||||
The question is What is the relative location of this bicycle parking?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Underground parking** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>
|
||||
- **Surface level parking** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dsurface' target='_blank'>surface</a>
|
||||
- **Rooftop parking** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Drooftop' target='_blank'>rooftop</a>
|
||||
- **Surface level parking** corresponds with _This option cannot be chosen as answer_
|
||||
- Underground parking corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>`
|
||||
- Surface level parking corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dsurface' target='_blank'>surface</a>`
|
||||
- Rooftop parking corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Drooftop' target='_blank'>rooftop</a>`
|
||||
- Surface level parking corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -124,14 +133,14 @@ The question is **What is the relative location of this bicycle parking?**
|
|||
|
||||
|
||||
|
||||
The question is **Is this parking covered? Also select "covered" for indoor parkings.**
|
||||
The question is Is this parking covered? Also select "covered" for indoor parkings.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This parking is covered (it has a roof)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:covered' target='_blank'>covered</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:covered%3Dyes' target='_blank'>yes</a>
|
||||
- **This parking is not covered** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:covered' target='_blank'>covered</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:covered%3Dno' target='_blank'>no</a>
|
||||
- This parking is covered (it has a roof) corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:covered' target='_blank'>covered</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:covered%3Dyes' target='_blank'>yes</a>`
|
||||
- This parking is not covered corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:covered' target='_blank'>covered</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:covered%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -140,10 +149,13 @@ The question is **Is this parking covered? Also select "covered" for indoor park
|
|||
|
||||
|
||||
|
||||
The question is **How many bicycles fit in this bicycle parking (including possible cargo bicycles)?**
|
||||
The question is How many bicycles fit in this bicycle parking (including possible cargo bicycles)?
|
||||
|
||||
This rendering asks information about the property [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity)
|
||||
This is rendered with `Place for {capacity} bikes`
|
||||
|
||||
This is rendered with Place for {capacity} bikes
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -151,16 +163,19 @@ This is rendered with `Place for {capacity} bikes`
|
|||
|
||||
|
||||
|
||||
The question is **Who can use this bicycle parking?**
|
||||
The question is Who can use this bicycle parking?
|
||||
|
||||
This rendering asks information about the property [access](https://wiki.openstreetmap.org/wiki/Key:access)
|
||||
This is rendered with `{access}`
|
||||
|
||||
This is rendered with {access}
|
||||
|
||||
|
||||
|
||||
- **Publicly accessible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>
|
||||
- **Access is primarily for visitors to a business** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers' target='_blank'>customers</a>
|
||||
- **Access is limited to members of a school, company or organisation** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate' target='_blank'>private</a>
|
||||
|
||||
|
||||
- Publicly accessible corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>`
|
||||
- Access is primarily for visitors to a business corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers' target='_blank'>customers</a>`
|
||||
- Access is limited to members of a school, company or organisation corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate' target='_blank'>private</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -169,15 +184,15 @@ This is rendered with `{access}`
|
|||
|
||||
|
||||
|
||||
The question is **Does this bicycle parking have spots for cargo bikes?**
|
||||
The question is Does this bicycle parking have spots for cargo bikes?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This parking has room for cargo bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cargo_bike' target='_blank'>cargo_bike</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Dyes' target='_blank'>yes</a>
|
||||
- **This parking has designated (official) spots for cargo bikes.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cargo_bike' target='_blank'>cargo_bike</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Ddesignated' target='_blank'>designated</a>
|
||||
- **You're not allowed to park cargo bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cargo_bike' target='_blank'>cargo_bike</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Dno' target='_blank'>no</a>
|
||||
- This parking has room for cargo bikes corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cargo_bike' target='_blank'>cargo_bike</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Dyes' target='_blank'>yes</a>`
|
||||
- This parking has designated (official) spots for cargo bikes. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cargo_bike' target='_blank'>cargo_bike</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Ddesignated' target='_blank'>designated</a>`
|
||||
- You're not allowed to park cargo bikes corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cargo_bike' target='_blank'>cargo_bike</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -186,11 +201,14 @@ The question is **Does this bicycle parking have spots for cargo bikes?**
|
|||
|
||||
|
||||
|
||||
The question is **How many cargo bicycles fit in this bicycle parking?**
|
||||
The question is How many cargo bicycles fit in this bicycle parking?
|
||||
|
||||
This rendering asks information about the property [capacity:cargo_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:cargo_bike)
|
||||
This is rendered with `This parking fits {capacity:cargo_bike} cargo bikes`
|
||||
|
||||
Only visible if `cargo_bike~^designated|yes$` is shown
|
||||
This is rendered with This parking fits {capacity:cargo_bike} cargo bikes
|
||||
|
||||
|
||||
|
||||
Only visible if `cargo_bike~^designated|yes$` is shown
|
||||
|
||||
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)
|
|
@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -79,7 +81,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -89,15 +93,15 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **Which services are available at this location?**
|
||||
The question is Which services are available at this location?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **There is only a pump present** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools' target='_blank'>service:bicycle:tools</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dno' target='_blank'>no</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>
|
||||
- **There are only tools (screwdrivers, pliers...) present** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools' target='_blank'>service:bicycle:tools</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes' target='_blank'>yes</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno' target='_blank'>no</a>
|
||||
- **There are both tools and a pump present** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools' target='_blank'>service:bicycle:tools</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes' target='_blank'>yes</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>
|
||||
- There is only a pump present corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools' target='_blank'>service:bicycle:tools</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dno' target='_blank'>no</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>`
|
||||
- There are only tools (screwdrivers, pliers, …) present corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools' target='_blank'>service:bicycle:tools</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes' target='_blank'>yes</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno' target='_blank'>no</a>`
|
||||
- There are both tools and a pump present corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools' target='_blank'>service:bicycle:tools</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes' target='_blank'>yes</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -106,17 +110,17 @@ The question is **Which services are available at this location?**
|
|||
|
||||
|
||||
|
||||
The question is **Is the bike pump still operational?**
|
||||
The question is Is the bike pump still operational?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **The bike pump is broken** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump:operational_status' target='_blank'>service:bicycle:pump:operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump:operational_status%3Dbroken' target='_blank'>broken</a>
|
||||
- **The bike pump is operational** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump:operational_status' target='_blank'>service:bicycle:pump:operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump:operational_status%3Doperational' target='_blank'>operational</a>
|
||||
- The bike pump is broken corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump:operational_status' target='_blank'>service:bicycle:pump:operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump:operational_status%3Dbroken' target='_blank'>broken</a>`
|
||||
- The bike pump is operational corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump:operational_status' target='_blank'>service:bicycle:pump:operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump:operational_status%3Doperational' target='_blank'>operational</a>`
|
||||
|
||||
|
||||
Only visible if `service:bicycle:pump=yes` is shown
|
||||
Only visible if `service:bicycle:pump=yes` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -124,14 +128,17 @@ Only visible if `service:bicycle:pump=yes` is shown
|
|||
|
||||
|
||||
|
||||
The question is **When is this bicycle repair point open?**
|
||||
The question is When is this bicycle repair point open?
|
||||
|
||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||
This is rendered with `{opening_hours_table()}`
|
||||
|
||||
This is rendered with {opening_hours_table()}
|
||||
|
||||
|
||||
|
||||
- **Always open** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
|
||||
|
||||
|
||||
- Always open corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -140,17 +147,19 @@ This is rendered with `{opening_hours_table()}`
|
|||
|
||||
|
||||
|
||||
The question is **Who is allowed to use this repair station?**
|
||||
The question is Who is allowed to use this repair station?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Publicly accessible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>
|
||||
- **Publicly accessible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic' target='_blank'>public</a>_This option cannot be chosen as answer_
|
||||
- **Only for customers** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers' target='_blank'>customers</a>
|
||||
- **Not accessible to the general public** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate' target='_blank'>private</a>
|
||||
- **Not accessible to the general public** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dno' target='_blank'>no</a>_This option cannot be chosen as answer_
|
||||
- Publicly accessible corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>`
|
||||
- Publicly accessible corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic' target='_blank'>public</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- Only for customers corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers' target='_blank'>customers</a>`
|
||||
- Not accessible to the general public corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate' target='_blank'>private</a>`
|
||||
- Not accessible to the general public corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dno' target='_blank'>no</a>`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -159,10 +168,13 @@ The question is **Who is allowed to use this repair station?**
|
|||
|
||||
|
||||
|
||||
The question is **Who maintains this cycle pump?**
|
||||
The question is Who maintains this cycle pump?
|
||||
|
||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||
This is rendered with `Maintained by {operator}`
|
||||
|
||||
This is rendered with Maintained by {operator}
|
||||
|
||||
|
||||
|
||||
This tagrendering has labels `operator-info`
|
||||
|
||||
|
@ -172,10 +184,13 @@ This tagrendering has labels `operator-info`
|
|||
|
||||
|
||||
|
||||
The question is **What is the email address of the maintainer?**
|
||||
The question is What is the email address of the maintainer?
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `<a href='mailto:{email}'>{email}</a>`
|
||||
|
||||
This is rendered with <a href='mailto:{email}'>{email}</a>
|
||||
|
||||
|
||||
|
||||
This tagrendering has labels `operator-info`
|
||||
|
||||
|
@ -185,10 +200,13 @@ This tagrendering has labels `operator-info`
|
|||
|
||||
|
||||
|
||||
The question is **What is the phone number of the maintainer?**
|
||||
The question is What is the phone number of the maintainer?
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||
|
||||
This is rendered with <a href='tel:{phone}'>{phone}</a>
|
||||
|
||||
|
||||
|
||||
This tagrendering has labels `operator-info`
|
||||
|
||||
|
@ -198,17 +216,17 @@ This tagrendering has labels `operator-info`
|
|||
|
||||
|
||||
|
||||
The question is **Does this bike repair station have a special tool to repair your bike chain?**
|
||||
The question is Does this bike repair station have a special tool to repair your bike chain?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **There is a chain tool** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:chain_tool' target='_blank'>service:bicycle:chain_tool</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:chain_tool%3Dyes' target='_blank'>yes</a>
|
||||
- **There is no chain tool** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:chain_tool' target='_blank'>service:bicycle:chain_tool</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:chain_tool%3Dno' target='_blank'>no</a>
|
||||
- There is a chain tool corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:chain_tool' target='_blank'>service:bicycle:chain_tool</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:chain_tool%3Dyes' target='_blank'>yes</a>`
|
||||
- There is no chain tool corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:chain_tool' target='_blank'>service:bicycle:chain_tool</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:chain_tool%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
Only visible if `service:bicycle:tools=yes` is shown
|
||||
Only visible if `service:bicycle:tools=yes` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -216,29 +234,29 @@ Only visible if `service:bicycle:tools=yes` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Does this bike station have a hook to hang your bike on or a stand to raise it?**
|
||||
The question is Does this bike station have a hook to hang your bike on or a stand to raise it?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **There is a hook or stand** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:stand' target='_blank'>service:bicycle:stand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:stand%3Dyes' target='_blank'>yes</a>
|
||||
- **There is no hook or stand** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:stand' target='_blank'>service:bicycle:stand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:stand%3Dno' target='_blank'>no</a>
|
||||
- There is a hook or stand corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:stand' target='_blank'>service:bicycle:stand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:stand%3Dyes' target='_blank'>yes</a>`
|
||||
- There is no hook or stand corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:stand' target='_blank'>service:bicycle:stand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:stand%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
Only visible if `service:bicycle:tools=yes` is shown
|
||||
Only visible if `service:bicycle:tools=yes` is shown
|
||||
|
||||
|
||||
|
||||
### Email maintainer
|
||||
### send_email_about_broken_pump
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
Only visible if `email~^..*$&service:bicycle:pump:operational_status=broken` is shown
|
||||
Only visible if `email~^..*$&service:bicycle:pump:operational_status=broken` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -246,16 +264,19 @@ Only visible if `email~^..*$&service:bicycle:pump:operational_status=broken` is
|
|||
|
||||
|
||||
|
||||
The question is **What valves are supported?**
|
||||
The question is What valves are supported?
|
||||
|
||||
This rendering asks information about the property [valves](https://wiki.openstreetmap.org/wiki/Key:valves)
|
||||
This is rendered with `This pump supports the following valves: {valves}`
|
||||
|
||||
This is rendered with This pump supports the following valves: {valves}
|
||||
|
||||
|
||||
|
||||
- **Sclaverand (also known as Presta)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:valves' target='_blank'>valves</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:valves%3Dsclaverand' target='_blank'>sclaverand</a>
|
||||
- **Dunlop** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:valves' target='_blank'>valves</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:valves%3Ddunlop' target='_blank'>dunlop</a>
|
||||
- **Schrader (cars)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:valves' target='_blank'>valves</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:valves%3Dschrader' target='_blank'>schrader</a>
|
||||
|
||||
|
||||
- Sclaverand/Presta (narrow-width bike tires) corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:valves' target='_blank'>valves</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:valves%3Dsclaverand' target='_blank'>sclaverand</a>`
|
||||
- Dunlop corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:valves' target='_blank'>valves</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:valves%3Ddunlop' target='_blank'>dunlop</a>`
|
||||
- Schrader (cars and mountainbikes) corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:valves' target='_blank'>valves</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:valves%3Dschrader' target='_blank'>schrader</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -264,17 +285,17 @@ This is rendered with `This pump supports the following valves: {valves}`
|
|||
|
||||
|
||||
|
||||
The question is **Is this an electric bike pump?**
|
||||
The question is Is this an electric bike pump?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Manual pump** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:manual' target='_blank'>manual</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manual%3Dyes' target='_blank'>yes</a>
|
||||
- **Electrical pump** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:manual' target='_blank'>manual</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manual%3Dno' target='_blank'>no</a>
|
||||
- Manual pump corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:manual' target='_blank'>manual</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manual%3Dyes' target='_blank'>yes</a>`
|
||||
- Electrical pump corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:manual' target='_blank'>manual</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manual%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
Only visible if `service:bicycle:pump=yes` is shown
|
||||
Only visible if `service:bicycle:pump=yes` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -282,18 +303,18 @@ Only visible if `service:bicycle:pump=yes` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Does the pump have a pressure indicator or manometer?**
|
||||
The question is Does the pump have a pressure indicator or manometer?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **There is a manometer** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:manometer' target='_blank'>manometer</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dyes' target='_blank'>yes</a>
|
||||
- **There is no manometer** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:manometer' target='_blank'>manometer</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dno' target='_blank'>no</a>
|
||||
- **There is manometer but it is broken** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:manometer' target='_blank'>manometer</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dbroken' target='_blank'>broken</a>
|
||||
- There is a manometer corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:manometer' target='_blank'>manometer</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dyes' target='_blank'>yes</a>`
|
||||
- There is no manometer corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:manometer' target='_blank'>manometer</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dno' target='_blank'>no</a>`
|
||||
- There is manometer but it is broken corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:manometer' target='_blank'>manometer</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dbroken' target='_blank'>broken</a>`
|
||||
|
||||
|
||||
Only visible if `service:bicycle:pump=yes` is shown
|
||||
Only visible if `service:bicycle:pump=yes` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -301,18 +322,23 @@ Only visible if `service:bicycle:pump=yes` is shown
|
|||
|
||||
|
||||
|
||||
The question is **On what level is this feature located?**
|
||||
The question is On what level is this feature located?
|
||||
|
||||
This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level)
|
||||
This is rendered with `Located on the {level}th floor`
|
||||
|
||||
This is rendered with Located on the {level}th floor
|
||||
|
||||
|
||||
|
||||
- **Located underground** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>_This option cannot be chosen as answer_
|
||||
- **Located on the ground floor** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>
|
||||
- **Located on the ground floor** corresponds with _This option cannot be chosen as answer_
|
||||
- **Located on the first floor** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D1' target='_blank'>1</a>
|
||||
- **Located on the first basement level** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D-1' target='_blank'>-1</a>
|
||||
|
||||
|
||||
- Located underground corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- Located on the ground floor corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>`
|
||||
- Located on the ground floor corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- Located on the first floor corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D1' target='_blank'>1</a>`
|
||||
- Located on the first basement level corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D-1' target='_blank'>-1</a>`
|
||||
|
||||
|
||||
This 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)
|
|
@ -40,10 +40,10 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbicycle' target='_blank'>bicycle</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_rental' target='_blank'>bicycle_rental</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsports' target='_blank'>sports</a>&service:bicycle:retail!~^no$&service:bicycle:repair!~^no$&<a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dbicycle' target='_blank'>bicycle</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dcycling' target='_blank'>cycling</a>|
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbicycle' target='_blank'>bicycle</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_rental' target='_blank'>bicycle_rental</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsports' target='_blank'>sports</a>&service:bicycle:retail!=no&service:bicycle:repair!=no&<a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dbicycle' target='_blank'>bicycle</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dcycling' target='_blank'>cycling</a>|
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22shop%22%3D%22bicycle%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22bicycle_rental%22%5D%5B!%22network%22%5D(%7B%7Bbbox%7D%7D)%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!~%22%5Eno%24%22%5D%5B%22service%3Abicycle%3Arepair%22!~%22%5Eno%24%22%5D(%7B%7Bbbox%7D%7D)%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!~%22%5Eno%24%22%5D%5B%22service%3Abicycle%3Arepair%22!~%22%5Eno%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22shop%22%3D%22sports%22%5D%5B!%22sport%22%5D%5B%22service%3Abicycle%3Aretail%22!~%22%5Eno%24%22%5D%5B%22service%3Abicycle%3Arepair%22!~%22%5Eno%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22shop%22%3D%22bicycle%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22bicycle_rental%22%5D%5B!%22network%22%5D(%7B%7Bbbox%7D%7D)%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(%7B%7Bbbox%7D%7D)%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(%7B%7Bbbox%7D%7D)%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(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
|
||||
|
||||
|
||||
|
@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -68,7 +70,7 @@ attribute | type | values which are supported by this layer
|
|||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity:ebike#values) [capacity:ebike](https://wiki.openstreetmap.org/wiki/Key:capacity:ebike) | [pnat](../SpecialInputElements.md#pnat) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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) |
|
||||
|
@ -90,7 +92,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -100,16 +104,16 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Deze business focuses on rental** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Drental' target='_blank'>rental</a>
|
||||
- This business focuses on rental corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Drental' target='_blank'>rental</a>`
|
||||
|
||||
|
||||
Only visible if `shop~^..*$&shop!~^bicycle$&shop!~^sports$` is shown
|
||||
Only visible if `shop~^..*$&shop!~^bicycle$&shop!~^sports$` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -117,43 +121,73 @@ Only visible if `shop~^..*$&shop!~^bicycle$&shop!~^sports$` is shown
|
|||
|
||||
|
||||
|
||||
The question is **What is the name of this bicycle shop?**
|
||||
The question is What is the name of this bicycle shop?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
This is rendered with `This bicycle shop is called {name}`
|
||||
|
||||
This is rendered with This bicycle shop is called {name}
|
||||
|
||||
|
||||
|
||||
### bike_shop-website
|
||||
|
||||
|
||||
### website
|
||||
|
||||
|
||||
|
||||
The question is **What is the website of {name}?**
|
||||
The question is What is the website of {title()}?
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||
|
||||
This is rendered with <a href='{website}' target='_blank'>{website}</a>
|
||||
|
||||
|
||||
|
||||
### bike_shop-phone
|
||||
|
||||
|
||||
- <a href='{contact:website}' target='_blank'>{contact:website}</a> corresponds with `contact:website~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
The question is **What is the phone number of {name}?**
|
||||
|
||||
### phone
|
||||
|
||||
|
||||
|
||||
The question is What is the phone number of {title()}?
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||
|
||||
This is rendered with <a href='tel:{phone}'>{phone}</a>
|
||||
|
||||
|
||||
|
||||
### bike_shop-email
|
||||
|
||||
|
||||
- <a href='tel:{contact:phone}'>{contact:phone}</a> corresponds with `contact:phone~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
The question is **What is the email address of {name}?**
|
||||
|
||||
### email
|
||||
|
||||
|
||||
|
||||
The question is What is the email address of {title()}?
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||
|
||||
This is rendered with <a href='mailto:{email}' target='_blank'>{email}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='mailto:{contact:email}' target='_blank'>{contact:email}</a> corresponds with `contact:email~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -161,10 +195,13 @@ This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **What are the opening hours of {title()}?**
|
||||
The question is What are the opening hours of {title()}?
|
||||
|
||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||
|
||||
This is rendered with <h3>Opening hours</h3>{opening_hours_table(opening_hours)}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -172,10 +209,13 @@ This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
This rendering asks information about the property [access](https://wiki.openstreetmap.org/wiki/Key:access)
|
||||
This is rendered with `Only accessible to {access}`
|
||||
|
||||
This is rendered with Only accessible to {access}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -183,14 +223,14 @@ This is rendered with `Only accessible to {access}`
|
|||
|
||||
|
||||
|
||||
The question is **Does this shop sell bikes?**
|
||||
The question is Does this shop sell bikes?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This shop sells bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail' target='_blank'>service:bicycle:retail</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes' target='_blank'>yes</a>
|
||||
- **This shop doesn't sell bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail' target='_blank'>service:bicycle:retail</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno' target='_blank'>no</a>
|
||||
- This shop sells bikes corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail' target='_blank'>service:bicycle:retail</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes' target='_blank'>yes</a>`
|
||||
- This shop doesn't sell bikes corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail' target='_blank'>service:bicycle:retail</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -199,16 +239,16 @@ The question is **Does this shop sell bikes?**
|
|||
|
||||
|
||||
|
||||
The question is **Does this shop repair bikes?**
|
||||
The question is Does this shop repair bikes?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This shop repairs bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes' target='_blank'>yes</a>
|
||||
- **This shop doesn't repair bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno' target='_blank'>no</a>
|
||||
- **This shop only repairs bikes bought here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold' target='_blank'>only_sold</a>
|
||||
- **This shop only repairs bikes of a certain brand** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand' target='_blank'>brand</a>
|
||||
- This shop repairs bikes corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes' target='_blank'>yes</a>`
|
||||
- This shop doesn't repair bikes corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno' target='_blank'>no</a>`
|
||||
- This shop only repairs bikes bought here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold' target='_blank'>only_sold</a>`
|
||||
- This shop only repairs bikes of a certain brand corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand' target='_blank'>brand</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -217,14 +257,14 @@ The question is **Does this shop repair bikes?**
|
|||
|
||||
|
||||
|
||||
The question is **Does this shop rent out bikes?**
|
||||
The question is Does this shop rent out bikes?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This shop rents out bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental' target='_blank'>service:bicycle:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dyes' target='_blank'>yes</a>
|
||||
- **This shop doesn't rent out bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental' target='_blank'>service:bicycle:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dno' target='_blank'>no</a>
|
||||
- This shop rents out bikes corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental' target='_blank'>service:bicycle:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dyes' target='_blank'>yes</a>`
|
||||
- This shop doesn't rent out bikes corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental' target='_blank'>service:bicycle:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -233,23 +273,27 @@ The question is **Does this shop rent out bikes?**
|
|||
|
||||
|
||||
|
||||
The question is **What kind of bicycles and accessories are rented here?**
|
||||
The question is What kind of bicycles and accessories are rented here?
|
||||
|
||||
This rendering asks information about the property [rental](https://wiki.openstreetmap.org/wiki/Key:rental)
|
||||
This is rendered with `{rental} is rented here`
|
||||
|
||||
This is rendered with {rental} is rented here
|
||||
|
||||
|
||||
|
||||
- **Normal city bikes can be rented here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dcity_bike' target='_blank'>city_bike</a>
|
||||
- **Electrical bikes can be rented here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Debike' target='_blank'>ebike</a>
|
||||
- **BMX bikes can be rented here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbmx' target='_blank'>bmx</a>
|
||||
- **Mountainbikes can be rented here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dmtb' target='_blank'>mtb</a>
|
||||
- **Bikes for childs can be rented here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dkid_bike' target='_blank'>kid_bike</a>
|
||||
- **Tandem bicycles can be rented here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dtandem' target='_blank'>tandem</a>
|
||||
- **Race bicycles can be rented here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dracebike' target='_blank'>racebike</a>
|
||||
|
||||
|
||||
Only visible if `amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown
|
||||
- Normal city bikes can be rented here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dcity_bike' target='_blank'>city_bike</a>`
|
||||
- Electrical bikes can be rented here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Debike' target='_blank'>ebike</a>`
|
||||
- BMX bikes can be rented here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbmx' target='_blank'>bmx</a>`
|
||||
- Mountainbikes can be rented here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dmtb' target='_blank'>mtb</a>`
|
||||
- Bikes for children can be rented here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dkid_bike' target='_blank'>kid_bike</a>`
|
||||
- Tandem bicycles can be rented here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dtandem' target='_blank'>tandem</a>`
|
||||
- Race bicycles can be rented here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dracebike' target='_blank'>racebike</a>`
|
||||
- Bike helmets can be rented here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbike_helmet' target='_blank'>bike_helmet</a>`
|
||||
|
||||
|
||||
Only visible if `amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
@ -259,12 +303,15 @@ This tagrendering has labels `bicycle_rental`
|
|||
|
||||
|
||||
|
||||
The question is **How much city bikes can be rented here? **
|
||||
The question is How much city bikes can be rented here?
|
||||
|
||||
This rendering asks information about the property [capacity:city_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:city_bike)
|
||||
This is rendered with `{capacity:city_bike} city bikes can be rented here`
|
||||
|
||||
Only visible if `rental~^.*city_bike.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown
|
||||
This is rendered with {capacity:city_bike} city bikes can be rented here
|
||||
|
||||
|
||||
|
||||
Only visible if `rental~^.*city_bike.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
@ -274,12 +321,15 @@ This tagrendering has labels `bicycle_rental`
|
|||
|
||||
|
||||
|
||||
The question is **How much electrical bikes can be rented here? **
|
||||
The question is How much electrical bikes can be rented here?
|
||||
|
||||
This rendering asks information about the property [capacity:ebike](https://wiki.openstreetmap.org/wiki/Key:capacity:ebike)
|
||||
This is rendered with `{capacity:ebike} electrical bikes can be rented here`
|
||||
|
||||
Only visible if `rental~^.*ebike.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown
|
||||
This is rendered with {capacity:ebike} electrical bikes can be rented here
|
||||
|
||||
|
||||
|
||||
Only visible if `rental~^.*ebike.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
@ -289,12 +339,15 @@ This tagrendering has labels `bicycle_rental`
|
|||
|
||||
|
||||
|
||||
The question is **How much bikes for children can be rented here? **
|
||||
The question is How much bikes for children can be rented here?
|
||||
|
||||
This rendering asks information about the property [capacity:kid_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:kid_bike)
|
||||
This is rendered with `{capacity:kid_bike} bikes for children can be rented here`
|
||||
|
||||
Only visible if `rental~^.*kid_bike.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown
|
||||
This is rendered with {capacity:kid_bike} bikes for children can be rented here
|
||||
|
||||
|
||||
|
||||
Only visible if `rental~^.*kid_bike.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
@ -304,12 +357,15 @@ This tagrendering has labels `bicycle_rental`
|
|||
|
||||
|
||||
|
||||
The question is **How much BMX bikes can be rented here? **
|
||||
The question is How much BMX bikes can be rented here?
|
||||
|
||||
This rendering asks information about the property [capacity:bmx](https://wiki.openstreetmap.org/wiki/Key:capacity:bmx)
|
||||
This is rendered with `{capacity:bmx} BMX bikes can be rented here`
|
||||
|
||||
Only visible if `rental~^.*bmx.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown
|
||||
This is rendered with {capacity:bmx} BMX bikes can be rented here
|
||||
|
||||
|
||||
|
||||
Only visible if `rental~^.*bmx.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
@ -319,12 +375,15 @@ This tagrendering has labels `bicycle_rental`
|
|||
|
||||
|
||||
|
||||
The question is **How much mountainbike can be rented here? **
|
||||
The question is How much mountainbike can be rented here?
|
||||
|
||||
This rendering asks information about the property [capacity:mtb](https://wiki.openstreetmap.org/wiki/Key:capacity:mtb)
|
||||
This is rendered with `{capacity:mtb} mountainbike can be rented here`
|
||||
|
||||
Only visible if `rental~^.*mtb.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown
|
||||
This is rendered with {capacity:mtb} mountainbike can be rented here
|
||||
|
||||
|
||||
|
||||
Only visible if `rental~^.*mtb.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
@ -334,12 +393,15 @@ This tagrendering has labels `bicycle_rental`
|
|||
|
||||
|
||||
|
||||
The question is **How much bicycle panniers can be rented here? **
|
||||
The question is How much bicycle panniers can be rented here?
|
||||
|
||||
This rendering asks information about the property [capacity:bicycle_pannier](https://wiki.openstreetmap.org/wiki/Key:capacity:bicycle_pannier)
|
||||
This is rendered with `{capacity:bicycle_pannier} bicycle panniers can be rented here`
|
||||
|
||||
Only visible if `rental~^.*bicycle_pannier.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown
|
||||
This is rendered with {capacity:bicycle_pannier} bicycle panniers can be rented here
|
||||
|
||||
|
||||
|
||||
Only visible if `rental~^.*bicycle_pannier.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
@ -349,12 +411,15 @@ This tagrendering has labels `bicycle_rental`
|
|||
|
||||
|
||||
|
||||
The question is **How much tandem can be rented here? **
|
||||
The question is How much tandem can be rented here?
|
||||
|
||||
This rendering asks information about the property [capacity:tandem_bicycle](https://wiki.openstreetmap.org/wiki/Key:capacity:tandem_bicycle)
|
||||
This is rendered with `{capacity:tandem_bicycle} tandem can be rented here`
|
||||
|
||||
Only visible if `rental~^.*tandem_bicycle.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown
|
||||
This is rendered with {capacity:tandem_bicycle} tandem can be rented here
|
||||
|
||||
|
||||
|
||||
Only visible if `rental~^.*tandem_bicycle.*$&amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$` is shown
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
@ -364,15 +429,15 @@ This tagrendering has labels `bicycle_rental`
|
|||
|
||||
|
||||
|
||||
The question is **Does this shop sell second-hand bikes?**
|
||||
The question is Does this shop sell second-hand bikes?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This shop sells second-hand bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand' target='_blank'>service:bicycle:second_hand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes' target='_blank'>yes</a>
|
||||
- **This shop doesn't sell second-hand bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand' target='_blank'>service:bicycle:second_hand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno' target='_blank'>no</a>
|
||||
- **This shop only sells second-hand bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand' target='_blank'>service:bicycle:second_hand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly' target='_blank'>only</a>
|
||||
- This shop sells second-hand bikes corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand' target='_blank'>service:bicycle:second_hand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes' target='_blank'>yes</a>`
|
||||
- This shop doesn't sell second-hand bikes corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand' target='_blank'>service:bicycle:second_hand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno' target='_blank'>no</a>`
|
||||
- This shop only sells second-hand bikes corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand' target='_blank'>service:bicycle:second_hand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly' target='_blank'>only</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -381,15 +446,15 @@ The question is **Does this shop sell second-hand bikes?**
|
|||
|
||||
|
||||
|
||||
The question is **Does this shop offer a bike pump for use by anyone?**
|
||||
The question is Does this shop offer a bike pump for use by anyone?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This shop offers a bike pump for anyone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>
|
||||
- **This shop doesn't offer a bike pump for anyone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno' target='_blank'>no</a>
|
||||
- **There is bicycle pump, it is shown as a separate point ** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dseparate' target='_blank'>separate</a>
|
||||
- This shop offers a bike pump for anyone corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>`
|
||||
- This shop doesn't offer a bike pump for anyone corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno' target='_blank'>no</a>`
|
||||
- There is bicycle pump, it is shown as a separate point corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dseparate' target='_blank'>separate</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -398,15 +463,15 @@ The question is **Does this shop offer a bike pump for use by anyone?**
|
|||
|
||||
|
||||
|
||||
The question is **Are there tools here to repair your own bike?**
|
||||
The question is Are there tools here to repair your own bike?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This shop offers tools for DIY repair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dyes' target='_blank'>yes</a>
|
||||
- **This shop doesn't offer tools for DIY repair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dno' target='_blank'>no</a>
|
||||
- **Tools for DIY repair are only available if you bought/hire the bike in the shop** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Donly_sold' target='_blank'>only_sold</a>
|
||||
- This shop offers tools for DIY repair corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dyes' target='_blank'>yes</a>`
|
||||
- This shop doesn't offer tools for DIY repair corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dno' target='_blank'>no</a>`
|
||||
- Tools for DIY repair are only available if you bought/hire the bike in the shop corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Donly_sold' target='_blank'>only_sold</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -415,15 +480,15 @@ The question is **Are there tools here to repair your own bike?**
|
|||
|
||||
|
||||
|
||||
The question is **Are bicycles washed here?**
|
||||
The question is Are bicycles washed here?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This shop cleans bicycles** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning' target='_blank'>service:bicycle:cleaning</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dyes' target='_blank'>yes</a>
|
||||
- **This shop has an installation where one can clean bicycles themselves** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning' target='_blank'>service:bicycle:cleaning</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Ddiy' target='_blank'>diy</a>
|
||||
- **This shop doesn't offer bicycle cleaning** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning' target='_blank'>service:bicycle:cleaning</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dno' target='_blank'>no</a>
|
||||
- This shop cleans bicycles corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning' target='_blank'>service:bicycle:cleaning</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dyes' target='_blank'>yes</a>`
|
||||
- This shop has an installation where one can clean bicycles themselves corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning' target='_blank'>service:bicycle:cleaning</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Ddiy' target='_blank'>diy</a>`
|
||||
- This shop doesn't offer bicycle cleaning corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning' target='_blank'>service:bicycle:cleaning</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -432,19 +497,24 @@ The question is **Are bicycles washed here?**
|
|||
|
||||
|
||||
|
||||
The question is **How much does it cost to use the cleaning service?**
|
||||
The question is How much does it cost to use the cleaning service?
|
||||
|
||||
This rendering asks information about the property [service:bicycle:cleaning:charge](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:charge)
|
||||
This is rendered with `Using the cleaning service costs {service:bicycle:cleaning:charge}`
|
||||
|
||||
This is rendered with Using the cleaning service costs {service:bicycle:cleaning:charge}
|
||||
|
||||
|
||||
|
||||
- **The cleaning service is free to use** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dno&service:bicycle:cleaning:charge=' target='_blank'>no&service:bicycle:cleaning:charge=</a>
|
||||
- **Free to use** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dno' target='_blank'>no</a>_This option cannot be chosen as answer_
|
||||
- **The cleaning service has a fee, but the amount is not known** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dyes&service:bicycle:cleaning:charge=' target='_blank'>yes&service:bicycle:cleaning:charge=</a>_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
Only visible if `amenity!~^bike_wash$&amenity!~^bicycle_wash$&service:bicycle:cleaning=yes|service:bicycle:cleaning=diy|amenity=bicycle_wash|amenity=bike_wash` is shown
|
||||
- The cleaning service is free to use corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dno&service:bicycle:cleaning:charge=' target='_blank'>no&service:bicycle:cleaning:charge=</a>`
|
||||
- Free to use corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dno' target='_blank'>no</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- The cleaning service has a fee, but the amount is not known corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dyes&service:bicycle:cleaning:charge=' target='_blank'>yes&service:bicycle:cleaning:charge=</a>`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
Only visible if `amenity!=bike_wash&amenity!=bicycle_wash&service:bicycle:cleaning=yes|service:bicycle:cleaning=diy|amenity=bicycle_wash|amenity=bike_wash` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -452,9 +522,12 @@ Only visible if `amenity!~^bike_wash$&amenity!~^bicycle_wash$&service:bicycle:cl
|
|||
|
||||
|
||||
|
||||
The question is **Is there still something relevant you couldn't give in the previous questions? Add it here.<br/><span style='font-size: small'>Don't repeat already stated facts</span>**
|
||||
The question is Is there still something relevant you couldn't give in the previous questions? Add it here.<br/><span style='font-size: small'>Don't repeat already stated facts</span>
|
||||
|
||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||
This is rendered with `{description}`
|
||||
|
||||
This is rendered with {description}
|
||||
|
||||
|
||||
|
||||
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)
|
|
@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -71,7 +73,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -81,10 +85,13 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **Is there still something relevant you couldn't give in the previous questions? Add it here.<br/><span style='font-size: small'>Don't repeat already stated facts</span>**
|
||||
The question is Is there still something relevant you couldn't give in the previous questions? Add it here.<br/><span style='font-size: small'>Don't repeat already stated facts</span>
|
||||
|
||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||
This is rendered with `{description}`
|
||||
|
||||
This is rendered with {description}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -92,14 +99,18 @@ This is rendered with `{description}`
|
|||
|
||||
|
||||
|
||||
The question is **What is the website of {title()}?**
|
||||
The question is What is the website of {title()}?
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||
|
||||
This is rendered with <a href='{website}' target='_blank'>{website}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='{contact:website}' target='_blank'>{contact:website}</a> corresponds with `contact:website~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -108,14 +119,18 @@ This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **What is the email address of {title()}?**
|
||||
The question is What is the email address of {title()}?
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||
|
||||
This is rendered with <a href='mailto:{email}' target='_blank'>{email}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='mailto:{contact:email}' target='_blank'>{contact:email}</a> corresponds with `contact:email~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -124,14 +139,18 @@ This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **What is the phone number of {title()}?**
|
||||
The question is What is the phone number of {title()}?
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||
|
||||
This is rendered with <a href='tel:{phone}'>{phone}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='tel:{contact:phone}'>{contact:phone}</a> corresponds with `contact:phone~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -140,9 +159,12 @@ This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **What are the opening hours of {title()}?**
|
||||
The question is What are the opening hours of {title()}?
|
||||
|
||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||
|
||||
This is rendered with <h3>Opening hours</h3>{opening_hours_table(opening_hours)}
|
||||
|
||||
|
||||
|
||||
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)
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/binocular/telescope.svg' height="100px">
|
||||
|
||||
Binoculas
|
||||
Binoculars
|
||||
|
||||
|
||||
|
||||
|
@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -68,7 +70,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -78,14 +82,17 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **How much does one have to pay to use these binoculars?**
|
||||
The question is How much does one have to pay to use these binoculars?
|
||||
|
||||
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
||||
This is rendered with `Using these binoculars costs {charge}`
|
||||
|
||||
This is rendered with Using these binoculars costs {charge}
|
||||
|
||||
|
||||
|
||||
- **Free to use** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
- Free to use corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -94,9 +101,12 @@ This is rendered with `Using these binoculars costs {charge}`
|
|||
|
||||
|
||||
|
||||
The question is **When looking through this binocular, in what direction does one look?**
|
||||
The question is When looking through this binocular, in what direction does one look?
|
||||
|
||||
This rendering asks information about the property [direction](https://wiki.openstreetmap.org/wiki/Key:direction)
|
||||
This is rendered with `Looks towards {direction}°`
|
||||
|
||||
This is rendered with Looks towards {direction}°
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/binocular/binocular.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/binocular/binocular.json)
|
|
@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -69,7 +71,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -79,16 +83,17 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **Is this a bird blind or a bird watching shelter?**
|
||||
The question is Is this a bird blind or a bird watching shelter?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Bird blind** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:shelter' target='_blank'>shelter</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shelter%3Dno' target='_blank'>no</a>
|
||||
- **Bird hide** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dshelter' target='_blank'>shelter</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes' target='_blank'>yes</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:shelter' target='_blank'>shelter</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shelter%3Dyes' target='_blank'>yes</a>
|
||||
- **Bird tower hide** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dtower' target='_blank'>tower</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:bird_hide' target='_blank'>bird_hide</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bird_hide%3Dtower' target='_blank'>tower</a>
|
||||
- **Bird hide shelter** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dshelter' target='_blank'>shelter</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes' target='_blank'>yes</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:shelter' target='_blank'>shelter</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shelter%3Dyes' target='_blank'>yes</a>_This option cannot be chosen as answer_
|
||||
- Bird blind corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:shelter' target='_blank'>shelter</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shelter%3Dno' target='_blank'>no</a>`
|
||||
- Bird hide corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dshelter' target='_blank'>shelter</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes' target='_blank'>yes</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:shelter' target='_blank'>shelter</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shelter%3Dyes' target='_blank'>yes</a>`
|
||||
- Bird tower hide corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dtower' target='_blank'>tower</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:bird_hide' target='_blank'>bird_hide</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bird_hide%3Dtower' target='_blank'>tower</a>`
|
||||
- Bird hide shelter corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dshelter' target='_blank'>shelter</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes' target='_blank'>yes</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:shelter' target='_blank'>shelter</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shelter%3Dyes' target='_blank'>yes</a>`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -97,16 +102,16 @@ The question is **Is this a bird blind or a bird watching shelter?**
|
|||
|
||||
|
||||
|
||||
The question is **Is this bird hide accessible to wheelchair users?**
|
||||
The question is Is this bird hide accessible to wheelchair users?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **There are special provisions for wheelchair users** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>
|
||||
- **A wheelchair can easily use this birdhide** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>
|
||||
- **This birdhide is reachable by wheelchair, but it is not easy** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited' target='_blank'>limited</a>
|
||||
- **Not accessible to wheelchair users** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a>
|
||||
- There are special provisions for wheelchair users corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>`
|
||||
- A wheelchair can easily use this birdhide corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>`
|
||||
- This birdhide is reachable by wheelchair, but it is not easy corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited' target='_blank'>limited</a>`
|
||||
- Not accessible to wheelchair users corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -115,15 +120,18 @@ The question is **Is this bird hide accessible to wheelchair users?**
|
|||
|
||||
|
||||
|
||||
The question is **Who operates this birdhide?**
|
||||
The question is Who operates this birdhide?
|
||||
|
||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||
This is rendered with `Operated by {operator}`
|
||||
|
||||
This is rendered with Operated by {operator}
|
||||
|
||||
|
||||
|
||||
- **Operated by Natuurpunt** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt' target='_blank'>Natuurpunt</a>
|
||||
- **Operated by the Agency for Nature and Forests** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgentschap Natuur en Bos' target='_blank'>Agentschap Natuur en Bos</a>
|
||||
|
||||
|
||||
- Operated by Natuurpunt corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt' target='_blank'>Natuurpunt</a>`
|
||||
- Operated by the Agency for Nature and Forests corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgentschap Natuur en Bos' target='_blank'>Agentschap Natuur en Bos</a>`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/birdhide/birdhide.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/birdhide/birdhide.json)
|
|
@ -26,6 +26,7 @@ A layer showing cafés and pubs where one can gather around a drink. The layer a
|
|||
|
||||
|
||||
- [cafes_and_pubs](https://mapcomplete.osm.be/cafes_and_pubs)
|
||||
- [onwheels](https://mapcomplete.osm.be/onwheels)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
|
@ -40,10 +41,10 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbar' target='_blank'>bar</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpub' target='_blank'>pub</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe' target='_blank'>cafe</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbiergarten' target='_blank'>biergarten</a>
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbar' target='_blank'>bar</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpub' target='_blank'>pub</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe' target='_blank'>cafe</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbiergarten' target='_blank'>biergarten</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dnightclub' target='_blank'>nightclub</a>
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22bar%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22pub%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22biergarten%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22bar%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22pub%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22biergarten%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22nightclub%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
|
||||
|
||||
|
||||
|
@ -52,19 +53,23 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
|
||||
|
@ -75,8 +80,35 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### level
|
||||
|
||||
|
||||
|
||||
The question is On what level is this feature located?
|
||||
|
||||
This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level)
|
||||
|
||||
This is rendered with Located on the {level}th floor
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Located underground corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- Located on the ground floor corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>`
|
||||
- Located on the ground floor corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- Located on the first floor corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D1' target='_blank'>1</a>`
|
||||
- Located on the first basement level corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D-1' target='_blank'>-1</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -85,10 +117,13 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What is the name of this pub?**
|
||||
The question is What is the name of this pub?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
This is rendered with `This pub is named {name}`
|
||||
|
||||
This is rendered with This pub is named {name}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -96,17 +131,18 @@ This is rendered with `This pub is named {name}`
|
|||
|
||||
|
||||
|
||||
The question is **What kind of cafe is this**
|
||||
The question is What kind of cafe is this?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **A pub, mostly for drinking beers in a warm, relaxed interior** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpub' target='_blank'>pub</a>
|
||||
- **A more modern and commercial <b>bar</b>, possibly with a music and light installation** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbar' target='_blank'>bar</a>
|
||||
- **A <b>cafe</b> to drink tea, coffee or an alcoholical bevarage in a quiet environment** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe' target='_blank'>cafe</a>
|
||||
- **A <b>restuarant</b> where one can get a proper meal** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant' target='_blank'>restaurant</a>
|
||||
- **An open space where beer is served, typically seen in Germany** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbiergarten' target='_blank'>biergarten</a>
|
||||
- A pub, mostly for drinking beers in a warm, relaxed interior corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpub' target='_blank'>pub</a>`
|
||||
- A more modern and commercial <b>bar</b>, possibly with a music and light installation corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbar' target='_blank'>bar</a>`
|
||||
- A <b>cafe</b> to drink tea, coffee or an alcoholical bevarage in a quiet environment corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe' target='_blank'>cafe</a>`
|
||||
- A <b>restuarant</b> where one can get a proper meal corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant' target='_blank'>restaurant</a>`
|
||||
- An open space where beer is served, typically seen in Germany corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbiergarten' target='_blank'>biergarten</a>`
|
||||
- This is a <b>nightclub</b> or disco with a focus on dancing, music by a DJ with accompanying light show and a bar to get (alcoholic) drinks corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dnightclub' target='_blank'>nightclub</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -115,10 +151,13 @@ The question is **What kind of cafe is this**
|
|||
|
||||
|
||||
|
||||
The question is **What are the opening hours of {title()}?**
|
||||
The question is What are the opening hours of {title()}?
|
||||
|
||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||
|
||||
This is rendered with <h3>Opening hours</h3>{opening_hours_table(opening_hours)}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -126,14 +165,18 @@ This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)
|
|||
|
||||
|
||||
|
||||
The question is **What is the website of {title()}?**
|
||||
The question is What is the website of {title()}?
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||
|
||||
This is rendered with <a href='{website}' target='_blank'>{website}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='{contact:website}' target='_blank'>{contact:website}</a> corresponds with `contact:website~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -142,14 +185,18 @@ This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **What is the email address of {title()}?**
|
||||
The question is What is the email address of {title()}?
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||
|
||||
This is rendered with <a href='mailto:{email}' target='_blank'>{email}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='mailto:{contact:email}' target='_blank'>{contact:email}</a> corresponds with `contact:email~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -158,14 +205,18 @@ This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **What is the phone number of {title()}?**
|
||||
The question is What is the phone number of {title()}?
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||
|
||||
This is rendered with <a href='tel:{phone}'>{phone}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='tel:{contact:phone}'>{contact:phone}</a> corresponds with `contact:phone~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -174,14 +225,16 @@ This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **Which methods of payment are accepted here?**
|
||||
The question is Which methods of payment are accepted here?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Cash is accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dno' target='_blank'>no</a>
|
||||
- **Payment cards are accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||
- Cash is accepted here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dno' target='_blank'>no</a>
|
||||
- Payment cards are accepted here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
@ -190,16 +243,33 @@ The question is **Which methods of payment are accepted here?**
|
|||
|
||||
|
||||
|
||||
The question is **Is this place accessible with a wheelchair?**
|
||||
The question is Is this place accessible with a wheelchair?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This place is specially adapted for wheelchair users** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>
|
||||
- **This place is easily reachable with a wheelchair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>
|
||||
- **It is possible to reach this place in a wheelchair, but it is not easy** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited' target='_blank'>limited</a>
|
||||
- **This place is not reachable with a wheelchair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a>
|
||||
- This place is specially adapted for wheelchair users corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>`
|
||||
- This place is easily reachable with a wheelchair corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>`
|
||||
- It is possible to reach this place in a wheelchair, but it is not easy corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited' target='_blank'>limited</a>`
|
||||
- This place is not reachable with a wheelchair corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### smoking
|
||||
|
||||
|
||||
|
||||
The question is Is smoking allowed at {title()}?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Smoking is <b>allowed</b> corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:smoking' target='_blank'>smoking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoking%3Dyes' target='_blank'>yes</a>`
|
||||
- Smoking is <b>not allowed</b> corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:smoking' target='_blank'>smoking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoking%3Dno' target='_blank'>no</a>`
|
||||
- Smoking is <b>allowed outside</b>. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:smoking' target='_blank'>smoking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoking%3Doutside' target='_blank'>outside</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -208,16 +278,16 @@ The question is **Is this place accessible with a wheelchair?**
|
|||
|
||||
|
||||
|
||||
The question is **Does this amenity have electrical outlets, available to customers when they are inside?**
|
||||
The question is Does this amenity have electrical outlets, available to customers when they are inside?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dyes' target='_blank'>yes</a>
|
||||
- **There are a few domestic sockets available to customers seated indoors, where they can charge their electronics** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dlimited' target='_blank'>limited</a>
|
||||
- **There are no sockets available indoors to customers, but charging might be possible if the staff is asked** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask' target='_blank'>ask</a>
|
||||
- **There are a no domestic sockets available to customers seated indoors** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno' target='_blank'>no</a>
|
||||
- There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dyes' target='_blank'>yes</a>`
|
||||
- There are a few domestic sockets available to customers seated indoors, where they can charge their electronics corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dlimited' target='_blank'>limited</a>`
|
||||
- There are no sockets available indoors to customers, but charging might be possible if the staff is asked corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask' target='_blank'>ask</a>`
|
||||
- There are a no domestic sockets available to customers seated indoors corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -226,16 +296,28 @@ The question is **Does this amenity have electrical outlets, available to custom
|
|||
|
||||
|
||||
|
||||
The question is **Are dogs allowed in this business?**
|
||||
The question is Are dogs allowed in this business?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Dogs are allowed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes' target='_blank'>yes</a>
|
||||
- **Dogs are <b>not</b> allowed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno' target='_blank'>no</a>
|
||||
- **Dogs are allowed, but they have to be leashed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed' target='_blank'>leashed</a>
|
||||
- **Dogs are allowed and can run around freely** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed' target='_blank'>unleashed</a>
|
||||
- Dogs are allowed corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes' target='_blank'>yes</a>`
|
||||
- Dogs are <b>not</b> allowed corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno' target='_blank'>no</a>`
|
||||
- Dogs are allowed, but they have to be leashed corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed' target='_blank'>leashed</a>`
|
||||
- Dogs are allowed and can run around freely corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed' target='_blank'>unleashed</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### reviews
|
||||
|
||||
|
||||
|
||||
Shows the reviews module (including the possibility to leave a review)
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
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)
|
|
@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -79,7 +81,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -89,10 +93,13 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What is this place called?**
|
||||
The question is What is this place called?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
This is rendered with `This place is called {name}`
|
||||
|
||||
This is rendered with This place is called {name}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -100,14 +107,14 @@ This is rendered with `This place is called {name}`
|
|||
|
||||
|
||||
|
||||
The question is **Does this place charge a fee?**
|
||||
The question is Does this place charge a fee?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **You need to pay for use** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>
|
||||
- **Can be used for free** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>
|
||||
- You need to pay for use corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>`
|
||||
- Can be used for free corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -116,12 +123,15 @@ The question is **Does this place charge a fee?**
|
|||
|
||||
|
||||
|
||||
The question is **How much does this place charge?**
|
||||
The question is How much does this place charge?
|
||||
|
||||
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
||||
This is rendered with `This place charges {charge}`
|
||||
|
||||
Only visible if `fee=yes` is shown
|
||||
This is rendered with This place charges {charge}
|
||||
|
||||
|
||||
|
||||
Only visible if `fee=yes` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -129,14 +139,14 @@ Only visible if `fee=yes` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Does this place have a sanitary dump station?**
|
||||
The question is Does this place have a sanitary dump station?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This place has a sanitary dump station** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station' target='_blank'>sanitary_dump_station</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station%3Dyes' target='_blank'>yes</a>
|
||||
- **This place does not have a sanitary dump station** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station' target='_blank'>sanitary_dump_station</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station%3Dno' target='_blank'>no</a>
|
||||
- This place has a sanitary dump station corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station' target='_blank'>sanitary_dump_station</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station%3Dyes' target='_blank'>yes</a>`
|
||||
- This place does not have a sanitary dump station corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station' target='_blank'>sanitary_dump_station</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -145,10 +155,13 @@ The question is **Does this place have a sanitary dump station?**
|
|||
|
||||
|
||||
|
||||
The question is **How many campers can stay here? (skip if there is no obvious number of spaces or allowed vehicles)**
|
||||
The question is How many campers can stay here? (skip if there is no obvious number of spaces or allowed vehicles)
|
||||
|
||||
This rendering asks information about the property [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity)
|
||||
This is rendered with `{capacity} campers can use this place at the same time`
|
||||
|
||||
This is rendered with {capacity} campers can use this place at the same time
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -156,15 +169,16 @@ This is rendered with `{capacity} campers can use this place at the same time`
|
|||
|
||||
|
||||
|
||||
The question is **Does this place provide internet access?**
|
||||
The question is Does this place provide internet access?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **There is internet access** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dyes' target='_blank'>yes</a>
|
||||
- **There is internet access** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwifi' target='_blank'>wifi</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan' target='_blank'>wlan</a>_This option cannot be chosen as answer_
|
||||
- **There is no internet access** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno' target='_blank'>no</a>
|
||||
- There is internet access corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dyes' target='_blank'>yes</a>`
|
||||
- There is internet access corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwifi' target='_blank'>wifi</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan' target='_blank'>wlan</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- There is no internet access corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -173,17 +187,17 @@ The question is **Does this place provide internet access?**
|
|||
|
||||
|
||||
|
||||
The question is **Do you have to pay for the internet access?**
|
||||
The question is Do you have to pay for the internet access?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **You need to pay extra for internet access** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access:fee' target='_blank'>internet_access:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes' target='_blank'>yes</a>
|
||||
- **You do not need to pay extra for internet access** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access:fee' target='_blank'>internet_access:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno' target='_blank'>no</a>
|
||||
- You need to pay extra for internet access corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:internet_access:fee' target='_blank'>internet_access:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes' target='_blank'>yes</a>`
|
||||
- You do not need to pay extra for internet access corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:internet_access:fee' target='_blank'>internet_access:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
Only visible if `internet_access=yes` is shown
|
||||
Only visible if `internet_access=yes` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -191,14 +205,14 @@ Only visible if `internet_access=yes` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Does this place have toilets?**
|
||||
The question is Does this place have toilets?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This place has toilets** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
|
||||
- **This place does not have toilets** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno' target='_blank'>no</a>
|
||||
- This place has toilets corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>`
|
||||
- This place does not have toilets corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -207,10 +221,13 @@ The question is **Does this place have toilets?**
|
|||
|
||||
|
||||
|
||||
The question is **Does this place have a website?**
|
||||
The question is Does this place have a website?
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `Official website: <a href='{website}'>{website}</a>`
|
||||
|
||||
This is rendered with Official website: <a href='{website}'>{website}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -218,15 +235,15 @@ This is rendered with `Official website: <a href='{website}'>{website}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **Does this place offer spots for long term rental?**
|
||||
The question is Does this place offer spots for long term rental?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Yes, there are some spots for long term rental, but you can also stay on a daily basis** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:permanent_camping' target='_blank'>permanent_camping</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dyes' target='_blank'>yes</a>
|
||||
- **No, there are no permanent guests here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:permanent_camping' target='_blank'>permanent_camping</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dno' target='_blank'>no</a>
|
||||
- **It is only possible to stay here if you have a long term contract(this place will disappear from this map if you choose this)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:permanent_camping' target='_blank'>permanent_camping</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Donly' target='_blank'>only</a>
|
||||
- There are some spots for long term rental, but you can also stay on a daily basis corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:permanent_camping' target='_blank'>permanent_camping</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dyes' target='_blank'>yes</a>`
|
||||
- There are no permanent guests here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:permanent_camping' target='_blank'>permanent_camping</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dno' target='_blank'>no</a>`
|
||||
- It is only possible to stay here if you have a long term contract(this place will disappear from this map if you choose this) corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:permanent_camping' target='_blank'>permanent_camping</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Donly' target='_blank'>only</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -235,10 +252,13 @@ The question is **Does this place offer spots for long term rental?**
|
|||
|
||||
|
||||
|
||||
The question is **Would you like to add a general description of this place? (Do not repeat information previously asked or shown above. Please keep it objective - opinions go into the reviews)**
|
||||
The question is Would you like to add a general description of this place? (Do not repeat information previously asked or shown above. Please keep it objective - opinions go into the reviews)
|
||||
|
||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||
This is rendered with `More details about this place: {description}`
|
||||
|
||||
This is rendered with More details about this place: {description}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -246,7 +266,7 @@ This is rendered with `More details about this place: {description}`
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -256,7 +276,9 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
Shows the reviews module (including the possibility to leave a review)
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -266,10 +288,13 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **Who operates this place?**
|
||||
The question is Who operates this place?
|
||||
|
||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||
This is rendered with `This place is operated by {operator}`
|
||||
|
||||
This is rendered with This place is operated by {operator}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -277,14 +302,14 @@ This is rendered with `This place is operated by {operator}`
|
|||
|
||||
|
||||
|
||||
The question is **Does this place have a power supply?**
|
||||
The question is Does this place have a power supply?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This place has a power supply** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:power_supply' target='_blank'>power_supply</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:power_supply%3Dyes' target='_blank'>yes</a>
|
||||
- **This place does not have power supply** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:power_supply' target='_blank'>power_supply</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:power_supply%3Dno' target='_blank'>no</a>
|
||||
- This place has a power supply corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:power_supply' target='_blank'>power_supply</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:power_supply%3Dyes' target='_blank'>yes</a>`
|
||||
- This place does not have power supply corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:power_supply' target='_blank'>power_supply</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:power_supply%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -293,7 +318,9 @@ The question is **Does this place have a power supply?**
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
Show the images block at this location
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -303,7 +330,9 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
Shows a small map with the feature. Added by default to every popup
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load diff
2046
Docs/Layers/charging_station_ebikes.md
Normal file
2046
Docs/Layers/charging_station_ebikes.md
Normal file
File diff suppressed because it is too large
Load diff
|
@ -5,34 +5,19 @@
|
|||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/climbing/climbing_no_rope.svg' height="100px">
|
||||
|
||||
A climbing opportunity
|
||||
|
||||
A dummy layer which contains tagrenderings, shared among the climbing layers
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **10** and higher
|
||||
- This layer will automatically load [climbing](./climbing.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _embedding_feature_properties)
|
||||
- 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[8] which calculates the value for _contained_climbing_routes_properties)
|
||||
- This layer is needed as dependency for layer [climbing_club](#climbing_club)
|
||||
- This layer is needed as dependency for layer [climbing_gym](#climbing_gym)
|
||||
- This layer is needed as dependency for layer [climbing_route](#climbing_route)
|
||||
- This layer is needed as dependency for layer [climbing](#climbing)
|
||||
- This layer is needed as dependency for layer [maybe_climbing](#maybe_climbing)
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [climbing](https://mapcomplete.osm.be/climbing)
|
||||
- This layer is shown at zoomlevel **25** 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`
|
||||
|
||||
|
||||
|
||||
|
@ -47,13 +32,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dclimbing' target='_blank'>climbing</a>
|
||||
- climbing!~^route$
|
||||
- leisure!~^sports_centre$
|
||||
- climbing!~^route_top$
|
||||
- climbing!~^route_bottom$
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22sport%22%3D%22climbing%22%5D%5B%22climbing%22!~%22%5Eroute%24%22%5D%5B%22climbing%22!~%22%5Eroute_top%24%22%5D%5B%22climbing%22!~%22%5Eroute_bottom%24%22%5D%5B%22leisure%22!~%22%5Esports_centre%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22sport%22%3D%22climbing%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
|
||||
|
||||
|
||||
|
@ -62,351 +43,191 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/url#values) [url](https://wiki.openstreetmap.org/wiki/Key:url) | [url](../SpecialInputElements.md#url) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/_embedding_feature:access#values) [_embedding_feature:access](https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dyes) [permit](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dpermit) [customers](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dcustomers) [members](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dmembers) [no](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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) [permit](https://wiki.openstreetmap.org/wiki/Tag:access%3Dpermit) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [members](https://wiki.openstreetmap.org/wiki/Tag:access%3Dmembers) [no](https://wiki.openstreetmap.org/wiki/Tag:access%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/access:description#values) [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:length#values) [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) | [pnat](../SpecialInputElements.md#pnat) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:length#values) [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) | [pfloat](../SpecialInputElements.md#pfloat) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:traditional#values) [climbing:traditional](https://wiki.openstreetmap.org/wiki/Key:climbing:traditional) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
### website
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### minimap
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Contained routes length hist
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Contained routes hist
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Contained_climbing_routes
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
Only visible if `_contained_climbing_routes~^..*$` is shown
|
||||
|
||||
|
||||
|
||||
### name
|
||||
|
||||
|
||||
|
||||
The question is **What is the name of this climbing opportunity?**
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
This is rendered with `<strong>{name}</strong>`
|
||||
|
||||
|
||||
|
||||
- **This climbing opportunity doesn't have a name** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### Type
|
||||
|
||||
|
||||
|
||||
The question is **What kind of climbing opportunity is this?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **A climbing boulder - a single rock or cliff with one or a few climbing routes which can be climbed safely without rope** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dboulder' target='_blank'>boulder</a>
|
||||
- **A climbing crag - a single rock or cliff with at least a few climbing routes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dcrag' target='_blank'>crag</a>
|
||||
- **A climbing area with one or more climbing crags and/or boulders** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Darea' target='_blank'>area</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### Rock type (crag/rock/cliff only)
|
||||
|
||||
|
||||
|
||||
The question is **What is the rock type here?**
|
||||
|
||||
This rendering asks information about the property [rock](https://wiki.openstreetmap.org/wiki/Key:rock)
|
||||
This is rendered with `The rock type is {rock}`
|
||||
|
||||
|
||||
|
||||
- **Limestone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rock' target='_blank'>rock</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rock%3Dlimestone' target='_blank'>limestone</a>
|
||||
|
||||
|
||||
Only visible if `climbing=crag|natural=cliff|natural=bare_rock` is shown
|
||||
|
||||
|
||||
|
||||
### Website
|
||||
|
||||
|
||||
|
||||
The question is **Is there a (unofficial) website with more informations (e.g. topos)?**
|
||||
The question is Is there a (unofficial) website with more informations (e.g. topos)?
|
||||
|
||||
This rendering asks information about the property [url](https://wiki.openstreetmap.org/wiki/Key:url)
|
||||
This is rendered with `<a href='{url}' target='_blank'>{url}</a>`
|
||||
|
||||
Only visible if `leisure!~^sports_centre$&sport=climbing` is shown
|
||||
This is rendered with <a href='{url}' target='_blank'>{url}</a>
|
||||
|
||||
|
||||
|
||||
### Access from containing feature
|
||||
Only visible if `leisure!~^sports_centre$&sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
### average_length
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **<span class='subtle'>The <a href='#{_embedding_feature:id}'>containing feature</a> states that this is</span> publicly accessible<br/>{_embedding_feature:access:description}** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access' target='_blank'>_embedding_feature:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dyes' target='_blank'>yes</a>
|
||||
- **<span class='subtle'>The <a href='#{_embedding_feature:id}'>containing feature</a> states that </span> a permit is needed to access<br/>{_embedding_feature:access:description}** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access' target='_blank'>_embedding_feature:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dpermit' target='_blank'>permit</a>
|
||||
- **<span class='subtle'>The <a href='#{_embedding_feature:id}'>containing feature</a> states that this is</span> only accessible to customers<br/>{_embedding_feature:access:description}** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access' target='_blank'>_embedding_feature:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dcustomers' target='_blank'>customers</a>
|
||||
- **<span class='subtle'>The <a href='#{_embedding_feature:id}'>containing feature</a> states that this is</span> only accessible to club members<br/>{_embedding_feature:access:description}** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access' target='_blank'>_embedding_feature:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dmembers' target='_blank'>members</a>
|
||||
- **Not accessible as stated by <a href='#{_embedding_feature:id}'>the containing feature</a>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access' target='_blank'>_embedding_feature:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
Only visible if `_embedding_feature:access~^..*$` is shown
|
||||
|
||||
|
||||
|
||||
### Access
|
||||
|
||||
|
||||
|
||||
The question is **Who can access here?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Publicly accessible to anyone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>
|
||||
- **You need a permit to access here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpermit' target='_blank'>permit</a>
|
||||
- **Only customers** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers' target='_blank'>customers</a>
|
||||
- **Only club members** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dmembers' target='_blank'>members</a>
|
||||
- **Not accessible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
Only visible if `climbing!~^no$&sport=climbing|climbing:sport=yes&access~^..*$|` is shown
|
||||
|
||||
|
||||
|
||||
### Access description (without _embedding_feature:access:description)
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
This rendering asks information about the property [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description)
|
||||
This is rendered with `{access:description}`
|
||||
|
||||
|
||||
|
||||
### Avg length?
|
||||
|
||||
|
||||
|
||||
The question is **What is the (average) length of the routes in meters?**
|
||||
The question is What is the (average) length of the routes in meters?
|
||||
|
||||
This rendering asks information about the property [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length)
|
||||
This is rendered with `The routes are <b>{canonical(climbing:length)}</b> long on average`
|
||||
|
||||
Only visible if `climbing!~^route$&climbing:toprope!~^no$&sport=climbing|climbing:sport=yes|climbing=traditional|climbing=gym` is shown
|
||||
This is rendered with The routes are <b>{canonical(climbing:length)}</b> long on average
|
||||
|
||||
|
||||
|
||||
### Difficulty-min
|
||||
|
||||
|
||||
### min_difficulty
|
||||
|
||||
|
||||
|
||||
The question is **What is the grade of the easiest route here, according to the french classification system?**
|
||||
The question is What is the grade of the easiest route here, according to the french classification system?
|
||||
|
||||
This rendering asks information about the property [climbing:grade:french:min](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:min)
|
||||
This is rendered with `The lowest grade is {climbing:grade:french:min} according to the french/belgian system`
|
||||
|
||||
Only visible if `climbing!~^route$&climbing:sport=yes|sport=climbing` is shown
|
||||
This is rendered with The lowest grade is {climbing:grade:french:min} according to the french/belgian system
|
||||
|
||||
|
||||
|
||||
### Difficulty-max
|
||||
|
||||
|
||||
### max_difficulty
|
||||
|
||||
|
||||
|
||||
The question is **What is the highest grade route here, according to the french classification system?**
|
||||
The question is What is the highest grade route here, according to the french classification system?
|
||||
|
||||
This rendering asks information about the property [climbing:grade:french:max](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:max)
|
||||
This is rendered with `The highest grade is {climbing:grade:french:max} according to the french/belgian system`
|
||||
|
||||
Only visible if `climbing!~^route$&climbing:sport=yes|sport=climbing` is shown
|
||||
This is rendered with The highest grade is {climbing:grade:french:max} according to the french/belgian system
|
||||
|
||||
|
||||
|
||||
### Boldering?
|
||||
Only visible if `climbing!~^route$&climbing:sport=yes|sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
The question is **Is bouldering possible here?**
|
||||
### bouldering
|
||||
|
||||
|
||||
|
||||
The question is Is bouldering possible here?
|
||||
|
||||
|
||||
- **Bouldering is possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:boulder' target='_blank'>climbing:boulder</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dyes' target='_blank'>yes</a>
|
||||
- **Bouldering is not possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:boulder' target='_blank'>climbing:boulder</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dno' target='_blank'>no</a>
|
||||
- **Bouldering is possible, allthough there are only a few routes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:boulder' target='_blank'>climbing:boulder</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dlimited' target='_blank'>limited</a>
|
||||
- **There are {climbing:boulder} boulder routes** corresponds with climbing:boulder~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
Only visible if `climbing:sport=yes|sport=climbing` is shown
|
||||
|
||||
- Bouldering is possible here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:climbing:boulder' target='_blank'>climbing:boulder</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dyes' target='_blank'>yes</a>`
|
||||
- Bouldering is not possible here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:climbing:boulder' target='_blank'>climbing:boulder</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dno' target='_blank'>no</a>`
|
||||
- Bouldering is possible, allthough there are only a few routes corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:climbing:boulder' target='_blank'>climbing:boulder</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dlimited' target='_blank'>limited</a>`
|
||||
- There are {climbing:boulder} boulder routes corresponds with `climbing:boulder~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
### Toproping?
|
||||
|
||||
|
||||
### toprope
|
||||
|
||||
The question is **Is toprope climbing possible here?**
|
||||
|
||||
|
||||
The question is Is toprope climbing possible here?
|
||||
|
||||
|
||||
|
||||
- **Toprope climbing is possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:toprope' target='_blank'>climbing:toprope</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:toprope%3Dyes' target='_blank'>yes</a>
|
||||
- **Toprope climbing is not possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:toprope' target='_blank'>climbing:toprope</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:toprope%3Dno' target='_blank'>no</a>
|
||||
- **There are {climbing:toprope} toprope routes** corresponds with climbing:toprope~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
Only visible if `climbing:sport=yes|sport=climbing` is shown
|
||||
- Toprope climbing is possible here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:climbing:toprope' target='_blank'>climbing:toprope</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:toprope%3Dyes' target='_blank'>yes</a>`
|
||||
- Toprope climbing is not possible here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:climbing:toprope' target='_blank'>climbing:toprope</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:toprope%3Dno' target='_blank'>no</a>`
|
||||
- There are {climbing:toprope} toprope routes corresponds with `climbing:toprope~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
### Sportclimbing?
|
||||
|
||||
### sportclimbing
|
||||
|
||||
|
||||
The question is **Is sport climbing possible here on fixed anchors?**
|
||||
|
||||
The question is Is sport climbing possible here on fixed anchors?
|
||||
|
||||
|
||||
|
||||
|
||||
- **Sport climbing is possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:sport' target='_blank'>climbing:sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:sport%3Dyes' target='_blank'>yes</a>
|
||||
- **Sport climbing is not possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:sport' target='_blank'>climbing:sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:sport%3Dno' target='_blank'>no</a>
|
||||
- **There are {climbing:sport} sport climbing routes** corresponds with climbing:sport~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
- Sport climbing is possible here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:climbing:sport' target='_blank'>climbing:sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:sport%3Dyes' target='_blank'>yes</a>`
|
||||
- Sport climbing is not possible here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:climbing:sport' target='_blank'>climbing:sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:sport%3Dno' target='_blank'>no</a>`
|
||||
- There are {climbing:sport} sport climbing routes corresponds with `climbing:sport~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
Only visible if `climbing:sport=yes|sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
### Traditional climbing?
|
||||
### trad_climbing
|
||||
|
||||
|
||||
|
||||
The question is **Is traditional climbing possible here (using own gear e.g. chocks)?**
|
||||
The question is Is traditional climbing possible here (using own gear e.g. chocks)?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Traditional climbing is possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:traditional' target='_blank'>climbing:traditional</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dyes' target='_blank'>yes</a>
|
||||
- **Traditional climbing is not possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:traditional' target='_blank'>climbing:traditional</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dno' target='_blank'>no</a>
|
||||
- **There are {climbing:traditional} traditional climbing routes** corresponds with climbing:traditional~^..*$_This option cannot be chosen as answer_
|
||||
- Traditional climbing is possible here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:climbing:traditional' target='_blank'>climbing:traditional</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dyes' target='_blank'>yes</a>`
|
||||
- Traditional climbing is not possible here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:climbing:traditional' target='_blank'>climbing:traditional</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dno' target='_blank'>no</a>`
|
||||
- There are {climbing:traditional} traditional climbing routes corresponds with `climbing:traditional~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
Only visible if `climbing:sport=yes|sport=climbing` is shown
|
||||
|
||||
|
||||
### max_bolts
|
||||
|
||||
### Speed climbing?
|
||||
|
||||
|
||||
The question is How many bolts do routes in {title()} have at most?
|
||||
|
||||
The question is **Is there a speed climbing wall?**
|
||||
This rendering asks information about the property [climbing:bolts:max](https://wiki.openstreetmap.org/wiki/Key:climbing:bolts:max)
|
||||
|
||||
This is rendered with The sport climbing routes here have at most {climbing:bolts:max} bolts.<div class='subtle'>This is without relays and indicates how much quickdraws a climber needs</div>
|
||||
|
||||
|
||||
|
||||
|
||||
- **There is a speed climbing wall** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:speed' target='_blank'>climbing:speed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:speed%3Dyes' target='_blank'>yes</a>
|
||||
- **There is no speed climbing wall** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:speed' target='_blank'>climbing:speed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:speed%3Dno' target='_blank'>no</a>
|
||||
- **There are {climbing:speed} speed climbing walls** corresponds with climbing:speed~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
### fee
|
||||
|
||||
Only visible if `leisure=sports_centre&climbing:sport=yes|sport=climbing` is shown
|
||||
|
||||
|
||||
The question is Is a fee required to climb here?
|
||||
|
||||
### questions
|
||||
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
||||
|
||||
This is rendered with A fee of {charge} should be paid for climbing here
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### reviews
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
- Climbing here is free of charge corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>`
|
||||
- Paying a fee is required to climb here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/climbing/climbing.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/climbing/climbing.json)
|
||||
This document is autogenerated from [assets/layers/climbing/climbing.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing/climbing.json)
|
246
Docs/Layers/climbing_area.md
Normal file
246
Docs/Layers/climbing_area.md
Normal file
|
@ -0,0 +1,246 @@
|
|||
|
||||
|
||||
climbing_area
|
||||
===============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/climbing/climbing_no_rope.svg' height="100px">
|
||||
|
||||
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)
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [climbing](https://mapcomplete.osm.be/climbing)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dclimbing' target='_blank'>climbing</a>
|
||||
- climbing!~^route$
|
||||
- leisure!~^sports_centre$
|
||||
- climbing!=route_top
|
||||
- climbing!=route_bottom
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22sport%22%3D%22climbing%22%5D%5B%22climbing%22!~%22%5Eroute%24%22%5D%5B%22climbing%22!%3D%22route_top%22%5D%5B%22climbing%22!%3D%22route_bottom%22%5D%5B%22leisure%22!~%22%5Esports_centre%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/url#values) [url](https://wiki.openstreetmap.org/wiki/Key:url) | [url](../SpecialInputElements.md#url) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### minimap
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Contained routes length hist
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Contained routes hist
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Contained_climbing_routes
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
Only visible if `_contained_climbing_routes~^..*$` is shown
|
||||
|
||||
|
||||
|
||||
### name
|
||||
|
||||
|
||||
|
||||
The question is What is the name of this climbing opportunity?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
|
||||
This is rendered with <strong>{name}</strong>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This climbing opportunity doesn't have a name corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### Type
|
||||
|
||||
|
||||
|
||||
The question is What kind of climbing opportunity is this?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- A climbing boulder - a single rock or cliff with one or a few climbing routes which can be climbed safely without rope corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dboulder' target='_blank'>boulder</a>`
|
||||
- A climbing crag - a single rock or cliff with at least a few climbing routes corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dcrag' target='_blank'>crag</a>`
|
||||
- A climbing area with one or more climbing crags and/or boulders corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Darea' target='_blank'>area</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### Rock type (crag/rock/cliff only)
|
||||
|
||||
|
||||
|
||||
The question is What is the rock type here?
|
||||
|
||||
This rendering asks information about the property [rock](https://wiki.openstreetmap.org/wiki/Key:rock)
|
||||
|
||||
This is rendered with The rock type is {rock}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Limestone corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rock' target='_blank'>rock</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rock%3Dlimestone' target='_blank'>limestone</a>`
|
||||
|
||||
|
||||
Only visible if `climbing=crag|natural=cliff|natural=bare_rock` is shown
|
||||
|
||||
|
||||
|
||||
### website
|
||||
|
||||
|
||||
|
||||
The question is Is there a (unofficial) website with more informations (e.g. topos)?
|
||||
|
||||
This rendering asks information about the property [url](https://wiki.openstreetmap.org/wiki/Key:url)
|
||||
|
||||
This is rendered with <a href='{url}' target='_blank'>{url}</a>
|
||||
|
||||
|
||||
|
||||
Only visible if `leisure!~^sports_centre$&sport=climbing&sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
### fee
|
||||
|
||||
|
||||
|
||||
The question is Is a fee required to climb here?
|
||||
|
||||
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
||||
|
||||
This is rendered with A fee of {charge} should be paid for climbing here
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Climbing here is free of charge corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>`
|
||||
- Paying a fee is required to climb here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>`
|
||||
|
||||
|
||||
Only visible if `sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
### bouldering
|
||||
|
||||
|
||||
|
||||
The question is Is bouldering possible here?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Bouldering is possible here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:climbing:boulder' target='_blank'>climbing:boulder</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dyes' target='_blank'>yes</a>`
|
||||
- Bouldering is not possible here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:climbing:boulder' target='_blank'>climbing:boulder</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dno' target='_blank'>no</a>`
|
||||
- Bouldering is possible, allthough there are only a few routes corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:climbing:boulder' target='_blank'>climbing:boulder</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dlimited' target='_blank'>limited</a>`
|
||||
- There are {climbing:boulder} boulder routes corresponds with `climbing:boulder~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
Only visible if `sport=climbing` is shown
|
||||
|
||||
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)
|
|
@ -15,7 +15,6 @@ A climbing club or organisation
|
|||
|
||||
|
||||
- This layer is shown at zoomlevel **10** and higher
|
||||
- This layer will automatically load [climbing](./climbing.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _embedding_feature_properties)
|
||||
|
||||
|
||||
|
||||
|
@ -27,6 +26,7 @@ A climbing club or organisation
|
|||
|
||||
|
||||
- [climbing](https://mapcomplete.osm.be/climbing)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
|
||||
|
@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -63,18 +65,6 @@ attribute | type | values which are supported by this layer
|
|||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/url#values) [url](https://wiki.openstreetmap.org/wiki/Key:url) | [url](../SpecialInputElements.md#url) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/_embedding_feature:access#values) [_embedding_feature:access](https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dyes) [permit](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dpermit) [customers](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dcustomers) [members](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dmembers) [no](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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) [permit](https://wiki.openstreetmap.org/wiki/Tag:access%3Dpermit) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [members](https://wiki.openstreetmap.org/wiki/Tag:access%3Dmembers) [no](https://wiki.openstreetmap.org/wiki/Tag:access%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/access:description#values) [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:length#values) [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) | [pnat](../SpecialInputElements.md#pnat) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:traditional#values) [climbing:traditional](https://wiki.openstreetmap.org/wiki/Key:climbing:traditional) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
|
||||
|
||||
|
||||
|
@ -83,10 +73,13 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
The question is **What is the name of this climbing club or NGO?**
|
||||
The question is What is the name of this climbing club or NGO?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
This is rendered with `<strong>{name}</strong>`
|
||||
|
||||
This is rendered with <strong>{name}</strong>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -94,14 +87,18 @@ This is rendered with `<strong>{name}</strong>`
|
|||
|
||||
|
||||
|
||||
The question is **What is the website of {title()}?**
|
||||
The question is What is the website of {title()}?
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||
|
||||
This is rendered with <a href='{website}' target='_blank'>{website}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='{contact:website}' target='_blank'>{contact:website}</a> corresponds with `contact:website~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -110,14 +107,18 @@ This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **What is the email address of {title()}?**
|
||||
The question is What is the email address of {title()}?
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||
|
||||
This is rendered with <a href='mailto:{email}' target='_blank'>{email}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='mailto:{contact:email}' target='_blank'>{contact:email}</a> corresponds with `contact:email~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -126,14 +127,18 @@ This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **What is the phone number of {title()}?**
|
||||
The question is What is the phone number of {title()}?
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||
|
||||
This is rendered with <a href='tel:{phone}'>{phone}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='tel:{contact:phone}'>{contact:phone}</a> corresponds with `contact:phone~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -142,250 +147,12 @@ This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **What are the opening hours of {title()}?**
|
||||
The question is What are the opening hours of {title()}?
|
||||
|
||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||
|
||||
|
||||
|
||||
### Website
|
||||
|
||||
|
||||
|
||||
The question is **Is there a (unofficial) website with more informations (e.g. topos)?**
|
||||
|
||||
This rendering asks information about the property [url](https://wiki.openstreetmap.org/wiki/Key:url)
|
||||
This is rendered with `<a href='{url}' target='_blank'>{url}</a>`
|
||||
|
||||
Only visible if `leisure!~^sports_centre$&sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
### Access from containing feature
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **<span class='subtle'>The <a href='#{_embedding_feature:id}'>containing feature</a> states that this is</span> publicly accessible<br/>{_embedding_feature:access:description}** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access' target='_blank'>_embedding_feature:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dyes' target='_blank'>yes</a>
|
||||
- **<span class='subtle'>The <a href='#{_embedding_feature:id}'>containing feature</a> states that </span> a permit is needed to access<br/>{_embedding_feature:access:description}** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access' target='_blank'>_embedding_feature:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dpermit' target='_blank'>permit</a>
|
||||
- **<span class='subtle'>The <a href='#{_embedding_feature:id}'>containing feature</a> states that this is</span> only accessible to customers<br/>{_embedding_feature:access:description}** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access' target='_blank'>_embedding_feature:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dcustomers' target='_blank'>customers</a>
|
||||
- **<span class='subtle'>The <a href='#{_embedding_feature:id}'>containing feature</a> states that this is</span> only accessible to club members<br/>{_embedding_feature:access:description}** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access' target='_blank'>_embedding_feature:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dmembers' target='_blank'>members</a>
|
||||
- **Not accessible as stated by <a href='#{_embedding_feature:id}'>the containing feature</a>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access' target='_blank'>_embedding_feature:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
Only visible if `_embedding_feature:access~^..*$` is shown
|
||||
|
||||
|
||||
|
||||
### Access
|
||||
|
||||
|
||||
|
||||
The question is **Who can access here?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Publicly accessible to anyone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>
|
||||
- **You need a permit to access here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpermit' target='_blank'>permit</a>
|
||||
- **Only customers** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers' target='_blank'>customers</a>
|
||||
- **Only club members** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dmembers' target='_blank'>members</a>
|
||||
- **Not accessible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
Only visible if `climbing!~^no$&sport=climbing|climbing:sport=yes&access~^..*$|` is shown
|
||||
|
||||
|
||||
|
||||
### Access description (without _embedding_feature:access:description)
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
This rendering asks information about the property [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description)
|
||||
This is rendered with `{access:description}`
|
||||
|
||||
|
||||
|
||||
### Avg length?
|
||||
|
||||
|
||||
|
||||
The question is **What is the (average) length of the routes in meters?**
|
||||
|
||||
This rendering asks information about the property [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length)
|
||||
This is rendered with `The routes are <b>{canonical(climbing:length)}</b> long on average`
|
||||
|
||||
Only visible if `climbing!~^route$&climbing:toprope!~^no$&sport=climbing|climbing:sport=yes|climbing=traditional|climbing=gym` is shown
|
||||
|
||||
|
||||
|
||||
### Difficulty-min
|
||||
|
||||
|
||||
|
||||
The question is **What is the grade of the easiest route here, according to the french classification system?**
|
||||
|
||||
This rendering asks information about the property [climbing:grade:french:min](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:min)
|
||||
This is rendered with `The lowest grade is {climbing:grade:french:min} according to the french/belgian system`
|
||||
|
||||
Only visible if `climbing!~^route$&climbing:sport=yes|sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
### Difficulty-max
|
||||
|
||||
|
||||
|
||||
The question is **What is the highest grade route here, according to the french classification system?**
|
||||
|
||||
This rendering asks information about the property [climbing:grade:french:max](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:max)
|
||||
This is rendered with `The highest grade is {climbing:grade:french:max} according to the french/belgian system`
|
||||
|
||||
Only visible if `climbing!~^route$&climbing:sport=yes|sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
### Boldering?
|
||||
|
||||
|
||||
|
||||
The question is **Is bouldering possible here?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Bouldering is possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:boulder' target='_blank'>climbing:boulder</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dyes' target='_blank'>yes</a>
|
||||
- **Bouldering is not possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:boulder' target='_blank'>climbing:boulder</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dno' target='_blank'>no</a>
|
||||
- **Bouldering is possible, allthough there are only a few routes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:boulder' target='_blank'>climbing:boulder</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dlimited' target='_blank'>limited</a>
|
||||
- **There are {climbing:boulder} boulder routes** corresponds with climbing:boulder~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
Only visible if `climbing:sport=yes|sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
### Toproping?
|
||||
|
||||
|
||||
|
||||
The question is **Is toprope climbing possible here?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Toprope climbing is possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:toprope' target='_blank'>climbing:toprope</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:toprope%3Dyes' target='_blank'>yes</a>
|
||||
- **Toprope climbing is not possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:toprope' target='_blank'>climbing:toprope</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:toprope%3Dno' target='_blank'>no</a>
|
||||
- **There are {climbing:toprope} toprope routes** corresponds with climbing:toprope~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
Only visible if `climbing:sport=yes|sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
### Sportclimbing?
|
||||
|
||||
|
||||
|
||||
The question is **Is sport climbing possible here on fixed anchors?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Sport climbing is possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:sport' target='_blank'>climbing:sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:sport%3Dyes' target='_blank'>yes</a>
|
||||
- **Sport climbing is not possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:sport' target='_blank'>climbing:sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:sport%3Dno' target='_blank'>no</a>
|
||||
- **There are {climbing:sport} sport climbing routes** corresponds with climbing:sport~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
Only visible if `climbing:sport=yes|sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
### Traditional climbing?
|
||||
|
||||
|
||||
|
||||
The question is **Is traditional climbing possible here (using own gear e.g. chocks)?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Traditional climbing is possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:traditional' target='_blank'>climbing:traditional</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dyes' target='_blank'>yes</a>
|
||||
- **Traditional climbing is not possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:traditional' target='_blank'>climbing:traditional</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dno' target='_blank'>no</a>
|
||||
- **There are {climbing:traditional} traditional climbing routes** corresponds with climbing:traditional~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
Only visible if `climbing:sport=yes|sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
### Speed climbing?
|
||||
|
||||
|
||||
|
||||
The question is **Is there a speed climbing wall?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **There is a speed climbing wall** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:speed' target='_blank'>climbing:speed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:speed%3Dyes' target='_blank'>yes</a>
|
||||
- **There is no speed climbing wall** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:speed' target='_blank'>climbing:speed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:speed%3Dno' target='_blank'>no</a>
|
||||
- **There are {climbing:speed} speed climbing walls** corresponds with climbing:speed~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
Only visible if `leisure=sports_centre&climbing:sport=yes|sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### reviews
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### minimap
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This is rendered with <h3>Opening hours</h3>{opening_hours_table(opening_hours)}
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/climbing/climbing.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/climbing/climbing.json)
|
||||
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)
|
|
@ -15,7 +15,6 @@ A climbing gym
|
|||
|
||||
|
||||
- This layer is shown at zoomlevel **10** and higher
|
||||
- This layer will automatically load [climbing](./climbing.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _embedding_feature_properties)
|
||||
|
||||
|
||||
|
||||
|
@ -27,6 +26,7 @@ A climbing gym
|
|||
|
||||
|
||||
- [climbing](https://mapcomplete.osm.be/climbing)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
|
||||
|
@ -53,7 +53,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -63,18 +65,14 @@ attribute | type | values which are supported by this layer
|
|||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/url#values) [url](https://wiki.openstreetmap.org/wiki/Key:url) | [url](../SpecialInputElements.md#url) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/_embedding_feature:access#values) [_embedding_feature:access](https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dyes) [permit](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dpermit) [customers](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dcustomers) [members](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dmembers) [no](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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) [permit](https://wiki.openstreetmap.org/wiki/Tag:access%3Dpermit) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [members](https://wiki.openstreetmap.org/wiki/Tag:access%3Dmembers) [no](https://wiki.openstreetmap.org/wiki/Tag:access%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/access:description#values) [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:length#values) [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) | [pnat](../SpecialInputElements.md#pnat) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:length#values) [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) | [pfloat](../SpecialInputElements.md#pfloat) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:traditional#values) [climbing:traditional](https://wiki.openstreetmap.org/wiki/Key:climbing:traditional) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
|
||||
|
||||
|
@ -84,7 +82,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -94,10 +94,13 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What is the name of this climbing gym?**
|
||||
The question is What is the name of this climbing gym?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
This is rendered with `<strong>{name}</strong>`
|
||||
|
||||
This is rendered with <strong>{name}</strong>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -105,14 +108,18 @@ This is rendered with `<strong>{name}</strong>`
|
|||
|
||||
|
||||
|
||||
The question is **What is the website of {title()}?**
|
||||
The question is What is the website of {title()}?
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||
|
||||
This is rendered with <a href='{website}' target='_blank'>{website}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='{contact:website}' target='_blank'>{contact:website}</a> corresponds with `contact:website~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -121,14 +128,18 @@ This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **What is the phone number of {title()}?**
|
||||
The question is What is the phone number of {title()}?
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||
|
||||
This is rendered with <a href='tel:{phone}'>{phone}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='tel:{contact:phone}'>{contact:phone}</a> corresponds with `contact:phone~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -137,208 +148,160 @@ This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **What is the email address of {title()}?**
|
||||
The question is What is the email address of {title()}?
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||
|
||||
This is rendered with <a href='mailto:{email}' target='_blank'>{email}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='mailto:{contact:email}' target='_blank'>{contact:email}</a> corresponds with `contact:email~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### fee
|
||||
|
||||
|
||||
|
||||
The question is Is a fee required to climb here?
|
||||
|
||||
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
||||
|
||||
This is rendered with A fee of {charge} should be paid for climbing here
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Climbing here is free of charge corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>`
|
||||
- Paying a fee is required to climb here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>`
|
||||
|
||||
|
||||
Only visible if `sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
### opening_hours
|
||||
|
||||
|
||||
|
||||
The question is **What are the opening hours of {title()}?**
|
||||
The question is What are the opening hours of {title()}?
|
||||
|
||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||
|
||||
|
||||
|
||||
### Website
|
||||
|
||||
|
||||
|
||||
The question is **Is there a (unofficial) website with more informations (e.g. topos)?**
|
||||
|
||||
This rendering asks information about the property [url](https://wiki.openstreetmap.org/wiki/Key:url)
|
||||
This is rendered with `<a href='{url}' target='_blank'>{url}</a>`
|
||||
|
||||
Only visible if `leisure!~^sports_centre$&sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
### Access from containing feature
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This is rendered with <h3>Opening hours</h3>{opening_hours_table(opening_hours)}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **<span class='subtle'>The <a href='#{_embedding_feature:id}'>containing feature</a> states that this is</span> publicly accessible<br/>{_embedding_feature:access:description}** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access' target='_blank'>_embedding_feature:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dyes' target='_blank'>yes</a>
|
||||
- **<span class='subtle'>The <a href='#{_embedding_feature:id}'>containing feature</a> states that </span> a permit is needed to access<br/>{_embedding_feature:access:description}** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access' target='_blank'>_embedding_feature:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dpermit' target='_blank'>permit</a>
|
||||
- **<span class='subtle'>The <a href='#{_embedding_feature:id}'>containing feature</a> states that this is</span> only accessible to customers<br/>{_embedding_feature:access:description}** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access' target='_blank'>_embedding_feature:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dcustomers' target='_blank'>customers</a>
|
||||
- **<span class='subtle'>The <a href='#{_embedding_feature:id}'>containing feature</a> states that this is</span> only accessible to club members<br/>{_embedding_feature:access:description}** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access' target='_blank'>_embedding_feature:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dmembers' target='_blank'>members</a>
|
||||
- **Not accessible as stated by <a href='#{_embedding_feature:id}'>the containing feature</a>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access' target='_blank'>_embedding_feature:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
Only visible if `_embedding_feature:access~^..*$` is shown
|
||||
### average_length
|
||||
|
||||
|
||||
|
||||
### Access
|
||||
|
||||
|
||||
|
||||
The question is **Who can access here?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Publicly accessible to anyone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>
|
||||
- **You need a permit to access here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpermit' target='_blank'>permit</a>
|
||||
- **Only customers** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers' target='_blank'>customers</a>
|
||||
- **Only club members** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dmembers' target='_blank'>members</a>
|
||||
- **Not accessible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
Only visible if `climbing!~^no$&sport=climbing|climbing:sport=yes&access~^..*$|` is shown
|
||||
|
||||
|
||||
|
||||
### Access description (without _embedding_feature:access:description)
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
This rendering asks information about the property [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description)
|
||||
This is rendered with `{access:description}`
|
||||
|
||||
|
||||
|
||||
### Avg length?
|
||||
|
||||
|
||||
|
||||
The question is **What is the (average) length of the routes in meters?**
|
||||
The question is What is the (average) length of the routes in meters?
|
||||
|
||||
This rendering asks information about the property [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length)
|
||||
This is rendered with `The routes are <b>{canonical(climbing:length)}</b> long on average`
|
||||
|
||||
Only visible if `climbing!~^route$&climbing:toprope!~^no$&sport=climbing|climbing:sport=yes|climbing=traditional|climbing=gym` is shown
|
||||
This is rendered with The routes are <b>{canonical(climbing:length)}</b> long on average
|
||||
|
||||
|
||||
|
||||
### Difficulty-min
|
||||
Only visible if `sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
The question is **What is the grade of the easiest route here, according to the french classification system?**
|
||||
### min_difficulty
|
||||
|
||||
|
||||
|
||||
The question is What is the grade of the easiest route here, according to the french classification system?
|
||||
|
||||
This rendering asks information about the property [climbing:grade:french:min](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:min)
|
||||
This is rendered with `The lowest grade is {climbing:grade:french:min} according to the french/belgian system`
|
||||
|
||||
Only visible if `climbing!~^route$&climbing:sport=yes|sport=climbing` is shown
|
||||
This is rendered with The lowest grade is {climbing:grade:french:min} according to the french/belgian system
|
||||
|
||||
|
||||
|
||||
### Difficulty-max
|
||||
Only visible if `sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
The question is **What is the highest grade route here, according to the french classification system?**
|
||||
### max_difficulty
|
||||
|
||||
|
||||
|
||||
The question is What is the highest grade route here, according to the french classification system?
|
||||
|
||||
This rendering asks information about the property [climbing:grade:french:max](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:max)
|
||||
This is rendered with `The highest grade is {climbing:grade:french:max} according to the french/belgian system`
|
||||
|
||||
Only visible if `climbing!~^route$&climbing:sport=yes|sport=climbing` is shown
|
||||
This is rendered with The highest grade is {climbing:grade:french:max} according to the french/belgian system
|
||||
|
||||
|
||||
|
||||
### Boldering?
|
||||
Only visible if `climbing!~^route$&climbing:sport=yes|sport=climbing&sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
The question is **Is bouldering possible here?**
|
||||
### bouldering
|
||||
|
||||
|
||||
|
||||
The question is Is bouldering possible here?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Bouldering is possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:boulder' target='_blank'>climbing:boulder</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dyes' target='_blank'>yes</a>
|
||||
- **Bouldering is not possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:boulder' target='_blank'>climbing:boulder</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dno' target='_blank'>no</a>
|
||||
- **Bouldering is possible, allthough there are only a few routes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:boulder' target='_blank'>climbing:boulder</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dlimited' target='_blank'>limited</a>
|
||||
- **There are {climbing:boulder} boulder routes** corresponds with climbing:boulder~^..*$_This option cannot be chosen as answer_
|
||||
- Bouldering is possible here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:climbing:boulder' target='_blank'>climbing:boulder</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dyes' target='_blank'>yes</a>`
|
||||
- Bouldering is not possible here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:climbing:boulder' target='_blank'>climbing:boulder</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dno' target='_blank'>no</a>`
|
||||
- Bouldering is possible, allthough there are only a few routes corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:climbing:boulder' target='_blank'>climbing:boulder</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dlimited' target='_blank'>limited</a>`
|
||||
- There are {climbing:boulder} boulder routes corresponds with `climbing:boulder~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
Only visible if `climbing:sport=yes|sport=climbing` is shown
|
||||
Only visible if `sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
### Toproping?
|
||||
### sportclimbing
|
||||
|
||||
|
||||
|
||||
The question is **Is toprope climbing possible here?**
|
||||
The question is Is sport climbing possible here on fixed anchors?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Toprope climbing is possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:toprope' target='_blank'>climbing:toprope</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:toprope%3Dyes' target='_blank'>yes</a>
|
||||
- **Toprope climbing is not possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:toprope' target='_blank'>climbing:toprope</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:toprope%3Dno' target='_blank'>no</a>
|
||||
- **There are {climbing:toprope} toprope routes** corresponds with climbing:toprope~^..*$_This option cannot be chosen as answer_
|
||||
- Sport climbing is possible here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:climbing:sport' target='_blank'>climbing:sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:sport%3Dyes' target='_blank'>yes</a>`
|
||||
- Sport climbing is not possible here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:climbing:sport' target='_blank'>climbing:sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:sport%3Dno' target='_blank'>no</a>`
|
||||
- There are {climbing:sport} sport climbing routes corresponds with `climbing:sport~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
Only visible if `climbing:sport=yes|sport=climbing` is shown
|
||||
Only visible if `sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
### Sportclimbing?
|
||||
### max_bolts
|
||||
|
||||
|
||||
|
||||
The question is **Is sport climbing possible here on fixed anchors?**
|
||||
The question is How many bolts do routes in {title()} have at most?
|
||||
|
||||
This rendering asks information about the property [climbing:bolts:max](https://wiki.openstreetmap.org/wiki/Key:climbing:bolts:max)
|
||||
|
||||
This is rendered with The sport climbing routes here have at most {climbing:bolts:max} bolts.<div class='subtle'>This is without relays and indicates how much quickdraws a climber needs</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Sport climbing is possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:sport' target='_blank'>climbing:sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:sport%3Dyes' target='_blank'>yes</a>
|
||||
- **Sport climbing is not possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:sport' target='_blank'>climbing:sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:sport%3Dno' target='_blank'>no</a>
|
||||
- **There are {climbing:sport} sport climbing routes** corresponds with climbing:sport~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
Only visible if `climbing:sport=yes|sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
### Traditional climbing?
|
||||
|
||||
|
||||
|
||||
The question is **Is traditional climbing possible here (using own gear e.g. chocks)?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Traditional climbing is possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:traditional' target='_blank'>climbing:traditional</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dyes' target='_blank'>yes</a>
|
||||
- **Traditional climbing is not possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:traditional' target='_blank'>climbing:traditional</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dno' target='_blank'>no</a>
|
||||
- **There are {climbing:traditional} traditional climbing routes** corresponds with climbing:traditional~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
Only visible if `climbing:sport=yes|sport=climbing` is shown
|
||||
Only visible if `climbing:sport=yes` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -346,57 +309,16 @@ Only visible if `climbing:sport=yes|sport=climbing` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Is there a speed climbing wall?**
|
||||
The question is Is there a speed climbing wall?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **There is a speed climbing wall** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:speed' target='_blank'>climbing:speed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:speed%3Dyes' target='_blank'>yes</a>
|
||||
- **There is no speed climbing wall** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:speed' target='_blank'>climbing:speed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:speed%3Dno' target='_blank'>no</a>
|
||||
- **There are {climbing:speed} speed climbing walls** corresponds with climbing:speed~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
Only visible if `leisure=sports_centre&climbing:sport=yes|sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### reviews
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### minimap
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
- There is a speed climbing wall corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:climbing:speed' target='_blank'>climbing:speed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:speed%3Dyes' target='_blank'>yes</a>`
|
||||
- There is no speed climbing wall corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:climbing:speed' target='_blank'>climbing:speed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:speed%3Dno' target='_blank'>no</a>`
|
||||
- There are {climbing:speed} speed climbing walls corresponds with `climbing:speed~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/climbing/climbing.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/climbing/climbing.json)
|
||||
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)
|
86
Docs/Layers/climbing_opportunity.md
Normal file
86
Docs/Layers/climbing_opportunity.md
Normal file
|
@ -0,0 +1,86 @@
|
|||
|
||||
|
||||
climbing_opportunity
|
||||
======================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/climbing/climbing_unknown.svg' height="100px">
|
||||
|
||||
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 **19** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [climbing](https://mapcomplete.osm.be/climbing)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dsports_centre' target='_blank'>sports_centre</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dwall' target='_blank'>wall</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dretaining_wall' target='_blank'>retaining_wall</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Dcliff' target='_blank'>cliff</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Drock' target='_blank'>rock</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Dstone' target='_blank'>stone</a>
|
||||
-
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22barrier%22%3D%22wall%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22barrier%22%3D%22retaining_wall%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22leisure%22%3D%22sports_centre%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22natural%22%3D%22cliff%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22natural%22%3D%22rock%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22natural%22%3D%22stone%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### climbing-opportunity-name
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
Only visible if `name~^..*$` is shown
|
||||
|
||||
|
||||
|
||||
### climbing-possible
|
||||
|
||||
|
||||
|
||||
The question is Is climbing possible here?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Climbing is possible here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dclimbing' target='_blank'>climbing</a>`
|
||||
- Climbing is not possible here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dno' target='_blank'>no</a>`
|
||||
- Climbing is not possible here corresponds with `sport!~^climbing$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
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)
|
|
@ -7,14 +7,15 @@
|
|||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/themes/climbing/climbing_route.svg' height="100px">
|
||||
|
||||
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](./climbing.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _embedding_feature_properties)
|
||||
- This layer is needed as dependency for layer [climbing](#climbing)
|
||||
- This layer is needed as dependency for layer [climbing_area](#climbing_area)
|
||||
|
||||
|
||||
|
||||
|
@ -26,6 +27,7 @@
|
|||
|
||||
|
||||
- [climbing](https://mapcomplete.osm.be/climbing)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
|
||||
|
@ -51,7 +53,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -63,18 +67,6 @@ attribute | type | values which are supported by this layer
|
|||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:bolts#values) [climbing:bolts](https://wiki.openstreetmap.org/wiki/Key:climbing:bolts) | [pnat](../SpecialInputElements.md#pnat) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/url#values) [url](https://wiki.openstreetmap.org/wiki/Key:url) | [url](../SpecialInputElements.md#url) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/_embedding_feature:access#values) [_embedding_feature:access](https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dyes) [permit](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dpermit) [customers](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dcustomers) [members](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dmembers) [no](https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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) [permit](https://wiki.openstreetmap.org/wiki/Tag:access%3Dpermit) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [members](https://wiki.openstreetmap.org/wiki/Tag:access%3Dmembers) [no](https://wiki.openstreetmap.org/wiki/Tag:access%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/access:description#values) [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:length#values) [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) | [pnat](../SpecialInputElements.md#pnat) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:traditional#values) [climbing:traditional](https://wiki.openstreetmap.org/wiki/Key:climbing:traditional) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
|
||||
|
||||
|
||||
|
@ -83,7 +75,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -93,14 +87,17 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What is the name of this climbing route?**
|
||||
The question is What is the name of this climbing route?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
This is rendered with `<strong>{name}</strong>`
|
||||
|
||||
This is rendered with <strong>{name}</strong>
|
||||
|
||||
|
||||
|
||||
- **This climbing route doesn't have a name** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
- This climbing route doesn't have a name corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -109,10 +106,13 @@ This is rendered with `<strong>{name}</strong>`
|
|||
|
||||
|
||||
|
||||
The question is **How long is this climbing route (in meters)?**
|
||||
The question is How long is this climbing route (in meters)?
|
||||
|
||||
This rendering asks information about the property [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length)
|
||||
This is rendered with `This route is {canonical(climbing:length)} long`
|
||||
|
||||
This is rendered with This route is {canonical(climbing:length)} long
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -120,289 +120,59 @@ This is rendered with `This route is {canonical(climbing:length)} long`
|
|||
|
||||
|
||||
|
||||
The question is **What is the grade of this climbing route according to the french/belgian system?**
|
||||
The question is What is the grade of this climbing route according to the french/belgian system?
|
||||
|
||||
This rendering asks information about the property [climbing:grade:french](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french)
|
||||
This is rendered with `The grade is {climbing:grade:french} according to the french/belgian system`
|
||||
|
||||
This is rendered with The grade is {climbing:grade:french} according to the french/belgian system
|
||||
|
||||
|
||||
|
||||
### Bolts
|
||||
|
||||
|
||||
### bolts
|
||||
|
||||
|
||||
|
||||
The question is **How many bolts does this route have before reaching the anchor?**
|
||||
The question is How many bolts does this route have before reaching the anchor?
|
||||
|
||||
This rendering asks information about the property [climbing:bolts](https://wiki.openstreetmap.org/wiki/Key:climbing:bolts)
|
||||
This is rendered with `This route has {climbing:bolts} bolts`
|
||||
|
||||
|
||||
|
||||
- **This route is not bolted** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:bolted' target='_blank'>climbing:bolted</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:bolted%3Dno' target='_blank'>no</a>_This option cannot be chosen as answer_
|
||||
- **This route is not bolted** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:bolted' target='_blank'>climbing:bolted</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:bolted%3Dno&climbing:bolts=' target='_blank'>no&climbing:bolts=</a>
|
||||
This is rendered with This route has {climbing:bolts} bolts <div class='subtle'>This is without relays and indicates how much quickdraws a climber needs</div>
|
||||
|
||||
|
||||
|
||||
|
||||
### Description
|
||||
|
||||
- This route is not bolted corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:climbing:bolted' target='_blank'>climbing:bolted</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:bolted%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
The question is **Is there other relevant info?**
|
||||
|
||||
### description
|
||||
|
||||
|
||||
|
||||
The question is Is there still something relevant you couldn't give in the previous questions? Add it here.<br/><span style='font-size: small'>Don't repeat already stated facts</span>
|
||||
|
||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||
This is rendered with `<h3>Description</h3><br/>{description}`
|
||||
|
||||
This is rendered with {description}
|
||||
|
||||
|
||||
|
||||
### Rock type
|
||||
|
||||
|
||||
### Rock type via embedded feature
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
This rendering asks information about the property [_embedding_features_with_rock:rock](https://wiki.openstreetmap.org/wiki/Key:_embedding_features_with_rock:rock)
|
||||
This is rendered with `The rock type is {_embedding_features_with_rock:rock} as stated <a href='#{_embedding_features_with_rock:id}'>on the surrounding crag</a>`
|
||||
|
||||
|
||||
|
||||
### Website
|
||||
|
||||
|
||||
|
||||
The question is **Is there a (unofficial) website with more informations (e.g. topos)?**
|
||||
|
||||
This rendering asks information about the property [url](https://wiki.openstreetmap.org/wiki/Key:url)
|
||||
This is rendered with `<a href='{url}' target='_blank'>{url}</a>`
|
||||
|
||||
Only visible if `leisure!~^sports_centre$&sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
### Access from containing feature
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **<span class='subtle'>The <a href='#{_embedding_feature:id}'>containing feature</a> states that this is</span> publicly accessible<br/>{_embedding_feature:access:description}** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access' target='_blank'>_embedding_feature:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dyes' target='_blank'>yes</a>
|
||||
- **<span class='subtle'>The <a href='#{_embedding_feature:id}'>containing feature</a> states that </span> a permit is needed to access<br/>{_embedding_feature:access:description}** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access' target='_blank'>_embedding_feature:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dpermit' target='_blank'>permit</a>
|
||||
- **<span class='subtle'>The <a href='#{_embedding_feature:id}'>containing feature</a> states that this is</span> only accessible to customers<br/>{_embedding_feature:access:description}** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access' target='_blank'>_embedding_feature:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dcustomers' target='_blank'>customers</a>
|
||||
- **<span class='subtle'>The <a href='#{_embedding_feature:id}'>containing feature</a> states that this is</span> only accessible to club members<br/>{_embedding_feature:access:description}** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access' target='_blank'>_embedding_feature:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dmembers' target='_blank'>members</a>
|
||||
- **Not accessible as stated by <a href='#{_embedding_feature:id}'>the containing feature</a>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:_embedding_feature:access' target='_blank'>_embedding_feature:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_embedding_feature:access%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
Only visible if `_embedding_feature:access~^..*$` is shown
|
||||
|
||||
|
||||
|
||||
### Access
|
||||
|
||||
|
||||
|
||||
The question is **Who can access here?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Publicly accessible to anyone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>
|
||||
- **You need a permit to access here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpermit' target='_blank'>permit</a>
|
||||
- **Only customers** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers' target='_blank'>customers</a>
|
||||
- **Only club members** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dmembers' target='_blank'>members</a>
|
||||
- **Not accessible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
Only visible if `climbing!~^no$&sport=climbing|climbing:sport=yes&access~^..*$|` is shown
|
||||
|
||||
|
||||
|
||||
### Access description (without _embedding_feature:access:description)
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
This rendering asks information about the property [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description)
|
||||
This is rendered with `{access:description}`
|
||||
|
||||
|
||||
|
||||
### Avg length?
|
||||
|
||||
|
||||
|
||||
The question is **What is the (average) length of the routes in meters?**
|
||||
|
||||
This rendering asks information about the property [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length)
|
||||
This is rendered with `The routes are <b>{canonical(climbing:length)}</b> long on average`
|
||||
|
||||
Only visible if `climbing!~^route$&climbing:toprope!~^no$&sport=climbing|climbing:sport=yes|climbing=traditional|climbing=gym` is shown
|
||||
|
||||
|
||||
|
||||
### Difficulty-min
|
||||
|
||||
|
||||
|
||||
The question is **What is the grade of the easiest route here, according to the french classification system?**
|
||||
|
||||
This rendering asks information about the property [climbing:grade:french:min](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:min)
|
||||
This is rendered with `The lowest grade is {climbing:grade:french:min} according to the french/belgian system`
|
||||
|
||||
Only visible if `climbing!~^route$&climbing:sport=yes|sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
### Difficulty-max
|
||||
|
||||
|
||||
|
||||
The question is **What is the highest grade route here, according to the french classification system?**
|
||||
|
||||
This rendering asks information about the property [climbing:grade:french:max](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:max)
|
||||
This is rendered with `The highest grade is {climbing:grade:french:max} according to the french/belgian system`
|
||||
|
||||
Only visible if `climbing!~^route$&climbing:sport=yes|sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
### Boldering?
|
||||
|
||||
|
||||
|
||||
The question is **Is bouldering possible here?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Bouldering is possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:boulder' target='_blank'>climbing:boulder</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dyes' target='_blank'>yes</a>
|
||||
- **Bouldering is not possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:boulder' target='_blank'>climbing:boulder</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dno' target='_blank'>no</a>
|
||||
- **Bouldering is possible, allthough there are only a few routes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:boulder' target='_blank'>climbing:boulder</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dlimited' target='_blank'>limited</a>
|
||||
- **There are {climbing:boulder} boulder routes** corresponds with climbing:boulder~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
Only visible if `climbing:sport=yes|sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
### Toproping?
|
||||
|
||||
|
||||
|
||||
The question is **Is toprope climbing possible here?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Toprope climbing is possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:toprope' target='_blank'>climbing:toprope</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:toprope%3Dyes' target='_blank'>yes</a>
|
||||
- **Toprope climbing is not possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:toprope' target='_blank'>climbing:toprope</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:toprope%3Dno' target='_blank'>no</a>
|
||||
- **There are {climbing:toprope} toprope routes** corresponds with climbing:toprope~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
Only visible if `climbing:sport=yes|sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
### Sportclimbing?
|
||||
|
||||
|
||||
|
||||
The question is **Is sport climbing possible here on fixed anchors?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Sport climbing is possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:sport' target='_blank'>climbing:sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:sport%3Dyes' target='_blank'>yes</a>
|
||||
- **Sport climbing is not possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:sport' target='_blank'>climbing:sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:sport%3Dno' target='_blank'>no</a>
|
||||
- **There are {climbing:sport} sport climbing routes** corresponds with climbing:sport~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
Only visible if `climbing:sport=yes|sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
### Traditional climbing?
|
||||
|
||||
|
||||
|
||||
The question is **Is traditional climbing possible here (using own gear e.g. chocks)?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Traditional climbing is possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:traditional' target='_blank'>climbing:traditional</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dyes' target='_blank'>yes</a>
|
||||
- **Traditional climbing is not possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:traditional' target='_blank'>climbing:traditional</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dno' target='_blank'>no</a>
|
||||
- **There are {climbing:traditional} traditional climbing routes** corresponds with climbing:traditional~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
Only visible if `climbing:sport=yes|sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
### Speed climbing?
|
||||
|
||||
|
||||
|
||||
The question is **Is there a speed climbing wall?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **There is a speed climbing wall** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:speed' target='_blank'>climbing:speed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:speed%3Dyes' target='_blank'>yes</a>
|
||||
- **There is no speed climbing wall** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:speed' target='_blank'>climbing:speed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:speed%3Dno' target='_blank'>no</a>
|
||||
- **There are {climbing:speed} speed climbing walls** corresponds with climbing:speed~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
Only visible if `leisure=sports_centre&climbing:sport=yes|sport=climbing` is shown
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### reviews
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### minimap
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This is rendered with The rock type is {_embedding_features_with_rock:rock} as stated <a href='#{_embedding_features_with_rock:id}'>on the surrounding crag</a>
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/climbing/climbing.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/climbing/climbing.json)
|
||||
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)
|
|
@ -20,17 +20,6 @@ The style for the clustering in all themes. Enable `debug=true` to peak into clu
|
|||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
@ -58,7 +47,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
Shows a table with all the tags of the feature
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -15,18 +15,7 @@ Address data for Flanders by the governement, suited for import into OpenStreetM
|
|||
|
||||
|
||||
- This layer is shown at zoomlevel **0** and higher
|
||||
- <img src='../warning.svg' height='1rem'/> 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`
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
- <img src='../warning.svg' height='1rem'/> 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`
|
||||
|
||||
|
||||
|
||||
|
@ -58,7 +47,7 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -28,6 +28,7 @@ Crossings for pedestrians and cyclists
|
|||
|
||||
|
||||
- [cycle_infra](https://mapcomplete.osm.be/cycle_infra)
|
||||
- [kerbs_and_crossings](https://mapcomplete.osm.be/kerbs_and_crossings)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
|
@ -54,7 +55,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -76,19 +79,20 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
The question is **What kind of crossing is this?**
|
||||
The question is What kind of crossing is this?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Crossing, without traffic lights** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Duncontrolled' target='_blank'>uncontrolled</a>
|
||||
- **Crossing with traffic signals** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dtraffic_signals' target='_blank'>traffic_signals</a>
|
||||
- **Zebra crossing** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dzebra' target='_blank'>zebra</a>_This option cannot be chosen as answer_
|
||||
- **Crossing without crossing markings** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dunmarked' target='_blank'>unmarked</a>
|
||||
- Crossing, without traffic lights corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Duncontrolled' target='_blank'>uncontrolled</a>`
|
||||
- Crossing with traffic signals corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dtraffic_signals' target='_blank'>traffic_signals</a>`
|
||||
- Zebra crossing corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dzebra' target='_blank'>zebra</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- Crossing without crossing markings corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dunmarked' target='_blank'>unmarked</a>`
|
||||
|
||||
|
||||
Only visible if `highway=crossing` is shown
|
||||
Only visible if `highway=crossing` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -96,17 +100,17 @@ Only visible if `highway=crossing` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Is this is a zebra crossing?**
|
||||
The question is Is this is a zebra crossing?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This is a zebra crossing** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing_ref' target='_blank'>crossing_ref</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing_ref%3Dzebra' target='_blank'>zebra</a>
|
||||
- **This is not a zebra crossing** corresponds with
|
||||
- This is a zebra crossing corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:crossing_ref' target='_blank'>crossing_ref</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing_ref%3Dzebra' target='_blank'>zebra</a>`
|
||||
- This is not a zebra crossing corresponds with ``
|
||||
|
||||
|
||||
Only visible if `crossing=uncontrolled` is shown
|
||||
Only visible if `crossing=uncontrolled` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -114,17 +118,17 @@ Only visible if `crossing=uncontrolled` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Is this crossing also for bicycles?**
|
||||
The question is Is this crossing also for bicycles?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **A cyclist can use this crossing** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes' target='_blank'>yes</a>
|
||||
- **A cyclist can not use this crossing** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno' target='_blank'>no</a>
|
||||
- A cyclist can use this crossing corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes' target='_blank'>yes</a>`
|
||||
- A cyclist can not use this crossing corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
Only visible if `highway=crossing` is shown
|
||||
Only visible if `highway=crossing` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -132,17 +136,17 @@ Only visible if `highway=crossing` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Does this crossing have an island in the middle?**
|
||||
The question is Does this crossing have an island in the middle?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This crossing has an island in the middle** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing:island' target='_blank'>crossing:island</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dyes' target='_blank'>yes</a>
|
||||
- **This crossing does not have an island in the middle** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing:island' target='_blank'>crossing:island</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dno' target='_blank'>no</a>
|
||||
- This crossing has an island in the middle corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:crossing:island' target='_blank'>crossing:island</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dyes' target='_blank'>yes</a>`
|
||||
- This crossing does not have an island in the middle corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:crossing:island' target='_blank'>crossing:island</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
Only visible if `highway=crossing` is shown
|
||||
Only visible if `highway=crossing` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -150,18 +154,19 @@ Only visible if `highway=crossing` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Does this crossing have tactile paving?**
|
||||
The question is Does this crossing have tactile paving?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This crossing has tactile paving** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:tactile_paving' target='_blank'>tactile_paving</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dyes' target='_blank'>yes</a>
|
||||
- **This crossing does not have tactile paving** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:tactile_paving' target='_blank'>tactile_paving</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dno' target='_blank'>no</a>
|
||||
- **This crossing has tactile paving, but is not correct** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:tactile_paving' target='_blank'>tactile_paving</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dincorrect' target='_blank'>incorrect</a>_This option cannot be chosen as answer_
|
||||
- This crossing has tactile paving corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:tactile_paving' target='_blank'>tactile_paving</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dyes' target='_blank'>yes</a>`
|
||||
- This crossing does not have tactile paving corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:tactile_paving' target='_blank'>tactile_paving</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dno' target='_blank'>no</a>`
|
||||
- This crossing has tactile paving, but is not correct corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:tactile_paving' target='_blank'>tactile_paving</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dincorrect' target='_blank'>incorrect</a>`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
Only visible if `highway=crossing` is shown
|
||||
Only visible if `highway=crossing` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -169,17 +174,17 @@ Only visible if `highway=crossing` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Does this traffic light have a button to request green light?**
|
||||
The question is Does this traffic light have a button to request green light?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This traffic light has a button to request green light** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:button_operated' target='_blank'>button_operated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:button_operated%3Dyes' target='_blank'>yes</a>
|
||||
- **This traffic light does not have a button to request green light** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:button_operated' target='_blank'>button_operated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:button_operated%3Dno' target='_blank'>no</a>
|
||||
- This traffic light has a button to request green light corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:button_operated' target='_blank'>button_operated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:button_operated%3Dyes' target='_blank'>yes</a>`
|
||||
- This traffic light does not have a button to request green light corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:button_operated' target='_blank'>button_operated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:button_operated%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
Only visible if `highway=traffic_signals|crossing=traffic_signals` is shown
|
||||
Only visible if `highway=traffic_signals|crossing=traffic_signals` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -187,18 +192,18 @@ Only visible if `highway=traffic_signals|crossing=traffic_signals` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Can a cyclist turn right when the light is red?**
|
||||
The question is Can a cyclist turn right when the light is red?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **A cyclist can turn right if the light is red** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:right:bicycle' target='_blank'>red_turn:right:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dyes' target='_blank'>yes</a>
|
||||
- **A cyclist can turn right if the light is red** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:right:bicycle' target='_blank'>red_turn:right:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dyes' target='_blank'>yes</a>
|
||||
- **A cyclist can not turn right if the light is red** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:right:bicycle' target='_blank'>red_turn:right:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dno' target='_blank'>no</a>
|
||||
- A cyclist can turn right if the light is red corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:right:bicycle' target='_blank'>red_turn:right:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dyes' target='_blank'>yes</a>`
|
||||
- A cyclist can turn right if the light is red corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:right:bicycle' target='_blank'>red_turn:right:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dyes' target='_blank'>yes</a>`
|
||||
- A cyclist can not turn right if the light is red corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:right:bicycle' target='_blank'>red_turn:right:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
Only visible if `highway=traffic_signals` is shown
|
||||
Only visible if `highway=traffic_signals` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -206,17 +211,17 @@ Only visible if `highway=traffic_signals` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Can a cyclist go straight on when the light is red?**
|
||||
The question is Can a cyclist go straight on when the light is red?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **A cyclist can go straight on if the light is red** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:straight:bicycle' target='_blank'>red_turn:straight:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dyes' target='_blank'>yes</a>
|
||||
- **A cyclist can go straight on if the light is red** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:straight:bicycle' target='_blank'>red_turn:straight:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dyes' target='_blank'>yes</a>
|
||||
- **A cyclist can not go straight on if the light is red** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:straight:bicycle' target='_blank'>red_turn:straight:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dno' target='_blank'>no</a>
|
||||
- A cyclist can go straight on if the light is red corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:straight:bicycle' target='_blank'>red_turn:straight:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dyes' target='_blank'>yes</a>`
|
||||
- A cyclist can go straight on if the light is red corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:straight:bicycle' target='_blank'>red_turn:straight:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dyes' target='_blank'>yes</a>`
|
||||
- A cyclist can not go straight on if the light is red corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:straight:bicycle' target='_blank'>red_turn:straight:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
Only visible if `highway=traffic_signals` is shown
|
||||
Only visible if `highway=traffic_signals` is shown
|
||||
|
||||
This document is autogenerated from [assets/layers/crossings/crossings.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/crossings/crossings.json)
|
|
@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -68,7 +70,7 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -78,10 +80,13 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What is the Wikidata-item that this object is named after?**
|
||||
The question is What is the Wikidata-item that this object is named after?
|
||||
|
||||
This rendering asks information about the property [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata)
|
||||
This is rendered with `<h3>Wikipedia article of the name giver</h3>{wikipedia(name:etymology:wikidata):max-height:20rem}`
|
||||
|
||||
This is rendered with <h3>Wikipedia article of the name giver</h3>{wikipedia(name:etymology:wikidata):max-height:20rem}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -89,7 +94,7 @@ This is rendered with `<h3>Wikipedia article of the name giver</h3>{wikipedia(na
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -99,14 +104,17 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What is this object named after?<br/><span class='subtle'>This might be written on the street name sign</span>**
|
||||
The question is What is this object named after?<br/><span class='subtle'>This might be written on the street name sign</span>
|
||||
|
||||
This rendering asks information about the property [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology)
|
||||
This is rendered with `Named after {name:etymology}`
|
||||
|
||||
This is rendered with Named after {name:etymology}
|
||||
|
||||
|
||||
|
||||
- **The origin of this name is unknown in all literature** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:name:etymology' target='_blank'>name:etymology</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown' target='_blank'>unknown</a>
|
||||
|
||||
|
||||
- The origin of this name is unknown in all literature corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:name:etymology' target='_blank'>name:etymology</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown' target='_blank'>unknown</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -115,7 +123,7 @@ This is rendered with `Named after {name:etymology}`
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -125,7 +133,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -135,7 +143,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -145,7 +153,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -155,10 +163,10 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
Only visible if `wikidata~^..*$` is shown
|
||||
Only visible if `wikidata~^..*$` is shown
|
||||
|
||||
This document is autogenerated from [assets/themes/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/etymology/etymology.json)
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/cycle_infra/bicycleway.svg' height="100px">
|
||||
|
||||
All infrastructure that someone can cycle over, accompanied with questions about this infrastructure"
|
||||
All infrastructure that someone can cycle over, accompanied with questions about this infrastructure
|
||||
|
||||
|
||||
|
||||
|
@ -17,6 +17,8 @@ All infrastructure that someone can cycle over, accompanied with questions about
|
|||
- This layer is shown at zoomlevel **16** and higher
|
||||
- This layer is needed as dependency for layer [barrier](#barrier)
|
||||
- This layer is needed as dependency for layer [crossings](#crossings)
|
||||
- This layer is needed as dependency for layer [kerbs](#kerbs)
|
||||
- This layer is needed as dependency for layer [rainbow_crossings](#rainbow_crossings)
|
||||
|
||||
|
||||
|
||||
|
@ -28,7 +30,10 @@ All infrastructure that someone can cycle over, accompanied with questions about
|
|||
|
||||
|
||||
- [cycle_infra](https://mapcomplete.osm.be/cycle_infra)
|
||||
- [kerbs_and_crossings](https://mapcomplete.osm.be/kerbs_and_crossings)
|
||||
- [onwheels](https://mapcomplete.osm.be/onwheels)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
- [rainbow_crossings](https://mapcomplete.osm.be/rainbow_crossings)
|
||||
|
||||
|
||||
|
||||
|
@ -42,10 +47,10 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dcycleway' target='_blank'>cycleway</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dlane' target='_blank'>lane</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dshared_lane' target='_blank'>shared_lane</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dtrack' target='_blank'>track</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:cyclestreet' target='_blank'>cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes' target='_blank'>yes</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dresidential' target='_blank'>residential</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dtertiary' target='_blank'>tertiary</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dunclassified' target='_blank'>unclassified</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dprimary' target='_blank'>primary</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dsecondary' target='_blank'>secondary</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dpath' target='_blank'>path</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Ddesignated' target='_blank'>designated</a>
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dcycleway' target='_blank'>cycleway</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dlane' target='_blank'>lane</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dshared_lane' target='_blank'>shared_lane</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dtrack' target='_blank'>track</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:cyclestreet' target='_blank'>cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes' target='_blank'>yes</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dresidential' target='_blank'>residential</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dtertiary' target='_blank'>tertiary</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dunclassified' target='_blank'>unclassified</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dprimary' target='_blank'>primary</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dsecondary' target='_blank'>secondary</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dtertiary_link' target='_blank'>tertiary_link</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dprimary_link' target='_blank'>primary_link</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dsecondary_link' target='_blank'>secondary_link</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dservice' target='_blank'>service</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dfootway' target='_blank'>footway</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dpedestrian' target='_blank'>pedestrian</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dliving_street' target='_blank'>living_street</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dpath' target='_blank'>path</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Ddesignated' target='_blank'>designated</a>
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22cyclestreet%22%3D%22yes%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22cycleway%22%3D%22lane%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22cycleway%22%3D%22shared_lane%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22cycleway%22%3D%22track%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22cycleway%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22residential%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22tertiary%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22unclassified%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22primary%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22secondary%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22bicycle%22%3D%22designated%22%5D%5B%22highway%22%3D%22path%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22cyclestreet%22%3D%22yes%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22cycleway%22%3D%22lane%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22cycleway%22%3D%22shared_lane%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22cycleway%22%3D%22track%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22cycleway%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22residential%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22tertiary%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22unclassified%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22primary%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22secondary%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22tertiary_link%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22primary_link%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22secondary_link%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22service%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22footway%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22pedestrian%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22living_street%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22bicycle%22%3D%22designated%22%5D%5B%22highway%22%3D%22path%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
|
||||
|
||||
|
||||
|
@ -54,7 +59,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -68,10 +75,10 @@ attribute | type | values which are supported by this layer
|
|||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/width:carriageway#values) [width:carriageway](https://wiki.openstreetmap.org/wiki/Key:width:carriageway) | [length](../SpecialInputElements.md#length) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/width:carriageway#values) [width:carriageway](https://wiki.openstreetmap.org/wiki/Key:width:carriageway) | [distance](../SpecialInputElements.md#distance) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cycleway:buffer#values) [cycleway:buffer](https://wiki.openstreetmap.org/wiki/Key:cycleway:buffer) | [length](../SpecialInputElements.md#length) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cycleway:buffer#values) [cycleway:buffer](https://wiki.openstreetmap.org/wiki/Key:cycleway:buffer) | [distance](../SpecialInputElements.md#distance) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
|
||||
|
@ -82,18 +89,18 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
The question is **What kind of cycleway is here?**
|
||||
The question is What kind of cycleway is here?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **There is a shared lane** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dshared_lane' target='_blank'>shared_lane</a>
|
||||
- **There is a lane next to the road (separated with paint)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dlane' target='_blank'>lane</a>
|
||||
- **There is a track, but no cycleway drawn separately from this road on the map.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dtrack' target='_blank'>track</a>
|
||||
- **There is a separately drawn cycleway** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dseparate' target='_blank'>separate</a>
|
||||
- **There is no cycleway** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dno' target='_blank'>no</a>
|
||||
- **There is no cycleway** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dno' target='_blank'>no</a>
|
||||
- There is a shared lane corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dshared_lane' target='_blank'>shared_lane</a>`
|
||||
- There is a lane next to the road (separated with paint) corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dlane' target='_blank'>lane</a>`
|
||||
- There is a track, but no cycleway drawn separately from this road on the map. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dtrack' target='_blank'>track</a>`
|
||||
- There is a separately drawn cycleway corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dseparate' target='_blank'>separate</a>`
|
||||
- There is no cycleway corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dno' target='_blank'>no</a>`
|
||||
- There is no cycleway corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -102,16 +109,17 @@ The question is **What kind of cycleway is here?**
|
|||
|
||||
|
||||
|
||||
The question is **Is this street lit?**
|
||||
The question is Is this street lit?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This street is lit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes' target='_blank'>yes</a>
|
||||
- **This road is not lit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno' target='_blank'>no</a>
|
||||
- **This road is lit at night** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dsunset-sunrise' target='_blank'>sunset-sunrise</a>_This option cannot be chosen as answer_
|
||||
- **This road is lit 24/7** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7' target='_blank'>24/7</a>
|
||||
- This street is lit corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes' target='_blank'>yes</a>`
|
||||
- This road is not lit corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno' target='_blank'>no</a>`
|
||||
- This road is lit at night corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dsunset-sunrise' target='_blank'>sunset-sunrise</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- This road is lit 24/7 corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7' target='_blank'>24/7</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -120,15 +128,15 @@ The question is **Is this street lit?**
|
|||
|
||||
|
||||
|
||||
The question is **Is this a cyclestreet?**
|
||||
The question is Is this a cyclestreet?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This is a cyclestreet, and a 30km/h zone.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cyclestreet' target='_blank'>cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes' target='_blank'>yes</a>
|
||||
- **This is a cyclestreet** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cyclestreet' target='_blank'>cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes' target='_blank'>yes</a>
|
||||
- **This is not a cyclestreet.** corresponds with
|
||||
- This is a cyclestreet, and a 30km/h zone. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cyclestreet' target='_blank'>cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes' target='_blank'>yes</a>`
|
||||
- This is a cyclestreet corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cyclestreet' target='_blank'>cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes' target='_blank'>yes</a>`
|
||||
- This is not a cyclestreet. corresponds with ``
|
||||
|
||||
|
||||
|
||||
|
@ -137,18 +145,21 @@ The question is **Is this a cyclestreet?**
|
|||
|
||||
|
||||
|
||||
The question is **What is the maximum speed in this street?**
|
||||
The question is What is the maximum speed in this street?
|
||||
|
||||
This rendering asks information about the property [maxspeed](https://wiki.openstreetmap.org/wiki/Key:maxspeed)
|
||||
This is rendered with `The maximum speed on this road is {maxspeed} km/h`
|
||||
|
||||
This is rendered with The maximum speed on this road is {maxspeed} km/h
|
||||
|
||||
|
||||
|
||||
- **The maximum speed is 20 km/h** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D20' target='_blank'>20</a>
|
||||
- **The maximum speed is 30 km/h** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D30' target='_blank'>30</a>
|
||||
- **The maximum speed is 50 km/h** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D50' target='_blank'>50</a>
|
||||
- **The maximum speed is 70 km/h** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D70' target='_blank'>70</a>
|
||||
- **The maximum speed is 90 km/h** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D90' target='_blank'>90</a>
|
||||
|
||||
|
||||
- The maximum speed is 20 km/h corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D20' target='_blank'>20</a>`
|
||||
- The maximum speed is 30 km/h corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D30' target='_blank'>30</a>`
|
||||
- The maximum speed is 50 km/h corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D50' target='_blank'>50</a>`
|
||||
- The maximum speed is 70 km/h corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D70' target='_blank'>70</a>`
|
||||
- The maximum speed is 90 km/h corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D90' target='_blank'>90</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -157,29 +168,35 @@ This is rendered with `The maximum speed on this road is {maxspeed} km/h`
|
|||
|
||||
|
||||
|
||||
The question is **What is the surface of the cycleway made from?**
|
||||
The question is What is the surface of the cycleway made from?
|
||||
|
||||
This rendering asks information about the property [cycleway:surface](https://wiki.openstreetmap.org/wiki/Key:cycleway:surface)
|
||||
This is rendered with `This cyleway is made of {cycleway:surface}`
|
||||
|
||||
This is rendered with This cyleway is made of {cycleway:surface}
|
||||
|
||||
|
||||
|
||||
- **This cycleway is unpaved** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dunpaved' target='_blank'>unpaved</a>_This option cannot be chosen as answer_
|
||||
- **This cycleway is paved** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dpaved' target='_blank'>paved</a>_This option cannot be chosen as answer_
|
||||
- **This cycleway is made of asphalt** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dasphalt' target='_blank'>asphalt</a>
|
||||
- **This cycleway is made of smooth paving stones** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dpaving_stones' target='_blank'>paving_stones</a>
|
||||
- **This cycleway is made of concrete** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dconcrete' target='_blank'>concrete</a>
|
||||
- **This cycleway is made of cobblestone (unhewn or sett)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dcobblestone' target='_blank'>cobblestone</a>_This option cannot be chosen as answer_
|
||||
- **This cycleway is made of raw, natural cobblestone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dunhewn_cobblestone' target='_blank'>unhewn_cobblestone</a>
|
||||
- **This cycleway is made of flat, square cobblestone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dsett' target='_blank'>sett</a>
|
||||
- **This cycleway is made of wood** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dwood' target='_blank'>wood</a>
|
||||
- **This cycleway is made of gravel** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dgravel' target='_blank'>gravel</a>
|
||||
- **This cycleway is made of fine gravel** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dfine_gravel' target='_blank'>fine_gravel</a>
|
||||
- **This cycleway is made of pebblestone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dpebblestone' target='_blank'>pebblestone</a>
|
||||
- **This cycleway is made from raw ground** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dground' target='_blank'>ground</a>
|
||||
|
||||
|
||||
Only visible if `cycleway=shared_lane|cycleway=lane|cycleway=track` is shown
|
||||
- This cycleway is unpaved corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dunpaved' target='_blank'>unpaved</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- This cycleway is paved corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dpaved' target='_blank'>paved</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- This cycleway is made of asphalt corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dasphalt' target='_blank'>asphalt</a>`
|
||||
- This cycleway is made of smooth paving stones corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dpaving_stones' target='_blank'>paving_stones</a>`
|
||||
- This cycleway is made of concrete corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dconcrete' target='_blank'>concrete</a>`
|
||||
- This cycleway is made of cobblestone (unhewn or sett) corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dcobblestone' target='_blank'>cobblestone</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- This cycleway is made of raw, natural cobblestone corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dunhewn_cobblestone' target='_blank'>unhewn_cobblestone</a>`
|
||||
- This cycleway is made of flat, square cobblestone corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dsett' target='_blank'>sett</a>`
|
||||
- This cycleway is made of wood corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dwood' target='_blank'>wood</a>`
|
||||
- This cycleway is made of gravel corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dgravel' target='_blank'>gravel</a>`
|
||||
- This cycleway is made of fine gravel corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dfine_gravel' target='_blank'>fine_gravel</a>`
|
||||
- This cycleway is made of pebblestone corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dpebblestone' target='_blank'>pebblestone</a>`
|
||||
- This cycleway is made from raw ground corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dground' target='_blank'>ground</a>`
|
||||
|
||||
|
||||
Only visible if `cycleway=shared_lane|cycleway=lane|cycleway=track` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -187,23 +204,23 @@ Only visible if `cycleway=shared_lane|cycleway=lane|cycleway=track` is shown
|
|||
|
||||
|
||||
|
||||
The question is **What is the smoothness of this cycleway?**
|
||||
The question is What is the smoothness of this cycleway?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Usable for thin rollers: rollerblade, skateboard** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dexcellent' target='_blank'>excellent</a>
|
||||
- **Usable for thin wheels: racing bike** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dgood' target='_blank'>good</a>
|
||||
- **Usable for normal wheels: city bike, wheelchair, scooter** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dintermediate' target='_blank'>intermediate</a>
|
||||
- **Usable for robust wheels: trekking bike, car, rickshaw** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dbad' target='_blank'>bad</a>
|
||||
- **Usable for vehicles with high clearance: light duty off-road vehicle** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dvery_bad' target='_blank'>very_bad</a>
|
||||
- **Usable for off-road vehicles: heavy duty off-road vehicle** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dhorrible' target='_blank'>horrible</a>
|
||||
- **Usable for specialized off-road vehicles: tractor, ATV** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dvery_horrible' target='_blank'>very_horrible</a>
|
||||
- **Impassable / No wheeled vehicle** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dimpassable' target='_blank'>impassable</a>
|
||||
- Usable for thin rollers: rollerblade, skateboard corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dexcellent' target='_blank'>excellent</a>`
|
||||
- Usable for thin wheels: racing bike corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dgood' target='_blank'>good</a>`
|
||||
- Usable for normal wheels: city bike, wheelchair, scooter corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dintermediate' target='_blank'>intermediate</a>`
|
||||
- Usable for robust wheels: trekking bike, car, rickshaw corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dbad' target='_blank'>bad</a>`
|
||||
- Usable for vehicles with high clearance: light duty off-road vehicle corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dvery_bad' target='_blank'>very_bad</a>`
|
||||
- Usable for off-road vehicles: heavy duty off-road vehicle corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dhorrible' target='_blank'>horrible</a>`
|
||||
- Usable for specialized off-road vehicles: tractor, ATV corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dvery_horrible' target='_blank'>very_horrible</a>`
|
||||
- Impassable / No wheeled vehicle corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dimpassable' target='_blank'>impassable</a>`
|
||||
|
||||
|
||||
Only visible if `cycleway=shared_lane|cycleway=lane|cycleway=track` is shown
|
||||
Only visible if `cycleway=shared_lane|cycleway=lane|cycleway=track` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -211,26 +228,32 @@ Only visible if `cycleway=shared_lane|cycleway=lane|cycleway=track` is shown
|
|||
|
||||
|
||||
|
||||
The question is **What is the surface of the street made from?**
|
||||
The question is What is the surface of the street made from?
|
||||
|
||||
This rendering asks information about the property [surface](https://wiki.openstreetmap.org/wiki/Key:surface)
|
||||
This is rendered with `This road is made of {surface}`
|
||||
|
||||
This is rendered with This road is made of {surface}
|
||||
|
||||
|
||||
|
||||
- **This cycleway is unhardened** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dunpaved' target='_blank'>unpaved</a>_This option cannot be chosen as answer_
|
||||
- **This cycleway is paved** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaved' target='_blank'>paved</a>_This option cannot be chosen as answer_
|
||||
- **This cycleway is made of asphalt** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dasphalt' target='_blank'>asphalt</a>
|
||||
- **This cycleway is made of smooth paving stones** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaving_stones' target='_blank'>paving_stones</a>
|
||||
- **This cycleway is made of concrete** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dconcrete' target='_blank'>concrete</a>
|
||||
- **This cycleway is made of cobblestone (unhewn or sett)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dcobblestone' target='_blank'>cobblestone</a>_This option cannot be chosen as answer_
|
||||
- **This cycleway is made of raw, natural cobblestone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dunhewn_cobblestone' target='_blank'>unhewn_cobblestone</a>
|
||||
- **This cycleway is made of flat, square cobblestone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dsett' target='_blank'>sett</a>
|
||||
- **This cycleway is made of wood** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dwood' target='_blank'>wood</a>
|
||||
- **This cycleway is made of gravel** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dgravel' target='_blank'>gravel</a>
|
||||
- **This cycleway is made of fine gravel** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dfine_gravel' target='_blank'>fine_gravel</a>
|
||||
- **This cycleway is made of pebblestone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpebblestone' target='_blank'>pebblestone</a>
|
||||
- **This cycleway is made from raw ground** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dground' target='_blank'>ground</a>
|
||||
|
||||
|
||||
- This cycleway is unhardened corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dunpaved' target='_blank'>unpaved</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- This cycleway is paved corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaved' target='_blank'>paved</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- This cycleway is made of asphalt corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dasphalt' target='_blank'>asphalt</a>`
|
||||
- This cycleway is made of smooth paving stones corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaving_stones' target='_blank'>paving_stones</a>`
|
||||
- This cycleway is made of concrete corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dconcrete' target='_blank'>concrete</a>`
|
||||
- This cycleway is made of cobblestone (unhewn or sett) corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dcobblestone' target='_blank'>cobblestone</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- This cycleway is made of raw, natural cobblestone corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dunhewn_cobblestone' target='_blank'>unhewn_cobblestone</a>`
|
||||
- This cycleway is made of flat, square cobblestone corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dsett' target='_blank'>sett</a>`
|
||||
- This cycleway is made of wood corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dwood' target='_blank'>wood</a>`
|
||||
- This cycleway is made of gravel corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dgravel' target='_blank'>gravel</a>`
|
||||
- This cycleway is made of fine gravel corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dfine_gravel' target='_blank'>fine_gravel</a>`
|
||||
- This cycleway is made of pebblestone corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpebblestone' target='_blank'>pebblestone</a>`
|
||||
- This cycleway is made from raw ground corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dground' target='_blank'>ground</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -239,23 +262,23 @@ This is rendered with `This road is made of {surface}`
|
|||
|
||||
|
||||
|
||||
The question is **What is the smoothness of this street?**
|
||||
The question is What is the smoothness of this street?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Usable for thin rollers: rollerblade, skateboard** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dexcellent' target='_blank'>excellent</a>
|
||||
- **Usable for thin wheels: racing bike** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dgood' target='_blank'>good</a>
|
||||
- **Usable for normal wheels: city bike, wheelchair, scooter** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dintermediate' target='_blank'>intermediate</a>
|
||||
- **Usable for robust wheels: trekking bike, car, rickshaw** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dbad' target='_blank'>bad</a>
|
||||
- **Usable for vehicles with high clearance: light duty off-road vehicle** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dvery_bad' target='_blank'>very_bad</a>
|
||||
- **Usable for off-road vehicles: heavy duty off-road vehicle** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dhorrible' target='_blank'>horrible</a>
|
||||
- **Usable for specialized off-road vehicles: tractor, ATV** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dvery_horrible' target='_blank'>very_horrible</a>
|
||||
- **Impassable / No wheeled vehicle** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dimpassable' target='_blank'>impassable</a>
|
||||
- Usable for thin rollers: rollerblade, skateboard corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dexcellent' target='_blank'>excellent</a>`
|
||||
- Usable for thin wheels: racing bike corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dgood' target='_blank'>good</a>`
|
||||
- Usable for normal wheels: city bike, wheelchair, scooter corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dintermediate' target='_blank'>intermediate</a>`
|
||||
- Usable for robust wheels: trekking bike, car, rickshaw corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dbad' target='_blank'>bad</a>`
|
||||
- Usable for vehicles with high clearance: light duty off-road vehicle corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dvery_bad' target='_blank'>very_bad</a>`
|
||||
- Usable for off-road vehicles: heavy duty off-road vehicle corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dhorrible' target='_blank'>horrible</a>`
|
||||
- Usable for specialized off-road vehicles: tractor, ATV corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dvery_horrible' target='_blank'>very_horrible</a>`
|
||||
- Impassable / No wheeled vehicle corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dimpassable' target='_blank'>impassable</a>`
|
||||
|
||||
|
||||
Only visible if `cycleway=no|highway=cycleway` is shown
|
||||
Only visible if `cycleway=no|highway=cycleway` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -263,10 +286,13 @@ Only visible if `cycleway=no|highway=cycleway` is shown
|
|||
|
||||
|
||||
|
||||
The question is **What is the carriage width of this road (in meters)?<br/><span class='subtle'>This is measured curb to curb and thus includes the width of parallell parking lanes</span>**
|
||||
The question is What is the carriage width of this road (in meters)?<br/><span class='subtle'>This is measured curb to curb and thus includes the width of parallell parking lanes</span>
|
||||
|
||||
This rendering asks information about the property [width:carriageway](https://wiki.openstreetmap.org/wiki/Key:width:carriageway)
|
||||
This is rendered with `The carriage width of this road is <strong>{width:carriageway}m</strong>`
|
||||
|
||||
This is rendered with The carriage width of this road is <strong>{width:carriageway}m</strong>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -274,20 +300,21 @@ This is rendered with `The carriage width of this road is <strong>{width:carriag
|
|||
|
||||
|
||||
|
||||
The question is **What traffic sign does this cycleway have?**
|
||||
The question is What traffic sign does this cycleway have?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Compulsory cycleway** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7' target='_blank'>BE:D7</a>
|
||||
- **Compulsory cycleway (with supplementary sign)<br>** corresponds with cycleway:traffic_sign~^BE:D7;.*$_This option cannot be chosen as answer_
|
||||
- **Segregated foot/cycleway** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D9' target='_blank'>BE:D9</a>
|
||||
- **Unsegregated foot/cycleway** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D10' target='_blank'>BE:D10</a>
|
||||
- **No traffic sign present** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3Dnone' target='_blank'>none</a>
|
||||
- Compulsory cycleway corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7' target='_blank'>BE:D7</a>`
|
||||
- Compulsory cycleway (with supplementary sign)<br> corresponds with `cycleway:traffic_sign~^BE:D7;.*$`
|
||||
- This option cannot be chosen as answer
|
||||
- Segregated foot/cycleway corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D9' target='_blank'>BE:D9</a>`
|
||||
- Unsegregated foot/cycleway corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D10' target='_blank'>BE:D10</a>`
|
||||
- No traffic sign present corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3Dnone' target='_blank'>none</a>`
|
||||
|
||||
|
||||
Only visible if `cycleway=lane|cycleway=track&_country=be` is shown
|
||||
Only visible if `cycleway=lane|cycleway=track&_country=be` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -295,23 +322,24 @@ Only visible if `cycleway=lane|cycleway=track&_country=be` is shown
|
|||
|
||||
|
||||
|
||||
The question is **What traffic sign does this cycleway have?**
|
||||
The question is What traffic sign does this cycleway have?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Compulsory cycleway** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D7' target='_blank'>BE:D7</a>
|
||||
- **Compulsory cycleway (with supplementary sign)<br>** corresponds with traffic_sign~^BE:D7;.*$_This option cannot be chosen as answer_
|
||||
- **Segregated foot/cycleway** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D9' target='_blank'>BE:D9</a>
|
||||
- **Unsegregated foot/cycleway** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D10' target='_blank'>BE:D10</a>
|
||||
- **Compulsory cycleway** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DNL:G11' target='_blank'>NL:G11</a>
|
||||
- **Compulsory (moped)cycleway** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DNL:G12a' target='_blank'>NL:G12a</a>
|
||||
- **Non-compulsory cycleway** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DNL:G13' target='_blank'>NL:G13</a>
|
||||
- **No traffic sign present** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3Dnone' target='_blank'>none</a>
|
||||
- Compulsory cycleway corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D7' target='_blank'>BE:D7</a>`
|
||||
- Compulsory cycleway (with supplementary sign)<br> corresponds with `traffic_sign~^BE:D7;.*$`
|
||||
- This option cannot be chosen as answer
|
||||
- Segregated foot/cycleway corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D9' target='_blank'>BE:D9</a>`
|
||||
- Unsegregated foot/cycleway corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D10' target='_blank'>BE:D10</a>`
|
||||
- Compulsory cycleway corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DNL:G11' target='_blank'>NL:G11</a>`
|
||||
- Compulsory (moped)cycleway corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DNL:G12a' target='_blank'>NL:G12a</a>`
|
||||
- Non-compulsory cycleway corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DNL:G13' target='_blank'>NL:G13</a>`
|
||||
- No traffic sign present corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3Dnone' target='_blank'>none</a>`
|
||||
|
||||
|
||||
Only visible if `highway=cycleway|highway=path&_country=be|_country=nl` is shown
|
||||
Only visible if `highway=cycleway|highway=path&_country=be|_country=nl` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -319,22 +347,22 @@ Only visible if `highway=cycleway|highway=path&_country=be|_country=nl` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Does the traffic sign D7 (<img src='./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_road_sign_D07.svg' style='width: 1.5em'>) have a supplementary sign?**
|
||||
The question is Does the traffic sign D7 (<img src='./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_road_sign_D07.svg' style='width: 1.5em'>) have a supplementary sign?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Mopeds must use the cycleway** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M6' target='_blank'>BE:D7;BE:M6</a>
|
||||
- **Speedpedelecs must use the cycleway** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M13' target='_blank'>BE:D7;BE:M13</a>
|
||||
- **Mopeds and speedpedelecs must use the cycleway** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M14' target='_blank'>BE:D7;BE:M14</a>
|
||||
- **Mopeds are not allowed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M7' target='_blank'>BE:D7;BE:M7</a>
|
||||
- **Speedpedelecs are not allowed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M15' target='_blank'>BE:D7;BE:M15</a>
|
||||
- **Mopeds and speedpedelecs are not allowed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M16' target='_blank'>BE:D7;BE:M16</a>
|
||||
- **No supplementary traffic sign present** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign:supplementary' target='_blank'>cycleway:traffic_sign:supplementary</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign:supplementary%3Dnone' target='_blank'>none</a>
|
||||
- Mopeds must use the cycleway corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M6' target='_blank'>BE:D7;BE:M6</a>`
|
||||
- Speedpedelecs must use the cycleway corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M13' target='_blank'>BE:D7;BE:M13</a>`
|
||||
- Mopeds and speedpedelecs must use the cycleway corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M14' target='_blank'>BE:D7;BE:M14</a>`
|
||||
- Mopeds are not allowed corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M7' target='_blank'>BE:D7;BE:M7</a>`
|
||||
- Speedpedelecs are not allowed corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M15' target='_blank'>BE:D7;BE:M15</a>`
|
||||
- Mopeds and speedpedelecs are not allowed corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M16' target='_blank'>BE:D7;BE:M16</a>`
|
||||
- No supplementary traffic sign present corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign:supplementary' target='_blank'>cycleway:traffic_sign:supplementary</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign:supplementary%3Dnone' target='_blank'>none</a>`
|
||||
|
||||
|
||||
Only visible if `cycleway:traffic_sign=BE:D7|cycleway:traffic_sign~^BE:D7;.*$` is shown
|
||||
Only visible if `cycleway:traffic_sign=BE:D7|cycleway:traffic_sign~^BE:D7;.*$` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -342,12 +370,15 @@ Only visible if `cycleway:traffic_sign=BE:D7|cycleway:traffic_sign~^BE:D7;.*$` i
|
|||
|
||||
|
||||
|
||||
The question is **How wide is the gap between the cycleway and the road?**
|
||||
The question is How wide is the gap between the cycleway and the road?
|
||||
|
||||
This rendering asks information about the property [cycleway:buffer](https://wiki.openstreetmap.org/wiki/Key:cycleway:buffer)
|
||||
This is rendered with `The buffer besides this cycleway is {cycleway:buffer} m`
|
||||
|
||||
Only visible if `cycleway=track|cycleway=lane` is shown
|
||||
This is rendered with The buffer besides this cycleway is {cycleway:buffer} m
|
||||
|
||||
|
||||
|
||||
Only visible if `cycleway=track|cycleway=lane` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -355,19 +386,19 @@ Only visible if `cycleway=track|cycleway=lane` is shown
|
|||
|
||||
|
||||
|
||||
The question is **How is this cycleway separated from the road?**
|
||||
The question is How is this cycleway separated from the road?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This cycleway is separated by a dashed line** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:separation' target='_blank'>cycleway:separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Ddashed_line' target='_blank'>dashed_line</a>
|
||||
- **This cycleway is separated by a solid line** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:separation' target='_blank'>cycleway:separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dsolid_line' target='_blank'>solid_line</a>
|
||||
- **This cycleway is separated by a parking lane** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:separation' target='_blank'>cycleway:separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dparking_lane' target='_blank'>parking_lane</a>
|
||||
- **This cycleway is separated by a kerb** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:separation' target='_blank'>cycleway:separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dkerb' target='_blank'>kerb</a>
|
||||
- This cycleway is separated by a dashed line corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:separation' target='_blank'>cycleway:separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Ddashed_line' target='_blank'>dashed_line</a>`
|
||||
- This cycleway is separated by a solid line corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:separation' target='_blank'>cycleway:separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dsolid_line' target='_blank'>solid_line</a>`
|
||||
- This cycleway is separated by a parking lane corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:separation' target='_blank'>cycleway:separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dparking_lane' target='_blank'>parking_lane</a>`
|
||||
- This cycleway is separated by a kerb corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:separation' target='_blank'>cycleway:separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dkerb' target='_blank'>kerb</a>`
|
||||
|
||||
|
||||
Only visible if `cycleway=track|cycleway=lane` is shown
|
||||
Only visible if `cycleway=track|cycleway=lane` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -375,18 +406,18 @@ Only visible if `cycleway=track|cycleway=lane` is shown
|
|||
|
||||
|
||||
|
||||
The question is **How is this cycleway separated from the road?**
|
||||
The question is How is this cycleway separated from the road?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This cycleway is separated by a dashed line** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:separation' target='_blank'>separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:separation%3Ddashed_line' target='_blank'>dashed_line</a>
|
||||
- **This cycleway is separated by a solid line** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:separation' target='_blank'>separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:separation%3Dsolid_line' target='_blank'>solid_line</a>
|
||||
- **This cycleway is separated by a parking lane** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:separation' target='_blank'>separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:separation%3Dparking_lane' target='_blank'>parking_lane</a>
|
||||
- **This cycleway is separated by a kerb** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:separation' target='_blank'>separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:separation%3Dkerb' target='_blank'>kerb</a>
|
||||
- This cycleway is separated by a dashed line corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:separation' target='_blank'>separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:separation%3Ddashed_line' target='_blank'>dashed_line</a>`
|
||||
- This cycleway is separated by a solid line corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:separation' target='_blank'>separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:separation%3Dsolid_line' target='_blank'>solid_line</a>`
|
||||
- This cycleway is separated by a parking lane corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:separation' target='_blank'>separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:separation%3Dparking_lane' target='_blank'>parking_lane</a>`
|
||||
- This cycleway is separated by a kerb corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:separation' target='_blank'>separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:separation%3Dkerb' target='_blank'>kerb</a>`
|
||||
|
||||
|
||||
Only visible if `highway=cycleway|highway=path` is shown
|
||||
Only visible if `highway=cycleway|highway=path` is shown
|
||||
|
||||
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)
|
|
@ -53,7 +53,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -82,7 +84,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -92,14 +96,14 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **Is this defibrillator located indoors?**
|
||||
The question is Is this defibrillator located indoors?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This defibrillator is located indoors** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes' target='_blank'>yes</a>
|
||||
- **This defibrillator is located outdoors** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno' target='_blank'>no</a>
|
||||
- This defibrillator is located indoors corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes' target='_blank'>yes</a>`
|
||||
- This defibrillator is located outdoors corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -108,18 +112,22 @@ The question is **Is this defibrillator located indoors?**
|
|||
|
||||
|
||||
|
||||
The question is **Is this defibrillator freely accessible?**
|
||||
The question is Is this defibrillator freely accessible?
|
||||
|
||||
This rendering asks information about the property [access](https://wiki.openstreetmap.org/wiki/Key:access)
|
||||
This is rendered with `Access is {access}`
|
||||
|
||||
This is rendered with Access is {access}
|
||||
|
||||
|
||||
|
||||
- **Publicly accessible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>
|
||||
- **Publicly accessible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic' target='_blank'>public</a>_This option cannot be chosen as answer_
|
||||
- **Only accessible to customers** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers' target='_blank'>customers</a>
|
||||
- **Not accessible to the general public (e.g. only accesible to staff, the owners, ...)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate' target='_blank'>private</a>
|
||||
- **Not accessible, possibly only for professional use** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
- Publicly accessible corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>`
|
||||
- Publicly accessible corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic' target='_blank'>public</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- Only accessible to customers corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers' target='_blank'>customers</a>`
|
||||
- Not accessible to the general public (e.g. only accesible to staff, the owners, …) corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate' target='_blank'>private</a>`
|
||||
- Not accessible, possibly only for professional use corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -128,19 +136,21 @@ This is rendered with `Access is {access}`
|
|||
|
||||
|
||||
|
||||
The question is **Is this a a regular automatic defibrillator or a manual defibrillator for professionals only?**
|
||||
The question is Is this a a regular automatic defibrillator or a manual defibrillator for professionals only?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **There is no info about the type of device** corresponds with _This option cannot be chosen as answer_
|
||||
- **This is a manual defibrillator for professionals** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:defibrillator' target='_blank'>defibrillator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:defibrillator%3Dmanual' target='_blank'>manual</a>
|
||||
- **This is a normal automatic defibrillator** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:defibrillator' target='_blank'>defibrillator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:defibrillator%3Dautomatic' target='_blank'>automatic</a>
|
||||
- **This is a special type of defibrillator: {defibrillator}** corresponds with defibrillator~^..*$_This option cannot be chosen as answer_
|
||||
- There is no info about the type of device corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- This is a manual defibrillator for professionals corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:defibrillator' target='_blank'>defibrillator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:defibrillator%3Dmanual' target='_blank'>manual</a>`
|
||||
- This is a normal automatic defibrillator corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:defibrillator' target='_blank'>defibrillator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:defibrillator%3Dautomatic' target='_blank'>automatic</a>`
|
||||
- This is a special type of defibrillator: {defibrillator} corresponds with `defibrillator~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
Only visible if `access=no` is shown
|
||||
Only visible if `access=no` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -148,18 +158,21 @@ Only visible if `access=no` is shown
|
|||
|
||||
|
||||
|
||||
The question is **On which floor is this defibrillator located?**
|
||||
The question is On which floor is this defibrillator located?
|
||||
|
||||
This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level)
|
||||
This is rendered with `This defibrillator is on floor {level}`
|
||||
|
||||
This is rendered with This defibrillator is on floor {level}
|
||||
|
||||
|
||||
|
||||
- **This defibrillator is on the <b>ground floor</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>
|
||||
- **This defibrillator is on the <b>first floor</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D1' target='_blank'>1</a>
|
||||
|
||||
|
||||
Only visible if `indoor=yes` is shown
|
||||
- This defibrillator is on the <b>ground floor</b> corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>`
|
||||
- This defibrillator is on the <b>first floor</b> corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D1' target='_blank'>1</a>`
|
||||
|
||||
|
||||
Only visible if `indoor=yes` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -167,10 +180,13 @@ Only visible if `indoor=yes` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Please give some explanation on where the defibrillator can be found (in the local language)**
|
||||
The question is Please give some explanation on where the defibrillator can be found (in the local language)
|
||||
|
||||
This rendering asks information about the property [defibrillator:location](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location)
|
||||
This is rendered with `<i>Extra information about the location (in the local languagel):</i><br/>{defibrillator:location}`
|
||||
|
||||
This is rendered with <i>Extra information about the location (in the local languagel):</i><br/>{defibrillator:location}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -178,10 +194,13 @@ This is rendered with `<i>Extra information about the location (in the local lan
|
|||
|
||||
|
||||
|
||||
The question is **Please give some explanation on where the defibrillator can be found (in English)**
|
||||
The question is Please give some explanation on where the defibrillator can be found (in English)
|
||||
|
||||
This rendering asks information about the property [defibrillator:location:en](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location:en)
|
||||
This is rendered with `<i>Extra information about the location (in English):</i><br/>{defibrillator:location:en}`
|
||||
|
||||
This is rendered with <i>Extra information about the location (in English):</i><br/>{defibrillator:location:en}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -189,10 +208,13 @@ This is rendered with `<i>Extra information about the location (in English):</i>
|
|||
|
||||
|
||||
|
||||
The question is **Please give some explanation on where the defibrillator can be found (in French)**
|
||||
The question is Please give some explanation on where the defibrillator can be found (in French)
|
||||
|
||||
This rendering asks information about the property [defibrillator:location:fr](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location:fr)
|
||||
This is rendered with `<i>Extra information about the location (in French):</i><br/>{defibrillator:location:fr}`
|
||||
|
||||
This is rendered with <i>Extra information about the location (in French):</i><br/>{defibrillator:location:fr}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -200,16 +222,16 @@ This is rendered with `<i>Extra information about the location (in French):</i><
|
|||
|
||||
|
||||
|
||||
The question is **Is this place accessible with a wheelchair?**
|
||||
The question is Is this place accessible with a wheelchair?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This place is specially adapted for wheelchair users** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>
|
||||
- **This place is easily reachable with a wheelchair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>
|
||||
- **It is possible to reach this place in a wheelchair, but it is not easy** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited' target='_blank'>limited</a>
|
||||
- **This place is not reachable with a wheelchair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a>
|
||||
- This place is specially adapted for wheelchair users corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>`
|
||||
- This place is easily reachable with a wheelchair corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>`
|
||||
- It is possible to reach this place in a wheelchair, but it is not easy corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited' target='_blank'>limited</a>`
|
||||
- This place is not reachable with a wheelchair corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -218,10 +240,13 @@ The question is **Is this place accessible with a wheelchair?**
|
|||
|
||||
|
||||
|
||||
The question is **What is the official identification number of the device? (if visible on device)**
|
||||
The question is What is the official identification number of the device? (if visible on device)
|
||||
|
||||
This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref)
|
||||
This is rendered with `Official identification number of the device: <i>{ref}</i>`
|
||||
|
||||
This is rendered with Official identification number of the device: <i>{ref}</i>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -229,10 +254,13 @@ This is rendered with `Official identification number of the device: <i>{ref}</i
|
|||
|
||||
|
||||
|
||||
The question is **What is the email for questions about this defibrillator?**
|
||||
The question is What is the email for questions about this defibrillator?
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `Email for questions about this defibrillator: <a href='mailto:{email}'>{email}</a>`
|
||||
|
||||
This is rendered with Email for questions about this defibrillator: <a href='mailto:{email}'>{email}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -240,10 +268,13 @@ This is rendered with `Email for questions about this defibrillator: <a href='ma
|
|||
|
||||
|
||||
|
||||
The question is **What is the phone number for questions about this defibrillator?**
|
||||
The question is What is the phone number for questions about this defibrillator?
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `Telephone for questions about this defibrillator: <a href='tel:{phone}'>{phone}</a>`
|
||||
|
||||
This is rendered with Telephone for questions about this defibrillator: <a href='tel:{phone}'>{phone}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -251,14 +282,17 @@ This is rendered with `Telephone for questions about this defibrillator: <a href
|
|||
|
||||
|
||||
|
||||
The question is **At what times is this defibrillator available?**
|
||||
The question is At what times is this defibrillator available?
|
||||
|
||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||
This is rendered with `{opening_hours_table(opening_hours)}`
|
||||
|
||||
This is rendered with {opening_hours_table(opening_hours)}
|
||||
|
||||
|
||||
|
||||
- **24/7 opened (including holidays)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
|
||||
|
||||
|
||||
- 24/7 opened (including holidays) corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -267,10 +301,13 @@ This is rendered with `{opening_hours_table(opening_hours)}`
|
|||
|
||||
|
||||
|
||||
The question is **Is there any useful information for users that you haven't been able to describe above? (leave blank if no)**
|
||||
The question is Is there any useful information for users that you haven't been able to describe above? (leave blank if no)
|
||||
|
||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||
This is rendered with `Additional information: {description}`
|
||||
|
||||
This is rendered with Additional information: {description}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -278,14 +315,17 @@ This is rendered with `Additional information: {description}`
|
|||
|
||||
|
||||
|
||||
The question is **When was this defibrillator last surveyed?**
|
||||
The question is When was this defibrillator last surveyed?
|
||||
|
||||
This rendering asks information about the property [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date)
|
||||
This is rendered with `This defibrillator was last surveyed on {survey:date}`
|
||||
|
||||
This is rendered with This defibrillator was last surveyed on {survey:date}
|
||||
|
||||
|
||||
|
||||
- **Checked today!** corresponds with survey:date=
|
||||
|
||||
|
||||
- Checked today! corresponds with `survey:date=`
|
||||
|
||||
|
||||
|
||||
|
@ -294,9 +334,12 @@ This is rendered with `This defibrillator was last surveyed on {survey:date}`
|
|||
|
||||
|
||||
|
||||
The question is **Is there something wrong with how this is mapped, that you weren't able to fix here? (leave a note to OpenStreetMap experts)**
|
||||
The question is Is there something wrong with how this is mapped, that you weren't able to fix here? (leave a note to OpenStreetMap experts)
|
||||
|
||||
This rendering asks information about the property [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme)
|
||||
This is rendered with `Extra information for OpenStreetMap experts: {fixme}`
|
||||
|
||||
This is rendered with Extra information for OpenStreetMap experts: {fixme}
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/defibrillator/defibrillator.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/defibrillator/defibrillator.json)
|
196
Docs/Layers/doctors.md
Normal file
196
Docs/Layers/doctors.md
Normal file
|
@ -0,0 +1,196 @@
|
|||
|
||||
|
||||
doctors
|
||||
=========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/doctors/doctors.svg' height="100px">
|
||||
|
||||
This layer shows doctor offices, dentists and other healthcare facilities
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **13** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [healthcare](https://mapcomplete.osm.be/healthcare)
|
||||
- [onwheels](https://mapcomplete.osm.be/onwheels)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Ddoctors' target='_blank'>doctors</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Ddentist' target='_blank'>dentist</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:healthcare' target='_blank'>healthcare</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Dphysiotherapist' target='_blank'>physiotherapist</a>
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22doctors%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22dentist%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22healthcare%22%3D%22physiotherapist%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### opening_hours
|
||||
|
||||
|
||||
|
||||
The question is What are the opening hours of {title()}?
|
||||
|
||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||
|
||||
This is rendered with <h3>Opening hours</h3>{opening_hours_table(opening_hours)}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### phone
|
||||
|
||||
|
||||
|
||||
The question is What is the phone number of {title()}?
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
|
||||
This is rendered with <a href='tel:{phone}'>{phone}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='tel:{contact:phone}'>{contact:phone}</a> corresponds with `contact:phone~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### email
|
||||
|
||||
|
||||
|
||||
The question is What is the email address of {title()}?
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
|
||||
This is rendered with <a href='mailto:{email}' target='_blank'>{email}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='mailto:{contact:email}' target='_blank'>{contact:email}</a> corresponds with `contact:email~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### website
|
||||
|
||||
|
||||
|
||||
The question is What is the website of {title()}?
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
|
||||
This is rendered with <a href='{website}' target='_blank'>{website}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='{contact:website}' target='_blank'>{contact:website}</a> corresponds with `contact:website~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### name
|
||||
|
||||
|
||||
|
||||
The question is What is the name of this doctors place?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
|
||||
This is rendered with This doctors place is called {name}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### specialty
|
||||
|
||||
|
||||
|
||||
The question is What is this doctor specialized in?
|
||||
|
||||
This rendering asks information about the property [healthcare:speciality](https://wiki.openstreetmap.org/wiki/Key:healthcare:speciality)
|
||||
|
||||
This is rendered with This doctor is specialized in {healthcare:speciality}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This is a general practitioner corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:healthcare:speciality' target='_blank'>healthcare:speciality</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare:speciality%3Dgeneral' target='_blank'>general</a>`
|
||||
- This is a gynaecologist corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:healthcare:speciality' target='_blank'>healthcare:speciality</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare:speciality%3Dgynaecology' target='_blank'>gynaecology</a>`
|
||||
- This is a psychiatrist corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:healthcare:speciality' target='_blank'>healthcare:speciality</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare:speciality%3Dpsychiatry' target='_blank'>psychiatry</a>`
|
||||
- This is a paediatrician corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:healthcare:speciality' target='_blank'>healthcare:speciality</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare:speciality%3Dpaediatrics' target='_blank'>paediatrics</a>`
|
||||
|
||||
|
||||
Only visible if `amenity=doctors` is shown
|
||||
|
||||
This document is autogenerated from [assets/layers/doctors/doctors.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/doctors/doctors.json)
|
529
Docs/Layers/dogfoodb.md
Normal file
529
Docs/Layers/dogfoodb.md
Normal file
|
@ -0,0 +1,529 @@
|
|||
|
||||
|
||||
dogfoodb
|
||||
==========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/pets/dog-food.svg' height="100px">
|
||||
|
||||
A layer showing restaurants and fast-food amenities (with a special rendering for friteries)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **12** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [pets](https://mapcomplete.osm.be/pets)
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant' target='_blank'>restaurant</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe' target='_blank'>cafe</a>
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed' target='_blank'>unleashed</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed' target='_blank'>leashed</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22dog%22%3D%22unleashed%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22dog%22%3D%22leashed%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22dog%22%3D%22yes%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B%22dog%22%3D%22unleashed%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B%22dog%22%3D%22leashed%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B%22dog%22%3D%22yes%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### level
|
||||
|
||||
|
||||
|
||||
The question is On what level is this feature located?
|
||||
|
||||
This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level)
|
||||
|
||||
This is rendered with Located on the {level}th floor
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Located underground corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- Located on the ground floor corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>`
|
||||
- Located on the ground floor corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- Located on the first floor corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D1' target='_blank'>1</a>`
|
||||
- Located on the first basement level corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D-1' target='_blank'>-1</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### Name
|
||||
|
||||
|
||||
|
||||
The question is What is the name of this restaurant?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
|
||||
This is rendered with The name of this restaurant is {name}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Fastfood vs restaurant
|
||||
|
||||
|
||||
|
||||
The question is What type of business is this?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This is a fastfood-business, focused on fast service. If seating is available, these are rather limited and functional. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfast_food' target='_blank'>fast_food</a>`
|
||||
- A <b>restaurant</b>, focused on creating a nice experience where one is served at the table corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant' target='_blank'>restaurant</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### opening_hours
|
||||
|
||||
|
||||
|
||||
The question is What are the opening hours of {title()}?
|
||||
|
||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||
|
||||
This is rendered with <h3>Opening hours</h3>{opening_hours_table(opening_hours)}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### website
|
||||
|
||||
|
||||
|
||||
The question is What is the website of {title()}?
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
|
||||
This is rendered with <a href='{website}' target='_blank'>{website}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='{contact:website}' target='_blank'>{contact:website}</a> corresponds with `contact:website~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### email
|
||||
|
||||
|
||||
|
||||
The question is What is the email address of {title()}?
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
|
||||
This is rendered with <a href='mailto:{email}' target='_blank'>{email}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='mailto:{contact:email}' target='_blank'>{contact:email}</a> corresponds with `contact:email~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### phone
|
||||
|
||||
|
||||
|
||||
The question is What is the phone number of {title()}?
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
|
||||
This is rendered with <a href='tel:{phone}'>{phone}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='tel:{contact:phone}'>{contact:phone}</a> corresponds with `contact:phone~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### payment-options
|
||||
|
||||
|
||||
|
||||
The question is Which methods of payment are accepted here?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Cash is accepted here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dno' target='_blank'>no</a>
|
||||
- Payment cards are accepted here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### wheelchair-access
|
||||
|
||||
|
||||
|
||||
The question is Is this place accessible with a wheelchair?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This place is specially adapted for wheelchair users corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>`
|
||||
- This place is easily reachable with a wheelchair corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>`
|
||||
- It is possible to reach this place in a wheelchair, but it is not easy corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited' target='_blank'>limited</a>`
|
||||
- This place is not reachable with a wheelchair corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### Cuisine
|
||||
|
||||
|
||||
|
||||
The question is Which food is served here?
|
||||
|
||||
This rendering asks information about the property [cuisine](https://wiki.openstreetmap.org/wiki/Key:cuisine)
|
||||
|
||||
This is rendered with This place mostly serves {cuisine}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This is a pizzeria corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpizza' target='_blank'>pizza</a>`
|
||||
- This is a friture corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture' target='_blank'>friture</a>`
|
||||
- Mainly serves pasta corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpasta' target='_blank'>pasta</a>`
|
||||
- This is kebab shop corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dkebab' target='_blank'>kebab</a>`
|
||||
- This is a sandwichbar corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsandwich' target='_blank'>sandwich</a>`
|
||||
- Burgers are served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dburger' target='_blank'>burger</a>`
|
||||
- Sushi is served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsushi' target='_blank'>sushi</a>`
|
||||
- Coffee is served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dcoffee' target='_blank'>coffee</a>`
|
||||
- This is an italian restaurant (which serves more then pasta and pizza) corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Ditalian' target='_blank'>italian</a>`
|
||||
- French dishes are served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfrench' target='_blank'>french</a>`
|
||||
- Chinese dishes are served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchinese' target='_blank'>chinese</a>`
|
||||
- Greek dishes are served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dgreek' target='_blank'>greek</a>`
|
||||
- Indian dishes are served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dindian' target='_blank'>indian</a>`
|
||||
- Turkish dishes are served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dturkish' target='_blank'>turkish</a>`
|
||||
- Thai dishes are served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dthai' target='_blank'>thai</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### Takeaway
|
||||
|
||||
|
||||
|
||||
The question is Does this place offer take-away?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This is a take-away only business corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:takeaway' target='_blank'>takeaway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Donly' target='_blank'>only</a>`
|
||||
- Take-away is possible here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:takeaway' target='_blank'>takeaway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dyes' target='_blank'>yes</a>`
|
||||
- Take-away is not possible here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:takeaway' target='_blank'>takeaway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### delivery
|
||||
|
||||
|
||||
|
||||
The question is Delivers {title()} their food at home?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This business does home delivery (eventually via a third party) corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:delivery' target='_blank'>delivery</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dyes' target='_blank'>yes</a>`
|
||||
- This business does not deliver at home corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:delivery' target='_blank'>delivery</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### Vegetarian (no friture)
|
||||
|
||||
|
||||
|
||||
The question is Does this restaurant have a vegetarian option?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- No vegetarian options are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno' target='_blank'>no</a>`
|
||||
- Some vegetarian options are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited' target='_blank'>limited</a>`
|
||||
- Vegetarian options are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes' target='_blank'>yes</a>`
|
||||
- All dishes are vegetarian corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Donly' target='_blank'>only</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### Vegan (no friture)
|
||||
|
||||
|
||||
|
||||
The question is Does this business serve vegan meals?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- No vegan options available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno' target='_blank'>no</a>`
|
||||
- Some vegan options are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited' target='_blank'>limited</a>`
|
||||
- Vegan options are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes' target='_blank'>yes</a>`
|
||||
- All dishes are vegan corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Donly' target='_blank'>only</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### halal (no friture)
|
||||
|
||||
|
||||
|
||||
The question is Does this restaurant offer a halal menu?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- There are no halal options available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dno' target='_blank'>no</a>`
|
||||
- There is a small halal menu corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dlimited' target='_blank'>limited</a>`
|
||||
- There is a halal menu corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dyes' target='_blank'>yes</a>`
|
||||
- Only halal options are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Donly' target='_blank'>only</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### friture-vegetarian
|
||||
|
||||
|
||||
|
||||
The question is Does this fries shop have vegetarian snacks?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Vegetarian snacks are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes' target='_blank'>yes</a>`
|
||||
- Only a small selection of snacks are vegetarian corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited' target='_blank'>limited</a>`
|
||||
- No vegetarian snacks are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
Only visible if `cuisine=friture` is shown
|
||||
|
||||
|
||||
|
||||
### friture-vegan
|
||||
|
||||
|
||||
|
||||
The question is Does this fries shop have vegan snacks?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Vegan snacks are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes' target='_blank'>yes</a>`
|
||||
- A small selection of vegan snacks are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited' target='_blank'>limited</a>`
|
||||
- No vegan snacks are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
Only visible if `cuisine=friture` is shown
|
||||
|
||||
|
||||
|
||||
### friture-oil
|
||||
|
||||
|
||||
|
||||
The question is Does this fries shop use vegetable or animal oil for cooking?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- The frying is done with vegetable oil corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:friture:oil' target='_blank'>friture:oil</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Dvegetable' target='_blank'>vegetable</a>`
|
||||
- The frying is done with animal oil corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:friture:oil' target='_blank'>friture:oil</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Danimal' target='_blank'>animal</a>`
|
||||
|
||||
|
||||
Only visible if `cuisine=friture` is shown
|
||||
|
||||
|
||||
|
||||
### friture-take-your-container
|
||||
|
||||
|
||||
|
||||
The question is If you bring your own container (such as a cooking pot and small pots), is it used to package your order?<br/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- You can bring <b>your own containers</b> to get your order, saving on single-use packaging material and thus waste corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept' target='_blank'>reusable_packaging:accept</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dyes' target='_blank'>yes</a>`
|
||||
- Bringing your own container is <b>not allowed</b> corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept' target='_blank'>reusable_packaging:accept</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dno' target='_blank'>no</a>`
|
||||
- You <b>must</b> bring your own container to order here. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept' target='_blank'>reusable_packaging:accept</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Donly' target='_blank'>only</a>`
|
||||
|
||||
|
||||
Only visible if `cuisine=friture` is shown
|
||||
|
||||
|
||||
|
||||
### service:electricity
|
||||
|
||||
|
||||
|
||||
The question is Does this amenity have electrical outlets, available to customers when they are inside?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dyes' target='_blank'>yes</a>`
|
||||
- There are a few domestic sockets available to customers seated indoors, where they can charge their electronics corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dlimited' target='_blank'>limited</a>`
|
||||
- There are no sockets available indoors to customers, but charging might be possible if the staff is asked corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask' target='_blank'>ask</a>`
|
||||
- There are a no domestic sockets available to customers seated indoors corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### dog-access
|
||||
|
||||
|
||||
|
||||
The question is Are dogs allowed in this business?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Dogs are allowed corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes' target='_blank'>yes</a>`
|
||||
- Dogs are <b>not</b> allowed corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno' target='_blank'>no</a>`
|
||||
- Dogs are allowed, but they have to be leashed corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed' target='_blank'>leashed</a>`
|
||||
- Dogs are allowed and can run around freely corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed' target='_blank'>unleashed</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### reviews
|
||||
|
||||
|
||||
|
||||
Shows the reviews module (including the possibility to leave a review)
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
Show the images block at this location
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### minimap
|
||||
|
||||
|
||||
|
||||
Shows a small map with the feature. Added by default to every popup
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/pets/pets.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/pets/pets.json)
|
148
Docs/Layers/dogpark.md
Normal file
148
Docs/Layers/dogpark.md
Normal file
|
@ -0,0 +1,148 @@
|
|||
|
||||
|
||||
dogpark
|
||||
=========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/dogpark/dog-park.svg' height="100px">
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
- [pets](https://mapcomplete.osm.be/pets)
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Ddog_park' target='_blank'>dog_park</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dpark' target='_blank'>park</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed' target='_blank'>unleashed</a>
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22leisure%22%3D%22dog_park%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22dog%22%3D%22unleashed%22%5D%5B%22leisure%22%3D%22park%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
|
||||
|
||||
|
||||
|
||||
### dogpark-fenced
|
||||
|
||||
|
||||
|
||||
The question is It this dog park fenced in?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This dogpark is fenced all around corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dfence' target='_blank'>fence</a>`
|
||||
- This dogpark is not fenced all around corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### smalldogs
|
||||
|
||||
|
||||
|
||||
The question is Does this dog park have a separate fenced in area for small dogs and puppies?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Have separate area for puppies and small dogs corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:small_dog' target='_blank'>small_dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:small_dog%3Dseparate' target='_blank'>separate</a>`
|
||||
- Does <strong>not</strong> have a separate area for puppies and small dogs corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:small_dog' target='_blank'>small_dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:small_dog%3Dshared' target='_blank'>shared</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### Name
|
||||
|
||||
|
||||
|
||||
The question is What is the name of this dog park?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
|
||||
This is rendered with The name of this dog park is {name}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### dogarea
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### reviews
|
||||
|
||||
|
||||
|
||||
Shows the reviews module (including the possibility to leave a review)
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
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)
|
467
Docs/Layers/dogshop.md
Normal file
467
Docs/Layers/dogshop.md
Normal file
File diff suppressed because one or more lines are too long
|
@ -15,7 +15,7 @@ A layer showing drinking water fountains
|
|||
|
||||
|
||||
- This layer is shown at zoomlevel **13** 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 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)
|
||||
|
||||
|
||||
|
@ -44,12 +44,13 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Ddrinking_water' target='_blank'>drinking_water</a>
|
||||
- access!~^permissive$
|
||||
- access!~^private$
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Ddrinking_water' target='_blank'>drinking_water</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:drinking_water' target='_blank'>drinking_water</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:drinking_water%3Dyes' target='_blank'>yes</a>
|
||||
- man_made!=reservoir_covered
|
||||
- access!=permissive
|
||||
- access!=private
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22drinking_water%22%5D%5B%22access%22!~%22%5Epermissive%24%22%5D%5B%22access%22!~%22%5Eprivate%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%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(%7B%7Bbbox%7D%7D)%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(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
|
||||
|
||||
|
||||
|
@ -58,7 +59,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -74,7 +77,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -84,16 +89,19 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **Is this drinking water spot still operational?**
|
||||
The question is Is this drinking water spot still operational?
|
||||
|
||||
This rendering asks information about the property [operational_status](https://wiki.openstreetmap.org/wiki/Key:operational_status)
|
||||
This is rendered with `The operational status is <i>{operational_status}</i>`
|
||||
|
||||
This is rendered with The operational status is <i>{operational_status}</i>
|
||||
|
||||
|
||||
|
||||
- **This drinking water works** corresponds with
|
||||
- **This drinking water is broken** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operational_status' target='_blank'>operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dbroken' target='_blank'>broken</a>
|
||||
- **This drinking water is closed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operational_status' target='_blank'>operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dclosed' target='_blank'>closed</a>
|
||||
|
||||
|
||||
- This drinking water works corresponds with ``
|
||||
- This drinking water is broken corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:operational_status' target='_blank'>operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dbroken' target='_blank'>broken</a>`
|
||||
- This drinking water is closed corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:operational_status' target='_blank'>operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dclosed' target='_blank'>closed</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -102,14 +110,14 @@ This is rendered with `The operational status is <i>{operational_status}</i>`
|
|||
|
||||
|
||||
|
||||
The question is **How easy is it to fill water bottles?**
|
||||
The question is How easy is it to fill water bottles?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **It is easy to refill water bottles** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bottle' target='_blank'>bottle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bottle%3Dyes' target='_blank'>yes</a>
|
||||
- **Water bottles may not fit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bottle' target='_blank'>bottle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bottle%3Dno' target='_blank'>no</a>
|
||||
- It is easy to refill water bottles corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bottle' target='_blank'>bottle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bottle%3Dyes' target='_blank'>yes</a>`
|
||||
- Water bottles may not fit corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:bottle' target='_blank'>bottle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bottle%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -118,10 +126,10 @@ The question is **How easy is it to fill water bottles?**
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
Only visible if `_closest_other_drinking_water_id~^..*$` is shown
|
||||
Only visible if `_closest_other_drinking_water_id~^..*$` is shown
|
||||
|
||||
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)
|
|
@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -75,7 +77,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -85,14 +89,14 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **Does this place charge a fee?**
|
||||
The question is Does this place charge a fee?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **You need to pay for use** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>
|
||||
- **Can be used for free** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>
|
||||
- You need to pay for use corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>`
|
||||
- Can be used for free corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -101,12 +105,15 @@ The question is **Does this place charge a fee?**
|
|||
|
||||
|
||||
|
||||
The question is **How much does this place charge?**
|
||||
The question is How much does this place charge?
|
||||
|
||||
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
||||
This is rendered with `This place charges {charge}`
|
||||
|
||||
Only visible if `fee=yes` is shown
|
||||
This is rendered with This place charges {charge}
|
||||
|
||||
|
||||
|
||||
Only visible if `fee=yes` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -114,14 +121,14 @@ Only visible if `fee=yes` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Does this place have a water point?**
|
||||
The question is Does this place have a water point?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This place has a water point** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:water_point' target='_blank'>water_point</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:water_point%3Dyes' target='_blank'>yes</a>
|
||||
- **This place does not have a water point** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:water_point' target='_blank'>water_point</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:water_point%3Dno' target='_blank'>no</a>
|
||||
- This place has a water point corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:water_point' target='_blank'>water_point</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:water_point%3Dyes' target='_blank'>yes</a>`
|
||||
- This place does not have a water point corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:water_point' target='_blank'>water_point</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:water_point%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -130,14 +137,14 @@ The question is **Does this place have a water point?**
|
|||
|
||||
|
||||
|
||||
The question is **Can you dispose of grey water here?**
|
||||
The question is Can you dispose of grey water here?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **You can dispose of grey water here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:grey_water' target='_blank'>sanitary_dump_station:grey_water</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:grey_water%3Dyes' target='_blank'>yes</a>
|
||||
- **You cannot dispose of gray water here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:grey_water' target='_blank'>sanitary_dump_station:grey_water</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:grey_water%3Dno' target='_blank'>no</a>
|
||||
- You can dispose of grey water here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:grey_water' target='_blank'>sanitary_dump_station:grey_water</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:grey_water%3Dyes' target='_blank'>yes</a>`
|
||||
- You cannot dispose of gray water here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:grey_water' target='_blank'>sanitary_dump_station:grey_water</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:grey_water%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -146,14 +153,14 @@ The question is **Can you dispose of grey water here?**
|
|||
|
||||
|
||||
|
||||
The question is **Can you dispose of chemical toilet waste here?**
|
||||
The question is Can you dispose of chemical toilet waste here?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **You can dispose of chemical toilet waste here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:chemical_toilet' target='_blank'>sanitary_dump_station:chemical_toilet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:chemical_toilet%3Dyes' target='_blank'>yes</a>
|
||||
- **You cannot dispose of chemical toilet waste here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:chemical_toilet' target='_blank'>sanitary_dump_station:chemical_toilet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:chemical_toilet%3Dno' target='_blank'>no</a>
|
||||
- You can dispose of chemical toilet waste here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:chemical_toilet' target='_blank'>sanitary_dump_station:chemical_toilet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:chemical_toilet%3Dyes' target='_blank'>yes</a>`
|
||||
- You cannot dispose of chemical toilet waste here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:chemical_toilet' target='_blank'>sanitary_dump_station:chemical_toilet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:chemical_toilet%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -162,16 +169,17 @@ The question is **Can you dispose of chemical toilet waste here?**
|
|||
|
||||
|
||||
|
||||
The question is **Who can use this dump station?**
|
||||
The question is Who can use this dump station?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **You need a network key/code to use this** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dnetwork' target='_blank'>network</a>
|
||||
- **You need to be a customer of camping/campersite to use this place** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers' target='_blank'>customers</a>
|
||||
- **Anyone can use this dump station** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic' target='_blank'>public</a>_This option cannot be chosen as answer_
|
||||
- **Anyone can use this dump station** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>
|
||||
- You need a network key/code to use this corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dnetwork' target='_blank'>network</a>`
|
||||
- You need to be a customer of camping/campersite to use this place corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers' target='_blank'>customers</a>`
|
||||
- Anyone can use this dump station corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic' target='_blank'>public</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- Anyone can use this dump station corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -180,10 +188,13 @@ The question is **Who can use this dump station?**
|
|||
|
||||
|
||||
|
||||
The question is **What network is this place a part of? (skip if none)**
|
||||
The question is What network is this place a part of? (skip if none)
|
||||
|
||||
This rendering asks information about the property [network](https://wiki.openstreetmap.org/wiki/Key:network)
|
||||
This is rendered with `This station is part of network {network}`
|
||||
|
||||
This is rendered with This station is part of network {network}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -191,10 +202,13 @@ This is rendered with `This station is part of network {network}`
|
|||
|
||||
|
||||
|
||||
The question is **Who operates this place?**
|
||||
The question is Who operates this place?
|
||||
|
||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||
This is rendered with `This place is operated by {operator}`
|
||||
|
||||
This is rendered with This place is operated by {operator}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -202,14 +216,14 @@ This is rendered with `This place is operated by {operator}`
|
|||
|
||||
|
||||
|
||||
The question is **Does this place have a power supply?**
|
||||
The question is Does this place have a power supply?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This place has a power supply** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:power_supply' target='_blank'>power_supply</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:power_supply%3Dyes' target='_blank'>yes</a>
|
||||
- **This place does not have power supply** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:power_supply' target='_blank'>power_supply</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:power_supply%3Dno' target='_blank'>no</a>
|
||||
- This place has a power supply corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:power_supply' target='_blank'>power_supply</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:power_supply%3Dyes' target='_blank'>yes</a>`
|
||||
- This place does not have power supply corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:power_supply' target='_blank'>power_supply</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:power_supply%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -218,7 +232,9 @@ The question is **Does this place have a power supply?**
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
Show the images block at this location
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -228,7 +244,9 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
Shows a small map with the feature. Added by default to every popup
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -68,7 +70,7 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -78,10 +80,13 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What is the Wikidata-item that this object is named after?**
|
||||
The question is What is the Wikidata-item that this object is named after?
|
||||
|
||||
This rendering asks information about the property [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata)
|
||||
This is rendered with `<h3>Wikipedia article of the name giver</h3>{wikipedia(name:etymology:wikidata):max-height:20rem}`
|
||||
|
||||
This is rendered with <h3>Wikipedia article of the name giver</h3>{wikipedia(name:etymology:wikidata):max-height:20rem}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -89,7 +94,7 @@ This is rendered with `<h3>Wikipedia article of the name giver</h3>{wikipedia(na
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -99,14 +104,17 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What is this object named after?<br/><span class='subtle'>This might be written on the street name sign</span>**
|
||||
The question is What is this object named after?<br/><span class='subtle'>This might be written on the street name sign</span>
|
||||
|
||||
This rendering asks information about the property [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology)
|
||||
This is rendered with `Named after {name:etymology}`
|
||||
|
||||
This is rendered with Named after {name:etymology}
|
||||
|
||||
|
||||
|
||||
- **The origin of this name is unknown in all literature** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:name:etymology' target='_blank'>name:etymology</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown' target='_blank'>unknown</a>
|
||||
|
||||
|
||||
- The origin of this name is unknown in all literature corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:name:etymology' target='_blank'>name:etymology</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown' target='_blank'>unknown</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -115,7 +123,7 @@ This is rendered with `Named after {name:etymology}`
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -125,7 +133,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -135,7 +143,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -145,7 +153,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -155,10 +163,10 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
Only visible if `wikidata~^..*$` is shown
|
||||
Only visible if `wikidata~^..*$` is shown
|
||||
|
||||
This document is autogenerated from [assets/themes/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/etymology/etymology.json)
|
187
Docs/Layers/elevator.md
Normal file
187
Docs/Layers/elevator.md
Normal file
|
@ -0,0 +1,187 @@
|
|||
|
||||
|
||||
elevator
|
||||
==========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/elevator/elevator_wheelchair.svg' height="100px">
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [onwheels](https://mapcomplete.osm.be/onwheels)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Delevator' target='_blank'>elevator</a>
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22highway%22%3D%22elevator%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/door:width#values) [door:width](https://wiki.openstreetmap.org/wiki/Key:door:width) | [pfloat](../SpecialInputElements.md#pfloat) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/elevator:width#values) [elevator:width](https://wiki.openstreetmap.org/wiki/Key:elevator:width) | [pfloat](../SpecialInputElements.md#pfloat) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/elevator:depth#values) [elevator:depth](https://wiki.openstreetmap.org/wiki/Key:elevator:depth) | [pfloat](../SpecialInputElements.md#pfloat) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### multilevels
|
||||
|
||||
|
||||
|
||||
The question is What levels does this elevator go to?
|
||||
|
||||
This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level)
|
||||
|
||||
This is rendered with This elevator goes to floors {level}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Located underground corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- Located on the ground floor corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>`
|
||||
- Located on the ground floor corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- Located on the first floor corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D1' target='_blank'>1</a>`
|
||||
- Located on the first basement level corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D-1' target='_blank'>-1</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### operational_status
|
||||
|
||||
|
||||
|
||||
The question is Does this elevator work?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This elevator is broken corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:operational_status' target='_blank'>operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dbroken' target='_blank'>broken</a>`
|
||||
- This elevator is closed <span class='subtle'>e.g. because renovation works are going on</span> corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:operational_status' target='_blank'>operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dclosed' target='_blank'>closed</a>`
|
||||
- This elevator works corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:operational_status' target='_blank'>operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dok' target='_blank'>ok</a>`
|
||||
- This elevator works corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### door-width
|
||||
|
||||
|
||||
|
||||
The question is What is the width of this elevator's entrance?
|
||||
|
||||
This rendering asks information about the property [door:width](https://wiki.openstreetmap.org/wiki/Key:door:width)
|
||||
|
||||
This is rendered with This elevator's doors have a width of {canonical(door:width)}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### elevator-width
|
||||
|
||||
|
||||
|
||||
The question is What is the width of this elevator?
|
||||
|
||||
This rendering asks information about the property [elevator:width](https://wiki.openstreetmap.org/wiki/Key:elevator:width)
|
||||
|
||||
This is rendered with This elevator has a width of {canonical(elevator:width)}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### elevator-depth
|
||||
|
||||
|
||||
|
||||
The question is What is the depth of this elevator?
|
||||
|
||||
This rendering asks information about the property [elevator:depth](https://wiki.openstreetmap.org/wiki/Key:elevator:depth)
|
||||
|
||||
This is rendered with This elevator has a depth of {canonical(elevator:depth)}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### induction-loop
|
||||
|
||||
|
||||
|
||||
An accessibility feature: induction loops are for hard-hearing persons which have an FM-receiver.
|
||||
|
||||
The question is Does this place have an audio induction loop for people with reduced hearing?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This place has an audio induction loop corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:hearing_loop' target='_blank'>hearing_loop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dyes' target='_blank'>yes</a>`
|
||||
- This place <b>does not</b> have an audio induction loop corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:hearing_loop' target='_blank'>hearing_loop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/elevator/elevator.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/elevator/elevator.json)
|
|
@ -5,9 +5,9 @@
|
|||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/entrance/door.svg' height="100px">
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/entrance/entrance.svg' height="100px">
|
||||
|
||||
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, ...)
|
||||
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, …)
|
||||
|
||||
|
||||
|
||||
|
@ -17,6 +17,8 @@ A layer showing entrances and offering capabilities to survey some advanced data
|
|||
- 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)
|
||||
|
||||
|
||||
|
||||
|
@ -27,7 +29,8 @@ A layer showing entrances and offering capabilities to survey some advanced data
|
|||
|
||||
|
||||
|
||||
- [entrances](https://mapcomplete.osm.be/entrances)
|
||||
- [indoors](https://mapcomplete.osm.be/indoors)
|
||||
- [onwheels](https://mapcomplete.osm.be/onwheels)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
|
@ -42,10 +45,10 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
- entrance~^..*$|<a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Ddoor' target='_blank'>door</a>
|
||||
- entrance~^..*$|<a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Ddoor' target='_blank'>door</a>|door~^..*$
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22indoor%22%3D%22door%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22entrance%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22indoor%22%3D%22door%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22door%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22entrance%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
|
||||
|
||||
|
||||
|
@ -54,16 +57,20 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/width#values) [width](https://wiki.openstreetmap.org/wiki/Key:width) | [length](../SpecialInputElements.md#length) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/width#values) [width](https://wiki.openstreetmap.org/wiki/Key:width) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
|
||||
|
||||
|
||||
|
@ -72,8 +79,35 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### level
|
||||
|
||||
|
||||
|
||||
The question is On what level is this feature located?
|
||||
|
||||
This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level)
|
||||
|
||||
This is rendered with Located on the {level}th floor
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Located underground corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- Located on the ground floor corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>`
|
||||
- Located on the ground floor corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- Located on the first floor corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D1' target='_blank'>1</a>`
|
||||
- Located on the first basement level corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D-1' target='_blank'>-1</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -82,21 +116,22 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What type of entrance is this?**
|
||||
The question is What type of entrance is this?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **No specific entrance type is known** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dyes' target='_blank'>yes</a>_This option cannot be chosen as answer_
|
||||
- **This is an indoor door, separating a room or a corridor within a single building** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Ddoor' target='_blank'>door</a>
|
||||
- **This is the main entrance** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dmain' target='_blank'>main</a>
|
||||
- **This is a secondary entrance** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dsecondary' target='_blank'>secondary</a>
|
||||
- **This is a service entrance - normally only used for employees, delivery, ...** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dservice' target='_blank'>service</a>
|
||||
- **This is an exit where one can not enter** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dexit' target='_blank'>exit</a>
|
||||
- **This is an entrance where one can only enter (but not exit)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dentrance' target='_blank'>entrance</a>
|
||||
- **This is emergency exit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Demergency' target='_blank'>emergency</a>
|
||||
- **This is the entrance to a private home** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dhome' target='_blank'>home</a>
|
||||
- No specific entrance type is known corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dyes' target='_blank'>yes</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- This is an indoor door, separating a room or a corridor within a single building corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Ddoor' target='_blank'>door</a>`
|
||||
- This is the main entrance corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dmain' target='_blank'>main</a>`
|
||||
- This is a secondary entrance corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dsecondary' target='_blank'>secondary</a>`
|
||||
- This is a service entrance - normally only used for employees, delivery, … corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dservice' target='_blank'>service</a>`
|
||||
- This is an exit where one can not enter corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dexit' target='_blank'>exit</a>`
|
||||
- This is an entrance where one can only enter (but not exit) corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dentrance' target='_blank'>entrance</a>`
|
||||
- This is emergency exit corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Demergency' target='_blank'>emergency</a>`
|
||||
- This is the entrance to a private home corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dhome' target='_blank'>home</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -105,18 +140,19 @@ The question is **What type of entrance is this?**
|
|||
|
||||
|
||||
|
||||
The question is **What is the type of this door?<br/><span class='subtle'>Wether or not the door is automated is asked in the next question</span>**
|
||||
The question is What is the type of this door?<br/><span class='subtle'>Wether or not the door is automated is asked in the next question</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **The door type is not known** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Dyes' target='_blank'>yes</a>_This option cannot be chosen as answer_
|
||||
- **A classical, hinged door supported by joints** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Dhinged' target='_blank'>hinged</a>
|
||||
- **A revolving door which hangs on a central shaft, rotating within a cylindrical enclosure** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Drevolving' target='_blank'>revolving</a>
|
||||
- **A sliding door where the door slides sidewards, typically parallel with a wall** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Dsliding' target='_blank'>sliding</a>
|
||||
- **A door which rolls from overhead, typically seen for garages** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Doverhead' target='_blank'>overhead</a>
|
||||
- **This is an entrance without a physical door** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Dno' target='_blank'>no</a>
|
||||
- The door type is not known corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Dyes' target='_blank'>yes</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- A classical, hinged door supported by joints corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Dhinged' target='_blank'>hinged</a>`
|
||||
- A revolving door which hangs on a central shaft, rotating within a cylindrical enclosure corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Drevolving' target='_blank'>revolving</a>`
|
||||
- A sliding door where the door slides sidewards, typically parallel with a wall corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Dsliding' target='_blank'>sliding</a>`
|
||||
- A door which rolls from overhead, typically seen for garages corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Doverhead' target='_blank'>overhead</a>`
|
||||
- This is an entrance without a physical door corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -125,21 +161,22 @@ The question is **What is the type of this door?<br/><span class='subtle'>Wether
|
|||
|
||||
|
||||
|
||||
The question is **Is this door automated?**
|
||||
The question is Is this door automated?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This is an automatic door** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dyes' target='_blank'>yes</a>_This option cannot be chosen as answer_
|
||||
- **This door is <b>not</b> automated** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dno' target='_blank'>no</a>
|
||||
- **This door will open automatically when <b>motion</b> is detected** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dmotion' target='_blank'>motion</a>
|
||||
- **This door will open automatically when a <b>sensor in the floor</b> is triggered** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dfloor' target='_blank'>floor</a>
|
||||
- **This door will open automatically when a <b>button is pressed</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dbutton' target='_blank'>button</a>
|
||||
- **This door revolves automatically all the time, but has a <b>button to slow it down</b>, e.g. for wheelchair users** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dslowdown_button' target='_blank'>slowdown_button</a>
|
||||
- **This door revolves automatically all the time** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dcontinuous' target='_blank'>continuous</a>
|
||||
- **This door will be opened by staff when requested by <b>pressing a button</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_button_press' target='_blank'>serviced_on_button_press</a>
|
||||
- **This door will be opened by staff when requested** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_request' target='_blank'>serviced_on_request</a>
|
||||
- This is an automatic door corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dyes' target='_blank'>yes</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- This door is <b>not</b> automated corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dno' target='_blank'>no</a>`
|
||||
- This door will open automatically when <b>motion</b> is detected corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dmotion' target='_blank'>motion</a>`
|
||||
- This door will open automatically when a <b>sensor in the floor</b> is triggered corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dfloor' target='_blank'>floor</a>`
|
||||
- This door will open automatically when a <b>button is pressed</b> corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dbutton' target='_blank'>button</a>`
|
||||
- This door revolves automatically all the time, but has a <b>button to slow it down</b>, e.g. for wheelchair users corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dslowdown_button' target='_blank'>slowdown_button</a>`
|
||||
- This door revolves automatically all the time corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dcontinuous' target='_blank'>continuous</a>`
|
||||
- This door will be opened by staff when requested by <b>pressing a button</b> corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_button_press' target='_blank'>serviced_on_button_press</a>`
|
||||
- This door will be opened by staff when requested corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_request' target='_blank'>serviced_on_request</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -148,9 +185,31 @@ The question is **Is this door automated?**
|
|||
|
||||
|
||||
|
||||
The question is **What is the width of this door/entrance?**
|
||||
The question is What is the width of this door/entrance?
|
||||
|
||||
This rendering asks information about the property [width](https://wiki.openstreetmap.org/wiki/Key:width)
|
||||
This is rendered with `This door has a width of {canonical(width)} meter`
|
||||
|
||||
This is rendered with This door has a width of {canonical(width)} meter
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### kerb-height
|
||||
|
||||
|
||||
|
||||
The question is What is the height of this kerb?
|
||||
|
||||
This rendering asks information about the property [kerb:height](https://wiki.openstreetmap.org/wiki/Key:kerb:height)
|
||||
|
||||
This is rendered with The kerb height of this door is {kerb:height}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This door does not have a kerb corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:kerb:height' target='_blank'>kerb:height</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:kerb:height%3D0' target='_blank'>0</a>`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/entrance/entrance.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/entrance/entrance.json)
|
|
@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -68,7 +70,7 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -78,10 +80,13 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What is the Wikidata-item that this object is named after?**
|
||||
The question is What is the Wikidata-item that this object is named after?
|
||||
|
||||
This rendering asks information about the property [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata)
|
||||
This is rendered with `<h3>Wikipedia article of the name giver</h3>{wikipedia(name:etymology:wikidata):max-height:20rem}`
|
||||
|
||||
This is rendered with <h3>Wikipedia article of the name giver</h3>{wikipedia(name:etymology:wikidata):max-height:20rem}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -89,7 +94,7 @@ This is rendered with `<h3>Wikipedia article of the name giver</h3>{wikipedia(na
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -99,14 +104,17 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What is this object named after?<br/><span class='subtle'>This might be written on the street name sign</span>**
|
||||
The question is What is this object named after?<br/><span class='subtle'>This might be written on the street name sign</span>
|
||||
|
||||
This rendering asks information about the property [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology)
|
||||
This is rendered with `Named after {name:etymology}`
|
||||
|
||||
This is rendered with Named after {name:etymology}
|
||||
|
||||
|
||||
|
||||
- **The origin of this name is unknown in all literature** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:name:etymology' target='_blank'>name:etymology</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown' target='_blank'>unknown</a>
|
||||
|
||||
|
||||
- The origin of this name is unknown in all literature corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:name:etymology' target='_blank'>name:etymology</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown' target='_blank'>unknown</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -115,7 +123,7 @@ This is rendered with `Named after {name:etymology}`
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -125,7 +133,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -135,7 +143,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -145,7 +153,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -155,10 +163,10 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
Only visible if `wikidata~^..*$` is shown
|
||||
Only visible if `wikidata~^..*$` is shown
|
||||
|
||||
This document is autogenerated from [assets/layers/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/etymology/etymology.json)
|
|
@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -67,15 +69,18 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
The question is **Where is it positioned?**
|
||||
The question is Where is it positioned?
|
||||
|
||||
This rendering asks information about the property [location](https://wiki.openstreetmap.org/wiki/Key:location)
|
||||
This is rendered with `Location: {location}`
|
||||
|
||||
This is rendered with Location: {location}
|
||||
|
||||
|
||||
|
||||
- **Found indoors.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dindoor' target='_blank'>indoor</a>
|
||||
- **Found outdoors.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Doutdoor' target='_blank'>outdoor</a>
|
||||
|
||||
|
||||
- Found indoors. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dindoor' target='_blank'>indoor</a>`
|
||||
- Found outdoors. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Doutdoor' target='_blank'>outdoor</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -84,7 +89,9 @@ This is rendered with `Location: {location}`
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -73,7 +75,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -83,10 +87,13 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What is the orientation of the garden?**
|
||||
The question is What is the orientation of the garden?
|
||||
|
||||
This rendering asks information about the property [direction](https://wiki.openstreetmap.org/wiki/Key:direction)
|
||||
This is rendered with `Orientation: {direction} (where 0=N and 90=O)`
|
||||
|
||||
This is rendered with Orientation: {direction} (where 0=N and 90=O)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -94,15 +101,15 @@ This is rendered with `Orientation: {direction} (where 0=N and 90=O)`
|
|||
|
||||
|
||||
|
||||
The question is **Is the garden shaded or sunny?**
|
||||
The question is Is the garden shaded or sunny?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **The garden is in full sun** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:direct_sunlight' target='_blank'>direct_sunlight</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dyes' target='_blank'>yes</a>
|
||||
- **The garden is in partial shade** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:direct_sunlight' target='_blank'>direct_sunlight</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dpartial' target='_blank'>partial</a>
|
||||
- **The garden is in the shade** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:direct_sunlight' target='_blank'>direct_sunlight</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dno' target='_blank'>no</a>
|
||||
- The garden is in full sun corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:direct_sunlight' target='_blank'>direct_sunlight</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dyes' target='_blank'>yes</a>`
|
||||
- The garden is in partial shade corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:direct_sunlight' target='_blank'>direct_sunlight</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dpartial' target='_blank'>partial</a>`
|
||||
- The garden is in the shade corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:direct_sunlight' target='_blank'>direct_sunlight</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -111,14 +118,14 @@ The question is **Is the garden shaded or sunny?**
|
|||
|
||||
|
||||
|
||||
The question is **Is there a water barrel installed for the garden?**
|
||||
The question is Is there a water barrel installed for the garden?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **There is a rain barrel** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rain_barrel' target='_blank'>rain_barrel</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rain_barrel%3Dyes' target='_blank'>yes</a>
|
||||
- **There is no rain barrel** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rain_barrel' target='_blank'>rain_barrel</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rain_barrel%3Dno' target='_blank'>no</a>
|
||||
- There is a rain barrel corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rain_barrel' target='_blank'>rain_barrel</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rain_barrel%3Dyes' target='_blank'>yes</a>`
|
||||
- There is no rain barrel corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:rain_barrel' target='_blank'>rain_barrel</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rain_barrel%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -127,10 +134,13 @@ The question is **Is there a water barrel installed for the garden?**
|
|||
|
||||
|
||||
|
||||
The question is **When was the garden constructed? (a year is sufficient)**
|
||||
The question is When was the garden constructed? (a year is sufficient)
|
||||
|
||||
This rendering asks information about the property [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date)
|
||||
This is rendered with `Construction date of the garden: {start_date}`
|
||||
|
||||
This is rendered with Construction date of the garden: {start_date}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -138,14 +148,14 @@ This is rendered with `Construction date of the garden: {start_date}`
|
|||
|
||||
|
||||
|
||||
The question is **Are there any edible plants?**
|
||||
The question is Are there any edible plants?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **There are edible plants** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:edible' target='_blank'>edible</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:edible%3Dyes' target='_blank'>yes</a>
|
||||
- **There are no edible plants** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:edible' target='_blank'>edible</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:edible%3Dno' target='_blank'>no</a>
|
||||
- There are edible plants corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:edible' target='_blank'>edible</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:edible%3Dyes' target='_blank'>yes</a>`
|
||||
- There are no edible plants corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:edible' target='_blank'>edible</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:edible%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -154,16 +164,16 @@ The question is **Are there any edible plants?**
|
|||
|
||||
|
||||
|
||||
The question is **What kinds of plants grow here?**
|
||||
The question is What kinds of plants grow here?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **There are vines** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:plant' target='_blank'>plant</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:plant%3Dvine' target='_blank'>vine</a>
|
||||
- **There are flowering plants** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:plant' target='_blank'>plant</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:plant%3Dflower' target='_blank'>flower</a>
|
||||
- **There are shrubs** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:plant' target='_blank'>plant</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:plant%3Dshrub' target='_blank'>shrub</a>
|
||||
- **There are groundcovering plants** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:plant' target='_blank'>plant</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:plant%3Dgroundcover' target='_blank'>groundcover</a>
|
||||
- There are vines corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:plant' target='_blank'>plant</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:plant%3Dvine' target='_blank'>vine</a>`
|
||||
- There are flowering plants corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:plant' target='_blank'>plant</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:plant%3Dflower' target='_blank'>flower</a>`
|
||||
- There are shrubs corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:plant' target='_blank'>plant</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:plant%3Dshrub' target='_blank'>shrub</a>`
|
||||
- There are groundcovering plants corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:plant' target='_blank'>plant</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:plant%3Dgroundcover' target='_blank'>groundcover</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -172,10 +182,13 @@ The question is **What kinds of plants grow here?**
|
|||
|
||||
|
||||
|
||||
The question is **Extra describing info about the garden (if needed and not yet described above)**
|
||||
The question is Extra describing info about the garden (if needed and not yet described above)
|
||||
|
||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||
This is rendered with `More details: {description}`
|
||||
|
||||
This is rendered with More details: {description}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -183,7 +196,9 @@ This is rendered with `More details: {description}`
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
Show the images block at this location
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -193,7 +208,9 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
Shows a small map with the feature. Added by default to every popup
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -51,7 +51,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -67,7 +69,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -77,16 +81,16 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **Is the street <b>{name}</b> a cyclestreet?**
|
||||
The question is Is the street <b>{name}</b> a cyclestreet?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This street is a cyclestreet (and has a speed limit of 30 km/h)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cyclestreet' target='_blank'>cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes' target='_blank'>yes</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D30' target='_blank'>30</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:overtaking:motor_vehicle' target='_blank'>overtaking:motor_vehicle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:overtaking:motor_vehicle%3Dno' target='_blank'>no</a>
|
||||
- **This street is a cyclestreet** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cyclestreet' target='_blank'>cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes' target='_blank'>yes</a>
|
||||
- **This street will become a cyclstreet soon** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:proposed:cyclestreet' target='_blank'>proposed:cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:proposed:cyclestreet%3Dyes' target='_blank'>yes</a>
|
||||
- **This street is not a cyclestreet** corresponds with
|
||||
- This street is a cyclestreet (and has a speed limit of 30 km/h) corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cyclestreet' target='_blank'>cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes' target='_blank'>yes</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D30' target='_blank'>30</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:overtaking:motor_vehicle' target='_blank'>overtaking:motor_vehicle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:overtaking:motor_vehicle%3Dno' target='_blank'>no</a>`
|
||||
- This street is a cyclestreet corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cyclestreet' target='_blank'>cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes' target='_blank'>yes</a>`
|
||||
- This street will become a cyclstreet soon corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:proposed:cyclestreet' target='_blank'>proposed:cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:proposed:cyclestreet%3Dyes' target='_blank'>yes</a>`
|
||||
- This street is not a cyclestreet corresponds with ``
|
||||
|
||||
|
||||
|
||||
|
@ -95,12 +99,15 @@ The question is **Is the street <b>{name}</b> a cyclestreet?**
|
|||
|
||||
|
||||
|
||||
The question is **When will this street become a cyclestreet?**
|
||||
The question is When will this street become a cyclestreet?
|
||||
|
||||
This rendering asks information about the property [cyclestreet:start_date](https://wiki.openstreetmap.org/wiki/Key:cyclestreet:start_date)
|
||||
This is rendered with `This street will become a cyclestreet at {cyclestreet:start_date}`
|
||||
|
||||
Only visible if `proposed:cyclestreet=yes` is shown
|
||||
This is rendered with This street will become a cyclestreet at {cyclestreet:start_date}
|
||||
|
||||
|
||||
|
||||
Only visible if `proposed:cyclestreet=yes` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -108,7 +115,9 @@ Only visible if `proposed:cyclestreet=yes` is shown
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
Show the images block at this location
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -118,7 +127,9 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
Shows a small map with the feature. Added by default to every popup
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -71,10 +73,13 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
The question is **What is the name of this fire station?**
|
||||
The question is What is the name of this fire station?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
This is rendered with `This station is called {name}.`
|
||||
|
||||
This is rendered with This station is called {name}.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -82,10 +87,13 @@ This is rendered with `This station is called {name}.`
|
|||
|
||||
|
||||
|
||||
The question is ** What is the street name where the station located?**
|
||||
The question is What is the street name where the station located?
|
||||
|
||||
This rendering asks information about the property [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street)
|
||||
This is rendered with `This station is along a highway called {addr:street}.`
|
||||
|
||||
This is rendered with This station is along a highway called {addr:street}.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -93,10 +101,13 @@ This is rendered with `This station is along a highway called {addr:street}.`
|
|||
|
||||
|
||||
|
||||
The question is **Where is the station located? (e.g. name of neighborhood, villlage, or town)**
|
||||
The question is Where is the station located? (e.g. name of neighborhood, villlage, or town)
|
||||
|
||||
This rendering asks information about the property [addr:place](https://wiki.openstreetmap.org/wiki/Key:addr:place)
|
||||
This is rendered with `This station is found within {addr:place}.`
|
||||
|
||||
This is rendered with This station is found within {addr:place}.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -104,14 +115,17 @@ This is rendered with `This station is found within {addr:place}.`
|
|||
|
||||
|
||||
|
||||
The question is **What agency operates this station?**
|
||||
The question is What agency operates this station?
|
||||
|
||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||
This is rendered with `This station is operated by {operator}.`
|
||||
|
||||
This is rendered with This station is operated by {operator}.
|
||||
|
||||
|
||||
|
||||
- **Bureau of Fire Protection** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DBureau of Fire Protection' target='_blank'>Bureau of Fire Protection</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment' target='_blank'>government</a>
|
||||
|
||||
|
||||
- Bureau of Fire Protection corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DBureau of Fire Protection' target='_blank'>Bureau of Fire Protection</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment' target='_blank'>government</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -120,17 +134,20 @@ This is rendered with `This station is operated by {operator}.`
|
|||
|
||||
|
||||
|
||||
The question is **How is the station operator classified?**
|
||||
The question is How is the station operator classified?
|
||||
|
||||
This rendering asks information about the property [operator:type](https://wiki.openstreetmap.org/wiki/Key:operator:type)
|
||||
This is rendered with `The operator is a(n) {operator:type} entity.`
|
||||
|
||||
This is rendered with The operator is a(n) {operator:type} entity.
|
||||
|
||||
|
||||
|
||||
- **The station is operated by the government.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment' target='_blank'>government</a>
|
||||
- **The station is operated by a community-based, or informal organization.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity' target='_blank'>community</a>
|
||||
- **The station is operated by a formal group of volunteers.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dngo' target='_blank'>ngo</a>
|
||||
- **The station is privately operated.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dprivate' target='_blank'>private</a>
|
||||
|
||||
|
||||
- The station is operated by the government. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment' target='_blank'>government</a>`
|
||||
- The station is operated by a community-based, or informal organization. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity' target='_blank'>community</a>`
|
||||
- The station is operated by a formal group of volunteers. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dngo' target='_blank'>ngo</a>`
|
||||
- The station is privately operated. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dprivate' target='_blank'>private</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -139,7 +156,9 @@ This is rendered with `The operator is a(n) {operator:type} entity.`
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -27,7 +27,9 @@ A layer showing restaurants and fast-food amenities (with a special rendering fo
|
|||
|
||||
- [food](https://mapcomplete.osm.be/food)
|
||||
- [fritures](https://mapcomplete.osm.be/fritures)
|
||||
- [onwheels](https://mapcomplete.osm.be/onwheels)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
- [pets](https://mapcomplete.osm.be/pets)
|
||||
|
||||
|
||||
|
||||
|
@ -53,12 +55,15 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||
|
@ -68,6 +73,7 @@ attribute | type | values which are supported by this layer
|
|||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
|
@ -85,8 +91,35 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### level
|
||||
|
||||
|
||||
|
||||
The question is On what level is this feature located?
|
||||
|
||||
This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level)
|
||||
|
||||
This is rendered with Located on the {level}th floor
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Located underground corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- Located on the ground floor corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>`
|
||||
- Located on the ground floor corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- Located on the first floor corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D1' target='_blank'>1</a>`
|
||||
- Located on the first basement level corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D-1' target='_blank'>-1</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -95,10 +128,13 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What is the name of this restaurant?**
|
||||
The question is What is the name of this restaurant?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
This is rendered with `The name of this restaurant is {name}`
|
||||
|
||||
This is rendered with The name of this restaurant is {name}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -106,14 +142,14 @@ This is rendered with `The name of this restaurant is {name}`
|
|||
|
||||
|
||||
|
||||
The question is **What type of business is this?**
|
||||
The question is What type of business is this?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This is a fastfood-business, focussed on fast service. If seating is available, these are rather limited and functional.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfast_food' target='_blank'>fast_food</a>
|
||||
- **A <b>restaurant</b>, focussed on creating a nice experience where one is served at the table** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant' target='_blank'>restaurant</a>
|
||||
- This is a fastfood-business, focused on fast service. If seating is available, these are rather limited and functional. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfast_food' target='_blank'>fast_food</a>`
|
||||
- A <b>restaurant</b>, focused on creating a nice experience where one is served at the table corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant' target='_blank'>restaurant</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -122,10 +158,13 @@ The question is **What type of business is this?**
|
|||
|
||||
|
||||
|
||||
The question is **What are the opening hours of {title()}?**
|
||||
The question is What are the opening hours of {title()}?
|
||||
|
||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||
|
||||
This is rendered with <h3>Opening hours</h3>{opening_hours_table(opening_hours)}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -133,14 +172,18 @@ This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)
|
|||
|
||||
|
||||
|
||||
The question is **What is the website of {title()}?**
|
||||
The question is What is the website of {title()}?
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||
|
||||
This is rendered with <a href='{website}' target='_blank'>{website}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='{contact:website}' target='_blank'>{contact:website}</a> corresponds with `contact:website~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -149,14 +192,18 @@ This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **What is the email address of {title()}?**
|
||||
The question is What is the email address of {title()}?
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||
|
||||
This is rendered with <a href='mailto:{email}' target='_blank'>{email}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='mailto:{contact:email}' target='_blank'>{contact:email}</a> corresponds with `contact:email~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -165,14 +212,18 @@ This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **What is the phone number of {title()}?**
|
||||
The question is What is the phone number of {title()}?
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||
|
||||
This is rendered with <a href='tel:{phone}'>{phone}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='tel:{contact:phone}'>{contact:phone}</a> corresponds with `contact:phone~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -181,14 +232,16 @@ This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **Which methods of payment are accepted here?**
|
||||
The question is Which methods of payment are accepted here?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Cash is accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dno' target='_blank'>no</a>
|
||||
- **Payment cards are accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||
- Cash is accepted here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dno' target='_blank'>no</a>
|
||||
- Payment cards are accepted here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
@ -197,16 +250,16 @@ The question is **Which methods of payment are accepted here?**
|
|||
|
||||
|
||||
|
||||
The question is **Is this place accessible with a wheelchair?**
|
||||
The question is Is this place accessible with a wheelchair?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This place is specially adapted for wheelchair users** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>
|
||||
- **This place is easily reachable with a wheelchair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>
|
||||
- **It is possible to reach this place in a wheelchair, but it is not easy** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited' target='_blank'>limited</a>
|
||||
- **This place is not reachable with a wheelchair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a>
|
||||
- This place is specially adapted for wheelchair users corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>`
|
||||
- This place is easily reachable with a wheelchair corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>`
|
||||
- It is possible to reach this place in a wheelchair, but it is not easy corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited' target='_blank'>limited</a>`
|
||||
- This place is not reachable with a wheelchair corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -215,28 +268,31 @@ The question is **Is this place accessible with a wheelchair?**
|
|||
|
||||
|
||||
|
||||
The question is **Which food is served here?**
|
||||
The question is Which food is served here?
|
||||
|
||||
This rendering asks information about the property [cuisine](https://wiki.openstreetmap.org/wiki/Key:cuisine)
|
||||
This is rendered with `This place mostly serves {cuisine}`
|
||||
|
||||
This is rendered with This place mostly serves {cuisine}
|
||||
|
||||
|
||||
|
||||
- **This is a pizzeria** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpizza' target='_blank'>pizza</a>
|
||||
- **This is a friture** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture' target='_blank'>friture</a>
|
||||
- **Mainly serves pasta** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpasta' target='_blank'>pasta</a>
|
||||
- **This is kebab shop** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dkebab' target='_blank'>kebab</a>
|
||||
- **This is a sandwichbar** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsandwich' target='_blank'>sandwich</a>
|
||||
- **Burgers are served here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dburger' target='_blank'>burger</a>
|
||||
- **Sushi is served here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsushi' target='_blank'>sushi</a>
|
||||
- **Coffee is served here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dcoffee' target='_blank'>coffee</a>
|
||||
- **This is an italian restaurant (which serves more then pasta and pizza)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Ditalian' target='_blank'>italian</a>
|
||||
- **French dishes are served here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfrench' target='_blank'>french</a>
|
||||
- **Chinese dishes are served here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchinese' target='_blank'>chinese</a>
|
||||
- **Greek dishes are served here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dgreek' target='_blank'>greek</a>
|
||||
- **Indian dishes are served here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dindian' target='_blank'>indian</a>
|
||||
- **Turkish dishes are served here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dturkish' target='_blank'>turkish</a>
|
||||
- **Thai dishes are served here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dthai' target='_blank'>thai</a>
|
||||
|
||||
|
||||
- This is a pizzeria corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpizza' target='_blank'>pizza</a>`
|
||||
- This is a friture corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture' target='_blank'>friture</a>`
|
||||
- Mainly serves pasta corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpasta' target='_blank'>pasta</a>`
|
||||
- This is kebab shop corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dkebab' target='_blank'>kebab</a>`
|
||||
- This is a sandwichbar corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsandwich' target='_blank'>sandwich</a>`
|
||||
- Burgers are served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dburger' target='_blank'>burger</a>`
|
||||
- Sushi is served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsushi' target='_blank'>sushi</a>`
|
||||
- Coffee is served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dcoffee' target='_blank'>coffee</a>`
|
||||
- This is an italian restaurant (which serves more then pasta and pizza) corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Ditalian' target='_blank'>italian</a>`
|
||||
- French dishes are served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfrench' target='_blank'>french</a>`
|
||||
- Chinese dishes are served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchinese' target='_blank'>chinese</a>`
|
||||
- Greek dishes are served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dgreek' target='_blank'>greek</a>`
|
||||
- Indian dishes are served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dindian' target='_blank'>indian</a>`
|
||||
- Turkish dishes are served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dturkish' target='_blank'>turkish</a>`
|
||||
- Thai dishes are served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dthai' target='_blank'>thai</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -245,15 +301,31 @@ This is rendered with `This place mostly serves {cuisine}`
|
|||
|
||||
|
||||
|
||||
The question is **Does this place offer takea-way?**
|
||||
The question is Does this place offer take-away?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This is a take-away only business** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:takeaway' target='_blank'>takeaway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Donly' target='_blank'>only</a>
|
||||
- **Take-away is possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:takeaway' target='_blank'>takeaway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dyes' target='_blank'>yes</a>
|
||||
- **Take-away is not possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:takeaway' target='_blank'>takeaway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dno' target='_blank'>no</a>
|
||||
- This is a take-away only business corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:takeaway' target='_blank'>takeaway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Donly' target='_blank'>only</a>`
|
||||
- Take-away is possible here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:takeaway' target='_blank'>takeaway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dyes' target='_blank'>yes</a>`
|
||||
- Take-away is not possible here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:takeaway' target='_blank'>takeaway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### delivery
|
||||
|
||||
|
||||
|
||||
The question is Delivers {title()} their food at home?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This business does home delivery (eventually via a third party) corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:delivery' target='_blank'>delivery</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dyes' target='_blank'>yes</a>`
|
||||
- This business does not deliver at home corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:delivery' target='_blank'>delivery</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -262,16 +334,16 @@ The question is **Does this place offer takea-way?**
|
|||
|
||||
|
||||
|
||||
The question is **Does this restaurant have a vegetarian option?**
|
||||
The question is Does this restaurant have a vegetarian option?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **No vegetarian options are available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno' target='_blank'>no</a>
|
||||
- **Some vegetarian options are available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited' target='_blank'>limited</a>
|
||||
- **Vegetarian options are available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes' target='_blank'>yes</a>
|
||||
- **All dishes are vegetarian** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Donly' target='_blank'>only</a>
|
||||
- No vegetarian options are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno' target='_blank'>no</a>`
|
||||
- Some vegetarian options are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited' target='_blank'>limited</a>`
|
||||
- Vegetarian options are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes' target='_blank'>yes</a>`
|
||||
- All dishes are vegetarian corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Donly' target='_blank'>only</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -280,16 +352,16 @@ The question is **Does this restaurant have a vegetarian option?**
|
|||
|
||||
|
||||
|
||||
The question is **Does this business serve vegan meals?**
|
||||
The question is Does this business serve vegan meals?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **No vegan options available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno' target='_blank'>no</a>
|
||||
- **Some vegan options are available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited' target='_blank'>limited</a>
|
||||
- **Vegan options are available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes' target='_blank'>yes</a>
|
||||
- **All dishes are vegan** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Donly' target='_blank'>only</a>
|
||||
- No vegan options available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno' target='_blank'>no</a>`
|
||||
- Some vegan options are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited' target='_blank'>limited</a>`
|
||||
- Vegan options are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes' target='_blank'>yes</a>`
|
||||
- All dishes are vegan corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Donly' target='_blank'>only</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -298,16 +370,16 @@ The question is **Does this business serve vegan meals?**
|
|||
|
||||
|
||||
|
||||
The question is **Does this restaurant offer a halal menu?**
|
||||
The question is Does this restaurant offer a halal menu?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **There are no halal options available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dno' target='_blank'>no</a>
|
||||
- **There is a small halal menu** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dlimited' target='_blank'>limited</a>
|
||||
- **There is a halal menu** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dyes' target='_blank'>yes</a>
|
||||
- **Only halal options are available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Donly' target='_blank'>only</a>
|
||||
- There are no halal options available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dno' target='_blank'>no</a>`
|
||||
- There is a small halal menu corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dlimited' target='_blank'>limited</a>`
|
||||
- There is a halal menu corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dyes' target='_blank'>yes</a>`
|
||||
- Only halal options are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Donly' target='_blank'>only</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -316,18 +388,18 @@ The question is **Does this restaurant offer a halal menu?**
|
|||
|
||||
|
||||
|
||||
The question is **Does this fries shop have vegetarian snacks?**
|
||||
The question is Does this fries shop have vegetarian snacks?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Vegetarian snacks are available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes' target='_blank'>yes</a>
|
||||
- **Only a small selection of snacks are vegetarian** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited' target='_blank'>limited</a>
|
||||
- **No vegetarian snacks are available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno' target='_blank'>no</a>
|
||||
- Vegetarian snacks are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes' target='_blank'>yes</a>`
|
||||
- Only a small selection of snacks are vegetarian corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited' target='_blank'>limited</a>`
|
||||
- No vegetarian snacks are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
Only visible if `cuisine=friture` is shown
|
||||
Only visible if `cuisine=friture` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -335,18 +407,18 @@ Only visible if `cuisine=friture` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Does this fries shop have vegan snacks?**
|
||||
The question is Does this fries shop have vegan snacks?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Vegan snacks are available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes' target='_blank'>yes</a>
|
||||
- **A small selection of vegan snacks are available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited' target='_blank'>limited</a>
|
||||
- **No vegan snacks are available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno' target='_blank'>no</a>
|
||||
- Vegan snacks are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes' target='_blank'>yes</a>`
|
||||
- A small selection of vegan snacks are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited' target='_blank'>limited</a>`
|
||||
- No vegan snacks are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
Only visible if `cuisine=friture` is shown
|
||||
Only visible if `cuisine=friture` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -354,17 +426,17 @@ Only visible if `cuisine=friture` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Does this fries shop use vegetable or animal cooking?**
|
||||
The question is Does this fries shop use vegetable or animal oil for cooking?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Vegetable oil** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:friture:oil' target='_blank'>friture:oil</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Dvegetable' target='_blank'>vegetable</a>
|
||||
- **Animal oil** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:friture:oil' target='_blank'>friture:oil</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Danimal' target='_blank'>animal</a>
|
||||
- The frying is done with vegetable oil corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:friture:oil' target='_blank'>friture:oil</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Dvegetable' target='_blank'>vegetable</a>`
|
||||
- The frying is done with animal oil corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:friture:oil' target='_blank'>friture:oil</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Danimal' target='_blank'>animal</a>`
|
||||
|
||||
|
||||
Only visible if `cuisine=friture` is shown
|
||||
Only visible if `cuisine=friture` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -372,18 +444,18 @@ Only visible if `cuisine=friture` is shown
|
|||
|
||||
|
||||
|
||||
The question is **If you bring your own container (such as a cooking pot and small pots), is it used to package your order?<br/>**
|
||||
The question is If you bring your own container (such as a cooking pot and small pots), is it used to package your order?<br/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **You can bring <b>your own containers</b> to get your order, saving on single-use packaging material and thus waste** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept' target='_blank'>reusable_packaging:accept</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dyes' target='_blank'>yes</a>
|
||||
- **Bringing your own container is <b>not allowed</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept' target='_blank'>reusable_packaging:accept</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dno' target='_blank'>no</a>
|
||||
- **You <b>must</b> bring your own container to order here.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept' target='_blank'>reusable_packaging:accept</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Donly' target='_blank'>only</a>
|
||||
- You can bring <b>your own containers</b> to get your order, saving on single-use packaging material and thus waste corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept' target='_blank'>reusable_packaging:accept</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dyes' target='_blank'>yes</a>`
|
||||
- Bringing your own container is <b>not allowed</b> corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept' target='_blank'>reusable_packaging:accept</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dno' target='_blank'>no</a>`
|
||||
- You <b>must</b> bring your own container to order here. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept' target='_blank'>reusable_packaging:accept</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Donly' target='_blank'>only</a>`
|
||||
|
||||
|
||||
Only visible if `cuisine=friture` is shown
|
||||
Only visible if `cuisine=friture` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -391,16 +463,16 @@ Only visible if `cuisine=friture` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Does this amenity have electrical outlets, available to customers when they are inside?**
|
||||
The question is Does this amenity have electrical outlets, available to customers when they are inside?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dyes' target='_blank'>yes</a>
|
||||
- **There are a few domestic sockets available to customers seated indoors, where they can charge their electronics** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dlimited' target='_blank'>limited</a>
|
||||
- **There are no sockets available indoors to customers, but charging might be possible if the staff is asked** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask' target='_blank'>ask</a>
|
||||
- **There are a no domestic sockets available to customers seated indoors** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno' target='_blank'>no</a>
|
||||
- There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dyes' target='_blank'>yes</a>`
|
||||
- There are a few domestic sockets available to customers seated indoors, where they can charge their electronics corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dlimited' target='_blank'>limited</a>`
|
||||
- There are no sockets available indoors to customers, but charging might be possible if the staff is asked corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask' target='_blank'>ask</a>`
|
||||
- There are a no domestic sockets available to customers seated indoors corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -409,16 +481,16 @@ The question is **Does this amenity have electrical outlets, available to custom
|
|||
|
||||
|
||||
|
||||
The question is **Are dogs allowed in this business?**
|
||||
The question is Are dogs allowed in this business?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Dogs are allowed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes' target='_blank'>yes</a>
|
||||
- **Dogs are <b>not</b> allowed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno' target='_blank'>no</a>
|
||||
- **Dogs are allowed, but they have to be leashed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed' target='_blank'>leashed</a>
|
||||
- **Dogs are allowed and can run around freely** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed' target='_blank'>unleashed</a>
|
||||
- Dogs are allowed corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes' target='_blank'>yes</a>`
|
||||
- Dogs are <b>not</b> allowed corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno' target='_blank'>no</a>`
|
||||
- Dogs are allowed, but they have to be leashed corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed' target='_blank'>leashed</a>`
|
||||
- Dogs are allowed and can run around freely corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed' target='_blank'>unleashed</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -427,7 +499,9 @@ The question is **Are dogs allowed in this business?**
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
Shows the reviews module (including the possibility to leave a review)
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -39,11 +39,11 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture' target='_blank'>friture</a>
|
||||
- cuisine~^(.*;)?friture(;.*)?$
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfast_food' target='_blank'>fast_food</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant' target='_blank'>restaurant</a>
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22cuisine%22%3D%22friture%22%5D%5B%22amenity%22%3D%22fast_food%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22cuisine%22%3D%22friture%22%5D%5B%22amenity%22%3D%22restaurant%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22fast_food%22%5D%5B%22cuisine%22~%22%5E(.*%3B)%3Ffriture(%3B.*)%3F%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22cuisine%22~%22%5E(.*%3B)%3Ffriture(%3B.*)%3F%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
|
||||
|
||||
|
||||
|
@ -52,12 +52,15 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||
|
@ -67,6 +70,7 @@ attribute | type | values which are supported by this layer
|
|||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
|
@ -84,8 +88,35 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### level
|
||||
|
||||
|
||||
|
||||
The question is On what level is this feature located?
|
||||
|
||||
This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level)
|
||||
|
||||
This is rendered with Located on the {level}th floor
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Located underground corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- Located on the ground floor corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>`
|
||||
- Located on the ground floor corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- Located on the first floor corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D1' target='_blank'>1</a>`
|
||||
- Located on the first basement level corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D-1' target='_blank'>-1</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -94,10 +125,13 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What is the name of this restaurant?**
|
||||
The question is What is the name of this restaurant?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
This is rendered with `The name of this restaurant is {name}`
|
||||
|
||||
This is rendered with The name of this restaurant is {name}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -105,14 +139,14 @@ This is rendered with `The name of this restaurant is {name}`
|
|||
|
||||
|
||||
|
||||
The question is **What type of business is this?**
|
||||
The question is What type of business is this?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This is a fastfood-business, focussed on fast service. If seating is available, these are rather limited and functional.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfast_food' target='_blank'>fast_food</a>
|
||||
- **A <b>restaurant</b>, focussed on creating a nice experience where one is served at the table** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant' target='_blank'>restaurant</a>
|
||||
- This is a fastfood-business, focused on fast service. If seating is available, these are rather limited and functional. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfast_food' target='_blank'>fast_food</a>`
|
||||
- A <b>restaurant</b>, focused on creating a nice experience where one is served at the table corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant' target='_blank'>restaurant</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -121,10 +155,13 @@ The question is **What type of business is this?**
|
|||
|
||||
|
||||
|
||||
The question is **What are the opening hours of {title()}?**
|
||||
The question is What are the opening hours of {title()}?
|
||||
|
||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||
|
||||
This is rendered with <h3>Opening hours</h3>{opening_hours_table(opening_hours)}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -132,14 +169,18 @@ This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)
|
|||
|
||||
|
||||
|
||||
The question is **What is the website of {title()}?**
|
||||
The question is What is the website of {title()}?
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||
|
||||
This is rendered with <a href='{website}' target='_blank'>{website}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='{contact:website}' target='_blank'>{contact:website}</a> corresponds with `contact:website~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -148,14 +189,18 @@ This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **What is the email address of {title()}?**
|
||||
The question is What is the email address of {title()}?
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||
|
||||
This is rendered with <a href='mailto:{email}' target='_blank'>{email}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='mailto:{contact:email}' target='_blank'>{contact:email}</a> corresponds with `contact:email~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -164,14 +209,18 @@ This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **What is the phone number of {title()}?**
|
||||
The question is What is the phone number of {title()}?
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||
|
||||
This is rendered with <a href='tel:{phone}'>{phone}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='tel:{contact:phone}'>{contact:phone}</a> corresponds with `contact:phone~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -180,14 +229,16 @@ This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **Which methods of payment are accepted here?**
|
||||
The question is Which methods of payment are accepted here?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Cash is accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dno' target='_blank'>no</a>
|
||||
- **Payment cards are accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||
- Cash is accepted here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dno' target='_blank'>no</a>
|
||||
- Payment cards are accepted here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
@ -196,16 +247,16 @@ The question is **Which methods of payment are accepted here?**
|
|||
|
||||
|
||||
|
||||
The question is **Is this place accessible with a wheelchair?**
|
||||
The question is Is this place accessible with a wheelchair?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This place is specially adapted for wheelchair users** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>
|
||||
- **This place is easily reachable with a wheelchair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>
|
||||
- **It is possible to reach this place in a wheelchair, but it is not easy** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited' target='_blank'>limited</a>
|
||||
- **This place is not reachable with a wheelchair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a>
|
||||
- This place is specially adapted for wheelchair users corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>`
|
||||
- This place is easily reachable with a wheelchair corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>`
|
||||
- It is possible to reach this place in a wheelchair, but it is not easy corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited' target='_blank'>limited</a>`
|
||||
- This place is not reachable with a wheelchair corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -214,28 +265,31 @@ The question is **Is this place accessible with a wheelchair?**
|
|||
|
||||
|
||||
|
||||
The question is **Which food is served here?**
|
||||
The question is Which food is served here?
|
||||
|
||||
This rendering asks information about the property [cuisine](https://wiki.openstreetmap.org/wiki/Key:cuisine)
|
||||
This is rendered with `This place mostly serves {cuisine}`
|
||||
|
||||
This is rendered with This place mostly serves {cuisine}
|
||||
|
||||
|
||||
|
||||
- **This is a pizzeria** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpizza' target='_blank'>pizza</a>
|
||||
- **This is a friture** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture' target='_blank'>friture</a>
|
||||
- **Mainly serves pasta** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpasta' target='_blank'>pasta</a>
|
||||
- **This is kebab shop** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dkebab' target='_blank'>kebab</a>
|
||||
- **This is a sandwichbar** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsandwich' target='_blank'>sandwich</a>
|
||||
- **Burgers are served here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dburger' target='_blank'>burger</a>
|
||||
- **Sushi is served here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsushi' target='_blank'>sushi</a>
|
||||
- **Coffee is served here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dcoffee' target='_blank'>coffee</a>
|
||||
- **This is an italian restaurant (which serves more then pasta and pizza)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Ditalian' target='_blank'>italian</a>
|
||||
- **French dishes are served here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfrench' target='_blank'>french</a>
|
||||
- **Chinese dishes are served here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchinese' target='_blank'>chinese</a>
|
||||
- **Greek dishes are served here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dgreek' target='_blank'>greek</a>
|
||||
- **Indian dishes are served here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dindian' target='_blank'>indian</a>
|
||||
- **Turkish dishes are served here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dturkish' target='_blank'>turkish</a>
|
||||
- **Thai dishes are served here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dthai' target='_blank'>thai</a>
|
||||
|
||||
|
||||
- This is a pizzeria corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpizza' target='_blank'>pizza</a>`
|
||||
- This is a friture corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture' target='_blank'>friture</a>`
|
||||
- Mainly serves pasta corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpasta' target='_blank'>pasta</a>`
|
||||
- This is kebab shop corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dkebab' target='_blank'>kebab</a>`
|
||||
- This is a sandwichbar corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsandwich' target='_blank'>sandwich</a>`
|
||||
- Burgers are served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dburger' target='_blank'>burger</a>`
|
||||
- Sushi is served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsushi' target='_blank'>sushi</a>`
|
||||
- Coffee is served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dcoffee' target='_blank'>coffee</a>`
|
||||
- This is an italian restaurant (which serves more then pasta and pizza) corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Ditalian' target='_blank'>italian</a>`
|
||||
- French dishes are served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfrench' target='_blank'>french</a>`
|
||||
- Chinese dishes are served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchinese' target='_blank'>chinese</a>`
|
||||
- Greek dishes are served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dgreek' target='_blank'>greek</a>`
|
||||
- Indian dishes are served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dindian' target='_blank'>indian</a>`
|
||||
- Turkish dishes are served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dturkish' target='_blank'>turkish</a>`
|
||||
- Thai dishes are served here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dthai' target='_blank'>thai</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -244,15 +298,31 @@ This is rendered with `This place mostly serves {cuisine}`
|
|||
|
||||
|
||||
|
||||
The question is **Does this place offer takea-way?**
|
||||
The question is Does this place offer take-away?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This is a take-away only business** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:takeaway' target='_blank'>takeaway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Donly' target='_blank'>only</a>
|
||||
- **Take-away is possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:takeaway' target='_blank'>takeaway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dyes' target='_blank'>yes</a>
|
||||
- **Take-away is not possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:takeaway' target='_blank'>takeaway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dno' target='_blank'>no</a>
|
||||
- This is a take-away only business corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:takeaway' target='_blank'>takeaway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Donly' target='_blank'>only</a>`
|
||||
- Take-away is possible here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:takeaway' target='_blank'>takeaway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dyes' target='_blank'>yes</a>`
|
||||
- Take-away is not possible here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:takeaway' target='_blank'>takeaway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### delivery
|
||||
|
||||
|
||||
|
||||
The question is Delivers {title()} their food at home?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This business does home delivery (eventually via a third party) corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:delivery' target='_blank'>delivery</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dyes' target='_blank'>yes</a>`
|
||||
- This business does not deliver at home corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:delivery' target='_blank'>delivery</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:delivery%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -261,16 +331,16 @@ The question is **Does this place offer takea-way?**
|
|||
|
||||
|
||||
|
||||
The question is **Does this restaurant have a vegetarian option?**
|
||||
The question is Does this restaurant have a vegetarian option?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **No vegetarian options are available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno' target='_blank'>no</a>
|
||||
- **Some vegetarian options are available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited' target='_blank'>limited</a>
|
||||
- **Vegetarian options are available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes' target='_blank'>yes</a>
|
||||
- **All dishes are vegetarian** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Donly' target='_blank'>only</a>
|
||||
- No vegetarian options are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno' target='_blank'>no</a>`
|
||||
- Some vegetarian options are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited' target='_blank'>limited</a>`
|
||||
- Vegetarian options are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes' target='_blank'>yes</a>`
|
||||
- All dishes are vegetarian corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Donly' target='_blank'>only</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -279,16 +349,16 @@ The question is **Does this restaurant have a vegetarian option?**
|
|||
|
||||
|
||||
|
||||
The question is **Does this business serve vegan meals?**
|
||||
The question is Does this business serve vegan meals?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **No vegan options available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno' target='_blank'>no</a>
|
||||
- **Some vegan options are available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited' target='_blank'>limited</a>
|
||||
- **Vegan options are available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes' target='_blank'>yes</a>
|
||||
- **All dishes are vegan** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Donly' target='_blank'>only</a>
|
||||
- No vegan options available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno' target='_blank'>no</a>`
|
||||
- Some vegan options are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited' target='_blank'>limited</a>`
|
||||
- Vegan options are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes' target='_blank'>yes</a>`
|
||||
- All dishes are vegan corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Donly' target='_blank'>only</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -297,16 +367,16 @@ The question is **Does this business serve vegan meals?**
|
|||
|
||||
|
||||
|
||||
The question is **Does this restaurant offer a halal menu?**
|
||||
The question is Does this restaurant offer a halal menu?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **There are no halal options available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dno' target='_blank'>no</a>
|
||||
- **There is a small halal menu** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dlimited' target='_blank'>limited</a>
|
||||
- **There is a halal menu** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dyes' target='_blank'>yes</a>
|
||||
- **Only halal options are available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Donly' target='_blank'>only</a>
|
||||
- There are no halal options available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dno' target='_blank'>no</a>`
|
||||
- There is a small halal menu corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dlimited' target='_blank'>limited</a>`
|
||||
- There is a halal menu corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dyes' target='_blank'>yes</a>`
|
||||
- Only halal options are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Donly' target='_blank'>only</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -315,18 +385,18 @@ The question is **Does this restaurant offer a halal menu?**
|
|||
|
||||
|
||||
|
||||
The question is **Does this fries shop have vegetarian snacks?**
|
||||
The question is Does this fries shop have vegetarian snacks?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Vegetarian snacks are available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes' target='_blank'>yes</a>
|
||||
- **Only a small selection of snacks are vegetarian** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited' target='_blank'>limited</a>
|
||||
- **No vegetarian snacks are available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno' target='_blank'>no</a>
|
||||
- Vegetarian snacks are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes' target='_blank'>yes</a>`
|
||||
- Only a small selection of snacks are vegetarian corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited' target='_blank'>limited</a>`
|
||||
- No vegetarian snacks are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
Only visible if `cuisine=friture` is shown
|
||||
Only visible if `cuisine=friture` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -334,18 +404,18 @@ Only visible if `cuisine=friture` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Does this fries shop have vegan snacks?**
|
||||
The question is Does this fries shop have vegan snacks?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Vegan snacks are available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes' target='_blank'>yes</a>
|
||||
- **A small selection of vegan snacks are available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited' target='_blank'>limited</a>
|
||||
- **No vegan snacks are available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno' target='_blank'>no</a>
|
||||
- Vegan snacks are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes' target='_blank'>yes</a>`
|
||||
- A small selection of vegan snacks are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited' target='_blank'>limited</a>`
|
||||
- No vegan snacks are available corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
Only visible if `cuisine=friture` is shown
|
||||
Only visible if `cuisine=friture` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -353,17 +423,17 @@ Only visible if `cuisine=friture` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Does this fries shop use vegetable or animal cooking?**
|
||||
The question is Does this fries shop use vegetable or animal oil for cooking?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Vegetable oil** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:friture:oil' target='_blank'>friture:oil</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Dvegetable' target='_blank'>vegetable</a>
|
||||
- **Animal oil** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:friture:oil' target='_blank'>friture:oil</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Danimal' target='_blank'>animal</a>
|
||||
- The frying is done with vegetable oil corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:friture:oil' target='_blank'>friture:oil</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Dvegetable' target='_blank'>vegetable</a>`
|
||||
- The frying is done with animal oil corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:friture:oil' target='_blank'>friture:oil</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Danimal' target='_blank'>animal</a>`
|
||||
|
||||
|
||||
Only visible if `cuisine=friture` is shown
|
||||
Only visible if `cuisine=friture` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -371,18 +441,18 @@ Only visible if `cuisine=friture` is shown
|
|||
|
||||
|
||||
|
||||
The question is **If you bring your own container (such as a cooking pot and small pots), is it used to package your order?<br/>**
|
||||
The question is If you bring your own container (such as a cooking pot and small pots), is it used to package your order?<br/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **You can bring <b>your own containers</b> to get your order, saving on single-use packaging material and thus waste** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept' target='_blank'>reusable_packaging:accept</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dyes' target='_blank'>yes</a>
|
||||
- **Bringing your own container is <b>not allowed</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept' target='_blank'>reusable_packaging:accept</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dno' target='_blank'>no</a>
|
||||
- **You <b>must</b> bring your own container to order here.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept' target='_blank'>reusable_packaging:accept</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Donly' target='_blank'>only</a>
|
||||
- You can bring <b>your own containers</b> to get your order, saving on single-use packaging material and thus waste corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept' target='_blank'>reusable_packaging:accept</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dyes' target='_blank'>yes</a>`
|
||||
- Bringing your own container is <b>not allowed</b> corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept' target='_blank'>reusable_packaging:accept</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dno' target='_blank'>no</a>`
|
||||
- You <b>must</b> bring your own container to order here. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept' target='_blank'>reusable_packaging:accept</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Donly' target='_blank'>only</a>`
|
||||
|
||||
|
||||
Only visible if `cuisine=friture` is shown
|
||||
Only visible if `cuisine=friture` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -390,16 +460,16 @@ Only visible if `cuisine=friture` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Does this amenity have electrical outlets, available to customers when they are inside?**
|
||||
The question is Does this amenity have electrical outlets, available to customers when they are inside?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dyes' target='_blank'>yes</a>
|
||||
- **There are a few domestic sockets available to customers seated indoors, where they can charge their electronics** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dlimited' target='_blank'>limited</a>
|
||||
- **There are no sockets available indoors to customers, but charging might be possible if the staff is asked** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask' target='_blank'>ask</a>
|
||||
- **There are a no domestic sockets available to customers seated indoors** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno' target='_blank'>no</a>
|
||||
- There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dyes' target='_blank'>yes</a>`
|
||||
- There are a few domestic sockets available to customers seated indoors, where they can charge their electronics corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dlimited' target='_blank'>limited</a>`
|
||||
- There are no sockets available indoors to customers, but charging might be possible if the staff is asked corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask' target='_blank'>ask</a>`
|
||||
- There are a no domestic sockets available to customers seated indoors corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -408,16 +478,16 @@ The question is **Does this amenity have electrical outlets, available to custom
|
|||
|
||||
|
||||
|
||||
The question is **Are dogs allowed in this business?**
|
||||
The question is Are dogs allowed in this business?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Dogs are allowed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes' target='_blank'>yes</a>
|
||||
- **Dogs are <b>not</b> allowed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno' target='_blank'>no</a>
|
||||
- **Dogs are allowed, but they have to be leashed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed' target='_blank'>leashed</a>
|
||||
- **Dogs are allowed and can run around freely** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed' target='_blank'>unleashed</a>
|
||||
- Dogs are allowed corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes' target='_blank'>yes</a>`
|
||||
- Dogs are <b>not</b> allowed corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno' target='_blank'>no</a>`
|
||||
- Dogs are allowed, but they have to be leashed corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed' target='_blank'>leashed</a>`
|
||||
- Dogs are allowed and can run around freely corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed' target='_blank'>unleashed</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -426,7 +496,9 @@ The question is **Are dogs allowed in this business?**
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
Shows the reviews module (including the possibility to leave a review)
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -436,7 +508,9 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
Show the images block at this location
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -446,7 +520,9 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
Shows a small map with the feature. Added by default to every popup
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -70,7 +72,7 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -80,7 +82,9 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -90,14 +94,17 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **Whom is remembered by this ghost bike?<span class='question-subtext'><br/>Please respect privacy - only fill out the name if it is widely published or marked on the cycle. Opt to leave out the family name.</span>**
|
||||
The question is Whom is remembered by this ghost bike?<span class='question-subtext'><br/>Please respect privacy - only fill out the name if it is widely published or marked on the cycle. Opt to leave out the family name.</span>
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
This is rendered with `In remembrance of {name}`
|
||||
|
||||
This is rendered with In remembrance of {name}
|
||||
|
||||
|
||||
|
||||
- **No name is marked on the bike** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
- No name is marked on the bike corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -106,10 +113,13 @@ This is rendered with `In remembrance of {name}`
|
|||
|
||||
|
||||
|
||||
The question is **On what webpage can one find more information about the Ghost bike or the accident?**
|
||||
The question is On what webpage can one find more info about the ghost bike or the accident?
|
||||
|
||||
This rendering asks information about the property [source](https://wiki.openstreetmap.org/wiki/Key:source)
|
||||
This is rendered with `<a href='{source}' target='_blank'>More information is available</a>`
|
||||
|
||||
This is rendered with <a href='{source}' target='_blank'>More info available</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -117,10 +127,13 @@ This is rendered with `<a href='{source}' target='_blank'>More information is av
|
|||
|
||||
|
||||
|
||||
The question is **What is the inscription on this Ghost bike?**
|
||||
The question is What is the inscription on this Ghost bike?
|
||||
|
||||
This rendering asks information about the property [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription)
|
||||
This is rendered with `<i>{inscription}</i>`
|
||||
|
||||
This is rendered with <i>{inscription}</i>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -128,9 +141,12 @@ This is rendered with `<i>{inscription}</i>`
|
|||
|
||||
|
||||
|
||||
The question is **When was this Ghost bike installed?**
|
||||
The question is When was this Ghost bike installed?
|
||||
|
||||
This rendering asks information about the property [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date)
|
||||
This is rendered with `Placed on {start_date}`
|
||||
|
||||
This is rendered with Placed on {start_date}
|
||||
|
||||
|
||||
|
||||
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)
|
155
Docs/Layers/governments.md
Normal file
155
Docs/Layers/governments.md
Normal file
|
@ -0,0 +1,155 @@
|
|||
|
||||
|
||||
governments
|
||||
=============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/governments/government.svg' height="100px">
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [onwheels](https://mapcomplete.osm.be/onwheels)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:office' target='_blank'>office</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:office%3Dgovernment' target='_blank'>government</a>
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22office%22%3D%22government%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### phone
|
||||
|
||||
|
||||
|
||||
The question is What is the phone number of {title()}?
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
|
||||
This is rendered with <a href='tel:{phone}'>{phone}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='tel:{contact:phone}'>{contact:phone}</a> corresponds with `contact:phone~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### email
|
||||
|
||||
|
||||
|
||||
The question is What is the email address of {title()}?
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
|
||||
This is rendered with <a href='mailto:{email}' target='_blank'>{email}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='mailto:{contact:email}' target='_blank'>{contact:email}</a> corresponds with `contact:email~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### website
|
||||
|
||||
|
||||
|
||||
The question is What is the website of {title()}?
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
|
||||
This is rendered with <a href='{website}' target='_blank'>{website}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='{contact:website}' target='_blank'>{contact:website}</a> corresponds with `contact:website~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### name
|
||||
|
||||
|
||||
|
||||
The question is What is the name of this Governmental Office?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
|
||||
This is rendered with This Governmental Office is called {name}
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/governments/governments.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/governments/governments.json)
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/playgrounds/playground.svg' height="100px">
|
||||
|
||||
Searches for all accessible grass patches within public parks - these are 'groenzones'"
|
||||
Searches for all accessible grass patches within public parks - these are 'groenzones'
|
||||
|
||||
|
||||
|
||||
|
@ -19,17 +19,6 @@ Searches for all accessible grass patches within public parks - these are 'groen
|
|||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
@ -57,7 +46,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -67,7 +58,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -77,7 +68,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
|
294
Docs/Layers/hackerspace.md
Normal file
294
Docs/Layers/hackerspace.md
Normal file
|
@ -0,0 +1,294 @@
|
|||
|
||||
|
||||
hackerspace
|
||||
=============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/hackerspaces/glider.svg' height="100px">
|
||||
|
||||
Hackerspace
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **8** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [hackerspaces](https://mapcomplete.osm.be/hackerspaces)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dhackerspace' target='_blank'>hackerspace</a>
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22leisure%22%3D%22hackerspace%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/start_date#values) [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) | [date](../SpecialInputElements.md#date) |
|
||||
|
||||
|
||||
|
||||
|
||||
### is_makerspace
|
||||
|
||||
|
||||
|
||||
The question is Is this a hackerspace or a makerspace?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This is a makerspace corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:hackerspace' target='_blank'>hackerspace</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:hackerspace%3Dmakerspace' target='_blank'>makerspace</a>`
|
||||
- This is a traditional (software oriented) hackerspace corresponds with ``
|
||||
|
||||
|
||||
|
||||
|
||||
### hackerspaces-name
|
||||
|
||||
|
||||
|
||||
The question is What is the name of this hackerspace?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
|
||||
This is rendered with This hackerspace is named <b>{name}</b>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### website
|
||||
|
||||
|
||||
|
||||
The question is What is the website of {title()}?
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
|
||||
This is rendered with <a href='{website}' target='_blank'>{website}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='{contact:website}' target='_blank'>{contact:website}</a> corresponds with `contact:website~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### email
|
||||
|
||||
|
||||
|
||||
The question is What is the email address of {title()}?
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
|
||||
This is rendered with <a href='mailto:{email}' target='_blank'>{email}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='mailto:{contact:email}' target='_blank'>{contact:email}</a> corresponds with `contact:email~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### phone
|
||||
|
||||
|
||||
|
||||
The question is What is the phone number of {title()}?
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
|
||||
This is rendered with <a href='tel:{phone}'>{phone}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='tel:{contact:phone}'>{contact:phone}</a> corresponds with `contact:phone~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### hackerspaces-opening_hours
|
||||
|
||||
|
||||
|
||||
The question is When is this hackerspace opened?
|
||||
|
||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||
|
||||
This is rendered with {opening_hours_table()}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Opened 24/7 corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### hackerspaces-service-3dprinter
|
||||
|
||||
|
||||
|
||||
The question is Is a 3D-printer available at this hackerspace?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- There is a 3D-printer available at this hackerspace corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:3dprinter' target='_blank'>service:3dprinter</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:3dprinter%3Dyes' target='_blank'>yes</a>`
|
||||
- There is no 3D-printer available at this hackerspace corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:3dprinter' target='_blank'>service:3dprinter</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:3dprinter%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### hackerspaces-service-lasercutter
|
||||
|
||||
|
||||
|
||||
The question is Is a laser cutter available at this hackerspace?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- There is a laser cutter available at this hackerspace corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:lasercutter' target='_blank'>service:lasercutter</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:lasercutter%3Dyes' target='_blank'>yes</a>`
|
||||
- There is no laser cutter available at this hackerspace corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:lasercutter' target='_blank'>service:lasercutter</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:lasercutter%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### hackerspaces-service-cnc_drilling_machine
|
||||
|
||||
|
||||
|
||||
The question is Is a CNC drill available at this hackerspace?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- There is a CNC drill available at this hackerspace corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:cnc_drilling_machine' target='_blank'>service:cnc_drilling_machine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:cnc_drilling_machine%3Dyes' target='_blank'>yes</a>`
|
||||
- There is no CNC drill available at this hackerspace corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:service:cnc_drilling_machine' target='_blank'>service:cnc_drilling_machine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:cnc_drilling_machine%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### reviews
|
||||
|
||||
|
||||
|
||||
Shows the reviews module (including the possibility to leave a review)
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### wheelchair-access
|
||||
|
||||
|
||||
|
||||
The question is Is this place accessible with a wheelchair?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This place is specially adapted for wheelchair users corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>`
|
||||
- This place is easily reachable with a wheelchair corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>`
|
||||
- It is possible to reach this place in a wheelchair, but it is not easy corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited' target='_blank'>limited</a>`
|
||||
- This place is not reachable with a wheelchair corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### hs-club-mate
|
||||
|
||||
|
||||
|
||||
The question is Does this hackerspace serve Club Mate?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This hackerspace serves club mate corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:drink:club-mate' target='_blank'>drink:club-mate</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:drink:club-mate%3Dyes' target='_blank'>yes</a>`
|
||||
- This hackerspace does not serve club mate corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:drink:club-mate' target='_blank'>drink:club-mate</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:drink:club-mate%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### hackerspaces-start_date
|
||||
|
||||
|
||||
|
||||
The question is When was this hackerspace founded?
|
||||
|
||||
This rendering asks information about the property [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date)
|
||||
|
||||
This is rendered with This hackerspace was founded at {start_date}
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/hackerspace/hackerspace.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/hackerspace/hackerspace.json)
|
|
@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -68,7 +70,7 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -78,10 +80,13 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What is the Wikidata-item that this object is named after?**
|
||||
The question is What is the Wikidata-item that this object is named after?
|
||||
|
||||
This rendering asks information about the property [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata)
|
||||
This is rendered with `<h3>Wikipedia article of the name giver</h3>{wikipedia(name:etymology:wikidata):max-height:20rem}`
|
||||
|
||||
This is rendered with <h3>Wikipedia article of the name giver</h3>{wikipedia(name:etymology:wikidata):max-height:20rem}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -89,7 +94,7 @@ This is rendered with `<h3>Wikipedia article of the name giver</h3>{wikipedia(na
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -99,14 +104,17 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What is this object named after?<br/><span class='subtle'>This might be written on the street name sign</span>**
|
||||
The question is What is this object named after?<br/><span class='subtle'>This might be written on the street name sign</span>
|
||||
|
||||
This rendering asks information about the property [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology)
|
||||
This is rendered with `Named after {name:etymology}`
|
||||
|
||||
This is rendered with Named after {name:etymology}
|
||||
|
||||
|
||||
|
||||
- **The origin of this name is unknown in all literature** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:name:etymology' target='_blank'>name:etymology</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown' target='_blank'>unknown</a>
|
||||
|
||||
|
||||
- The origin of this name is unknown in all literature corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:name:etymology' target='_blank'>name:etymology</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown' target='_blank'>unknown</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -115,7 +123,7 @@ This is rendered with `Named after {name:etymology}`
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -125,7 +133,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -135,7 +143,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -145,7 +153,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -155,10 +163,10 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
Only visible if `wikidata~^..*$` is shown
|
||||
Only visible if `wikidata~^..*$` is shown
|
||||
|
||||
This document is autogenerated from [assets/themes/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/etymology/etymology.json)
|
144
Docs/Layers/hospital.md
Normal file
144
Docs/Layers/hospital.md
Normal file
|
@ -0,0 +1,144 @@
|
|||
|
||||
|
||||
hospital
|
||||
==========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/hospital/hospital.svg' height="100px">
|
||||
|
||||
A layer showing hospital grounds
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **12** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [healthcare](https://mapcomplete.osm.be/healthcare)
|
||||
- [onwheels](https://mapcomplete.osm.be/onwheels)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dhospital' target='_blank'>hospital</a>
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22hospital%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||
|
||||
|
||||
|
||||
|
||||
### name
|
||||
|
||||
|
||||
|
||||
The question is What is the name of this hospital?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
|
||||
This is rendered with This hospital is called {name}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### phone
|
||||
|
||||
|
||||
|
||||
The question is What is the phone number of {title()}?
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
|
||||
This is rendered with <a href='tel:{phone}'>{phone}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='tel:{contact:phone}'>{contact:phone}</a> corresponds with `contact:phone~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### email
|
||||
|
||||
|
||||
|
||||
The question is What is the email address of {title()}?
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
|
||||
This is rendered with <a href='mailto:{email}' target='_blank'>{email}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='mailto:{contact:email}' target='_blank'>{contact:email}</a> corresponds with `contact:email~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### website
|
||||
|
||||
|
||||
|
||||
The question is What is the website of {title()}?
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
|
||||
This is rendered with <a href='{website}' target='_blank'>{website}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='{contact:website}' target='_blank'>{contact:website}</a> corresponds with `contact:website~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/hospital/hospital.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/hospital/hospital.json)
|
186
Docs/Layers/hotel.md
Normal file
186
Docs/Layers/hotel.md
Normal file
|
@ -0,0 +1,186 @@
|
|||
|
||||
|
||||
hotel
|
||||
=======
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/hotel/hotel.svg' height="100px">
|
||||
|
||||
Layer showing all hotels
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **13** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [onwheels](https://mapcomplete.osm.be/onwheels)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dhotel' target='_blank'>hotel</a>
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22tourism%22%3D%22hotel%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### reviews
|
||||
|
||||
|
||||
|
||||
Shows the reviews module (including the possibility to leave a review)
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### name
|
||||
|
||||
|
||||
|
||||
The question is What is the name of this hotel?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
|
||||
This is rendered with This hotel is called {name}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### phone
|
||||
|
||||
|
||||
|
||||
The question is What is the phone number of {title()}?
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
|
||||
This is rendered with <a href='tel:{phone}'>{phone}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='tel:{contact:phone}'>{contact:phone}</a> corresponds with `contact:phone~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### email
|
||||
|
||||
|
||||
|
||||
The question is What is the email address of {title()}?
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
|
||||
This is rendered with <a href='mailto:{email}' target='_blank'>{email}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='mailto:{contact:email}' target='_blank'>{contact:email}</a> corresponds with `contact:email~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### website
|
||||
|
||||
|
||||
|
||||
The question is What is the website of {title()}?
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
|
||||
This is rendered with <a href='{website}' target='_blank'>{website}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='{contact:website}' target='_blank'>{contact:website}</a> corresponds with `contact:website~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### wheelchair-access
|
||||
|
||||
|
||||
|
||||
The question is Is this place accessible with a wheelchair?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This place is specially adapted for wheelchair users corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>`
|
||||
- This place is easily reachable with a wheelchair corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>`
|
||||
- It is possible to reach this place in a wheelchair, but it is not easy corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited' target='_blank'>limited</a>`
|
||||
- This place is not reachable with a wheelchair corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/hotel/hotel.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/hotel/hotel.json)
|
|
@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -69,16 +71,20 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
The question is **What color is the hydrant?**
|
||||
The question is What color is the hydrant?
|
||||
|
||||
This rendering asks information about the property [colour](https://wiki.openstreetmap.org/wiki/Key:colour)
|
||||
This is rendered with `The hydrant color is {colour}`
|
||||
|
||||
This is rendered with The hydrant color is {colour}
|
||||
|
||||
|
||||
|
||||
- **The hydrant color is unknown.** corresponds with _This option cannot be chosen as answer_
|
||||
- **The hydrant color is yellow.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow' target='_blank'>yellow</a>
|
||||
- **The hydrant color is red.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred' target='_blank'>red</a>
|
||||
|
||||
|
||||
- The hydrant color is unknown. corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- The hydrant color is yellow. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow' target='_blank'>yellow</a>`
|
||||
- The hydrant color is red. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred' target='_blank'>red</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -87,18 +93,22 @@ This is rendered with `The hydrant color is {colour}`
|
|||
|
||||
|
||||
|
||||
The question is **What type of hydrant is it?**
|
||||
The question is What type of hydrant is it?
|
||||
|
||||
This rendering asks information about the property [fire_hydrant:type](https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type)
|
||||
This is rendered with ` Hydrant type: {fire_hydrant:type}`
|
||||
|
||||
This is rendered with Hydrant type: {fire_hydrant:type}
|
||||
|
||||
|
||||
|
||||
- **The hydrant type is unknown.** corresponds with _This option cannot be chosen as answer_
|
||||
- **Pillar type.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type' target='_blank'>fire_hydrant:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dpillar' target='_blank'>pillar</a>
|
||||
- **Pipe type.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type' target='_blank'>fire_hydrant:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dpipe' target='_blank'>pipe</a>
|
||||
- **Wall type.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type' target='_blank'>fire_hydrant:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dwall' target='_blank'>wall</a>
|
||||
- **Underground type.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type' target='_blank'>fire_hydrant:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dunderground' target='_blank'>underground</a>
|
||||
|
||||
|
||||
- The hydrant type is unknown. corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- Pillar type. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type' target='_blank'>fire_hydrant:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dpillar' target='_blank'>pillar</a>`
|
||||
- Pipe type. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type' target='_blank'>fire_hydrant:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dpipe' target='_blank'>pipe</a>`
|
||||
- Wall type. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type' target='_blank'>fire_hydrant:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dwall' target='_blank'>wall</a>`
|
||||
- Underground type. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type' target='_blank'>fire_hydrant:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dunderground' target='_blank'>underground</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -107,15 +117,15 @@ This is rendered with ` Hydrant type: {fire_hydrant:type}`
|
|||
|
||||
|
||||
|
||||
The question is **Is this hydrant still working?**
|
||||
The question is Is this hydrant still working?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **The hydrant is (fully or partially) working** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:emergency' target='_blank'>emergency</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:emergency%3Dfire_hydrant' target='_blank'>fire_hydrant</a>
|
||||
- **The hydrant is unavailable** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:disused:emergency' target='_blank'>disused:emergency</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:disused:emergency%3Dfire_hydrant' target='_blank'>fire_hydrant</a>
|
||||
- **The hydrant has been removed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:removed:emergency' target='_blank'>removed:emergency</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:removed:emergency%3Dfire_hydrant' target='_blank'>fire_hydrant</a>
|
||||
- The hydrant is (fully or partially) working corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:emergency' target='_blank'>emergency</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:emergency%3Dfire_hydrant' target='_blank'>fire_hydrant</a>`
|
||||
- The hydrant is unavailable corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:disused:emergency' target='_blank'>disused:emergency</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:disused:emergency%3Dfire_hydrant' target='_blank'>fire_hydrant</a>`
|
||||
- The hydrant has been removed corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:removed:emergency' target='_blank'>removed:emergency</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:removed:emergency%3Dfire_hydrant' target='_blank'>fire_hydrant</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -124,7 +134,9 @@ The question is **Is this hydrant still working?**
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
|
398
Docs/Layers/id_presets.md
Normal file
398
Docs/Layers/id_presets.md
Normal file
File diff suppressed because one or more lines are too long
94
Docs/Layers/indoors.md
Normal file
94
Docs/Layers/indoors.md
Normal file
|
@ -0,0 +1,94 @@
|
|||
|
||||
|
||||
indoors
|
||||
=========
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
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)
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [indoors](https://mapcomplete.osm.be/indoors)
|
||||
- [onwheels](https://mapcomplete.osm.be/onwheels)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Droom' target='_blank'>room</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Darea' target='_blank'>area</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dwall' target='_blank'>wall</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Ddoor' target='_blank'>door</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dlevel' target='_blank'>level</a>
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22indoor%22%3D%22room%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22indoor%22%3D%22area%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22indoor%22%3D%22wall%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22indoor%22%3D%22door%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22indoor%22%3D%22level%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### ref
|
||||
|
||||
|
||||
|
||||
The question is What is the name of this room?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
|
||||
This is rendered with This room is named {name}
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/indoors/indoors.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/indoors/indoors.json)
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/information_board/board.svg' height="100px">
|
||||
|
||||
A layer showing touristical, road side information boards (e.g. giving information about the landscape, a building, a feature, a map, ...)
|
||||
A layer showing touristical, road side information boards (e.g. giving information about the landscape, a building, a feature, a map, …)
|
||||
|
||||
|
||||
|
||||
|
@ -58,7 +58,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
|
129
Docs/Layers/kerbs.md
Normal file
129
Docs/Layers/kerbs.md
Normal file
|
@ -0,0 +1,129 @@
|
|||
|
||||
|
||||
kerbs
|
||||
=======
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/kerbs/KerbIcon.svg' height="100px">
|
||||
|
||||
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)
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [kerbs_and_crossings](https://mapcomplete.osm.be/kerbs_and_crossings)
|
||||
- [onwheels](https://mapcomplete.osm.be/onwheels)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dkerb' target='_blank'>kerb</a>
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22barrier%22%3D%22kerb%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/kerb:height#values) [kerb:height](https://wiki.openstreetmap.org/wiki/Key:kerb:height) | [pnat](../SpecialInputElements.md#pnat) |
|
||||
|
||||
|
||||
|
||||
|
||||
### kerb-type
|
||||
|
||||
|
||||
|
||||
The question is What is the height of this kerb?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This kerb is raised (>3 cm) corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:kerb' target='_blank'>kerb</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:kerb%3Draised' target='_blank'>raised</a>`
|
||||
- This kerb is lowered (~3 cm) corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:kerb' target='_blank'>kerb</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:kerb%3Dlowered' target='_blank'>lowered</a>`
|
||||
- This kerb is flush (~0cm) corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:kerb' target='_blank'>kerb</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:kerb%3Dflush' target='_blank'>flush</a>`
|
||||
- There is no kerb here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:kerb' target='_blank'>kerb</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:kerb%3Dno' target='_blank'>no</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- There is a kerb of unknown height corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:kerb' target='_blank'>kerb</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:kerb%3Dyes' target='_blank'>yes</a>`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
Only visible if `_geometry:type=Point` is shown
|
||||
|
||||
|
||||
|
||||
### tactile-paving
|
||||
|
||||
|
||||
|
||||
The question is Is there tactile paving at this kerb?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This kerb has tactile paving. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:tactile_paving' target='_blank'>tactile_paving</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dyes' target='_blank'>yes</a>`
|
||||
- This kerb does not have tactile paving. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:tactile_paving' target='_blank'>tactile_paving</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dno' target='_blank'>no</a>`
|
||||
- This kerb has tactile paving, but it is incorrect corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:tactile_paving' target='_blank'>tactile_paving</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dincorrect' target='_blank'>incorrect</a>`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
Only visible if `_geometry:type=Point` is shown
|
||||
|
||||
|
||||
|
||||
### kerb-height
|
||||
|
||||
|
||||
|
||||
The question is What is the height of this kerb?
|
||||
|
||||
This rendering asks information about the property [kerb:height](https://wiki.openstreetmap.org/wiki/Key:kerb:height)
|
||||
|
||||
This is rendered with Kerb height: {kerb:height}
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/kerbs/kerbs.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/kerbs/kerbs.json)
|
192
Docs/Layers/kindergarten_childcare.md
Normal file
192
Docs/Layers/kindergarten_childcare.md
Normal file
|
@ -0,0 +1,192 @@
|
|||
|
||||
|
||||
kindergarten_childcare
|
||||
========================
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [education](https://mapcomplete.osm.be/education)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dchildcare' target='_blank'>childcare</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dkindergarten' target='_blank'>kindergarten</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:isced:level:2011' target='_blank'>isced:level:2011</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:isced:level:2011%3Dearly_childhood' target='_blank'>early_childhood</a>
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22childcare%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22kindergarten%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22isced%3Alevel%3A2011%22%3D%22early_childhood%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [pnat](../SpecialInputElements.md#pnat) |
|
||||
|
||||
|
||||
|
||||
|
||||
### childcare-type
|
||||
|
||||
|
||||
|
||||
The question is What type of facility is this?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This is a kindergarten (also known as <i>preschool</i>) where small kids receive early education. corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dkindergarten' target='_blank'>kindergarten</a>`
|
||||
- This is a childcare facility, such as a nursery or daycare where small kids are looked after. They do not offer an education and are ofter run as private businesses corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dchildcare' target='_blank'>childcare</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### name
|
||||
|
||||
|
||||
|
||||
The question is What is the name of this facility?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
|
||||
This is rendered with This facility is named <b>{name}</b>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### website
|
||||
|
||||
|
||||
|
||||
The question is What is the website of {title()}?
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
|
||||
This is rendered with <a href='{website}' target='_blank'>{website}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='{contact:website}' target='_blank'>{contact:website}</a> corresponds with `contact:website~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### email
|
||||
|
||||
|
||||
|
||||
The question is What is the email address of {title()}?
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
|
||||
This is rendered with <a href='mailto:{email}' target='_blank'>{email}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='mailto:{contact:email}' target='_blank'>{contact:email}</a> corresponds with `contact:email~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### phone
|
||||
|
||||
|
||||
|
||||
The question is What is the phone number of {title()}?
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
|
||||
This is rendered with <a href='tel:{phone}'>{phone}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='tel:{contact:phone}'>{contact:phone}</a> corresponds with `contact:phone~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### opening_hours
|
||||
|
||||
|
||||
|
||||
The question is When is this childcare opened?
|
||||
|
||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||
|
||||
This is rendered with <h3>Opening hours</h3>{opening_hours_table(opening_hours)}
|
||||
|
||||
|
||||
|
||||
Only visible if `amenity=childcare` is shown
|
||||
|
||||
|
||||
|
||||
### capacity
|
||||
|
||||
|
||||
|
||||
The question is How much kids (at most) can be enrolled here?
|
||||
|
||||
This rendering asks information about the property [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity)
|
||||
|
||||
This is rendered with This facility has room for {capacity} kids
|
||||
|
||||
|
||||
|
||||
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)
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **0** and higher
|
||||
- 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`
|
||||
|
||||
|
||||
|
@ -39,12 +39,12 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
- highway~^..*$
|
||||
- lit!~^no$
|
||||
- lit!=no
|
||||
- lit~^..*$
|
||||
- service!~^driveway$
|
||||
- service!=driveway
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22highway%22%5D%5B%22lit%22!~%22%5Eno%24%22%5D%5B%22lit%22%5D%5B%22service%22!~%22%5Edriveway%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%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(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
|
||||
|
||||
|
||||
|
@ -53,7 +53,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -64,20 +66,33 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### lit
|
||||
|
||||
|
||||
|
||||
The question is **Is this street lit?**
|
||||
The question is Is this street lit?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This street is lit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes' target='_blank'>yes</a>
|
||||
- **This street is not lit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno' target='_blank'>no</a>
|
||||
- **This street is lit at night** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dsunset-sunrise' target='_blank'>sunset-sunrise</a>_This option cannot be chosen as answer_
|
||||
- **This street is lit 24/7** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7' target='_blank'>24/7</a>
|
||||
- This street is lit corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes' target='_blank'>yes</a>`
|
||||
- This street is not lit corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno' target='_blank'>no</a>`
|
||||
- This street is lit at night corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dsunset-sunrise' target='_blank'>sunset-sunrise</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- This street is lit 24/7 corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7' target='_blank'>24/7</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -86,7 +101,9 @@ The question is **Is this street lit?**
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
Show the images block at this location
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -96,7 +113,9 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
Shows a small map with the feature. Added by default to every popup
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -53,7 +53,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -69,7 +71,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -79,14 +83,17 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **On which data is this map based?**
|
||||
The question is On which data is this map based?
|
||||
|
||||
This rendering asks information about the property [map_source](https://wiki.openstreetmap.org/wiki/Key:map_source)
|
||||
This is rendered with `This map is based on {map_source}`
|
||||
|
||||
This is rendered with This map is based on {map_source}
|
||||
|
||||
|
||||
|
||||
- **This map is based on OpenStreetMap** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:map_source' target='_blank'>map_source</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source%3DOpenStreetMap' target='_blank'>OpenStreetMap</a>
|
||||
|
||||
|
||||
- This map is based on OpenStreetMap corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:map_source' target='_blank'>map_source</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source%3DOpenStreetMap' target='_blank'>OpenStreetMap</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -95,19 +102,20 @@ This is rendered with `This map is based on {map_source}`
|
|||
|
||||
|
||||
|
||||
The question is **Is the OpenStreetMap-attribution given?**
|
||||
The question is Is the OpenStreetMap-attribution given?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **OpenStreetMap is clearly attributed, including the ODBL-license** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:map_source:attribution' target='_blank'>map_source:attribution</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dyes' target='_blank'>yes</a>
|
||||
- **OpenStreetMap is clearly attributed, but the license is not mentioned** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:map_source:attribution' target='_blank'>map_source:attribution</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dincomplete' target='_blank'>incomplete</a>
|
||||
- **OpenStreetMap wasn't mentioned, but someone put an OpenStreetMap-sticker on it** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:map_source:attribution' target='_blank'>map_source:attribution</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dsticker' target='_blank'>sticker</a>
|
||||
- **There is no attribution at all** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:map_source:attribution' target='_blank'>map_source:attribution</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dnone' target='_blank'>none</a>
|
||||
- **There is no attribution at all** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:map_source:attribution' target='_blank'>map_source:attribution</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dno' target='_blank'>no</a>_This option cannot be chosen as answer_
|
||||
- OpenStreetMap is clearly attributed, including the ODBL-license corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:map_source:attribution' target='_blank'>map_source:attribution</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dyes' target='_blank'>yes</a>`
|
||||
- OpenStreetMap is clearly attributed, but the license is not mentioned corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:map_source:attribution' target='_blank'>map_source:attribution</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dincomplete' target='_blank'>incomplete</a>`
|
||||
- OpenStreetMap wasn't mentioned, but someone put an OpenStreetMap-sticker on it corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:map_source:attribution' target='_blank'>map_source:attribution</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dsticker' target='_blank'>sticker</a>`
|
||||
- There is no attribution at all corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:map_source:attribution' target='_blank'>map_source:attribution</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dnone' target='_blank'>none</a>`
|
||||
- There is no attribution at all corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:map_source:attribution' target='_blank'>map_source:attribution</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dno' target='_blank'>no</a>`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
Only visible if `map_source~^(O|)pen(S|s)treet(M|m)ap$|map_source=osm|map_source=OSM` is shown
|
||||
Only visible if `map_source~^(O|)pen(S|s)treet(M|m)ap$|map_source=osm|map_source=OSM` is shown
|
||||
|
||||
This document is autogenerated from [assets/layers/map/map.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/map/map.json)
|
89
Docs/Layers/maproulette.md
Normal file
89
Docs/Layers/maproulette.md
Normal file
|
@ -0,0 +1,89 @@
|
|||
|
||||
|
||||
maproulette
|
||||
=============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/maproulette/logomark.svg' height="100px">
|
||||
|
||||
Layer showing all tasks in MapRoulette
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **15** and higher
|
||||
- <img src='../warning.svg' height='1rem'/> This layer is loaded from an external source, namely `https://maproulette.org/api/v2/tasks/box/{x_min}/{y_min}/{x_max}/{y_max}`
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- id~^..*$
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22id%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
|
||||
|
||||
|
||||
|
||||
### status
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Task is created corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:status' target='_blank'>status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:status%3D0' target='_blank'>0</a>`
|
||||
- Task is fixed corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:status' target='_blank'>status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:status%3D1' target='_blank'>1</a>`
|
||||
- Task is a false positive corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:status' target='_blank'>status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:status%3D2' target='_blank'>2</a>`
|
||||
- Task is skipped corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:status' target='_blank'>status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:status%3D3' target='_blank'>3</a>`
|
||||
- Task is deleted corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:status' target='_blank'>status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:status%3D4' target='_blank'>4</a>`
|
||||
- Task is already fixed corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:status' target='_blank'>status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:status%3D5' target='_blank'>5</a>`
|
||||
- Task is marked as too hard corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:status' target='_blank'>status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:status%3D6' target='_blank'>6</a>`
|
||||
- Task is disabled corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:status' target='_blank'>status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:status%3D9' target='_blank'>9</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### blurb
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
Only visible if `blurb~^..*$` is shown
|
||||
|
||||
This document is autogenerated from [assets/layers/maproulette/maproulette.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/maproulette/maproulette.json)
|
112
Docs/Layers/maproulette_challenge.md
Normal file
112
Docs/Layers/maproulette_challenge.md
Normal file
|
@ -0,0 +1,112 @@
|
|||
|
||||
|
||||
maproulette_challenge
|
||||
=======================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/maproulette/logomark.svg' height="100px">
|
||||
|
||||
Layer showing tasks of a MapRoulette challenge
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- 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`
|
||||
- <img src='../warning.svg' height='1rem'/> This layer is loaded from an external source, namely `https://maproulette.org/api/v2/challenge/view/27971`
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [onwheels](https://mapcomplete.osm.be/onwheels)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- id~^..*$
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22id%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
|
||||
|
||||
|
||||
|
||||
### details
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### status
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Task is created corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:mr_taskStatus' target='_blank'>mr_taskStatus</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:mr_taskStatus%3DCreated' target='_blank'>Created</a>`
|
||||
- Task is fixed corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:mr_taskStatus' target='_blank'>mr_taskStatus</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:mr_taskStatus%3DFixed' target='_blank'>Fixed</a>`
|
||||
- Task is a false positive corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:mr_taskStatus' target='_blank'>mr_taskStatus</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:mr_taskStatus%3DFalse positive' target='_blank'>False positive</a>`
|
||||
- Task is skipped corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:mr_taskStatus' target='_blank'>mr_taskStatus</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:mr_taskStatus%3DSkipped' target='_blank'>Skipped</a>`
|
||||
- Task is deleted corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:mr_taskStatus' target='_blank'>mr_taskStatus</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:mr_taskStatus%3DDeleted' target='_blank'>Deleted</a>`
|
||||
- Task is already fixed corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:mr_taskStatus' target='_blank'>mr_taskStatus</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:mr_taskStatus%3DAlready fixed' target='_blank'>Already fixed</a>`
|
||||
- Task is marked as too hard corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:mr_taskStatus' target='_blank'>mr_taskStatus</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:mr_taskStatus%3DToo hard' target='_blank'>Too hard</a>`
|
||||
- Task is disabled corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:mr_taskStatus' target='_blank'>mr_taskStatus</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:mr_taskStatus%3DDisabled' target='_blank'>Disabled</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### blurb
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
Only visible if `blurb~^..*$` is shown
|
||||
|
||||
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)
|
89
Docs/Layers/maxspeed.md
Normal file
89
Docs/Layers/maxspeed.md
Normal file
|
@ -0,0 +1,89 @@
|
|||
|
||||
|
||||
maxspeed
|
||||
==========
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Shows the allowed speed for every road
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **16** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [maxspeed](https://mapcomplete.osm.be/maxspeed)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dresidential' target='_blank'>residential</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dliving_street' target='_blank'>living_street</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dmotorway' target='_blank'>motorway</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dtertiary' target='_blank'>tertiary</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dunclassified' target='_blank'>unclassified</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dsecondary' target='_blank'>secondary</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dprimary' target='_blank'>primary</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dtrunk' target='_blank'>trunk</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dmotorway' target='_blank'>motorway</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dtertiary_link' target='_blank'>tertiary_link</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dsecondary_link' target='_blank'>secondary_link</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dprimary_link' target='_blank'>primary_link</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dtrunk_link' target='_blank'>trunk_link</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dmotorway_link' target='_blank'>motorway_link</a>
|
||||
- type!=multipolygon
|
||||
- area!=yes
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%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(%7B%7Bbbox%7D%7D)%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(%7B%7Bbbox%7D%7D)%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(%7B%7Bbbox%7D%7D)%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(%7B%7Bbbox%7D%7D)%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(%7B%7Bbbox%7D%7D)%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(%7B%7Bbbox%7D%7D)%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(%7B%7Bbbox%7D%7D)%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(%7B%7Bbbox%7D%7D)%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(%7B%7Bbbox%7D%7D)%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(%7B%7Bbbox%7D%7D)%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(%7B%7Bbbox%7D%7D)%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(%7B%7Bbbox%7D%7D)%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(%7B%7Bbbox%7D%7D)%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(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/maxspeed#values) [maxspeed](https://wiki.openstreetmap.org/wiki/Key:maxspeed) | [pnat](../SpecialInputElements.md#pnat) |
|
||||
|
||||
|
||||
|
||||
|
||||
### maxspeed-maxspeed
|
||||
|
||||
|
||||
|
||||
The question is What is the legal maximum speed one is allowed to drive on this road?
|
||||
|
||||
This rendering asks information about the property [maxspeed](https://wiki.openstreetmap.org/wiki/Key:maxspeed)
|
||||
|
||||
This is rendered with The maximum allowed speed on this road is {maxspeed}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This is a living street, which has a maxspeed of 20km/h corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dliving_street' target='_blank'>living_street</a>&_country!=be`
|
||||
- This option cannot be chosen as answer
|
||||
- This is a living street, which has a maxspeed of 20km/h corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dliving_street' target='_blank'>living_street</a>`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/maxspeed/maxspeed.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/maxspeed/maxspeed.json)
|
|
@ -16,7 +16,7 @@ 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.
|
||||
- This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable.
|
||||
- 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-<id>=true
|
||||
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||
|
@ -25,17 +25,6 @@ Hidden layer with all streets which have a name. Useful to detect addresses
|
|||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
|
|
@ -40,10 +40,10 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dnature_reserve' target='_blank'>nature_reserve</a>|protect_class!~^98$&<a href='https://wiki.openstreetmap.org/wiki/Key:boundary' target='_blank'>boundary</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:boundary%3Dprotected_area' target='_blank'>protected_area</a>
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dnature_reserve' target='_blank'>nature_reserve</a>|protect_class!=98&<a href='https://wiki.openstreetmap.org/wiki/Key:boundary' target='_blank'>boundary</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:boundary%3Dprotected_area' target='_blank'>protected_area</a>
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22leisure%22%3D%22nature_reserve%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22boundary%22%3D%22protected_area%22%5D%5B%22protect_class%22!~%22%5E98%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22leisure%22%3D%22nature_reserve%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22boundary%22%3D%22protected_area%22%5D%5B%22protect_class%22!%3D%2298%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
|
||||
|
||||
|
||||
|
@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -77,7 +79,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -87,19 +91,22 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **Is this nature reserve accessible to the public?**
|
||||
The question is Is this nature reserve accessible to the public?
|
||||
|
||||
This rendering asks information about the property [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description)
|
||||
This is rendered with `Accessin this nature reserve: {access:description}`
|
||||
|
||||
This is rendered with Accessin this nature reserve: {access:description}
|
||||
|
||||
|
||||
|
||||
- **Publicly accessible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>
|
||||
- **Not accessible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dno' target='_blank'>no</a>
|
||||
- **Not accessible as this is a private area** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate' target='_blank'>private</a>
|
||||
- **Accessible despite being a privately owned area** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpermissive' target='_blank'>permissive</a>
|
||||
- **Only accessible with a guide or during organised activities** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dguided' target='_blank'>guided</a>
|
||||
- **Accessible with fee** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
- Publicly accessible corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>`
|
||||
- Not accessible corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dno' target='_blank'>no</a>`
|
||||
- Not accessible as this is a private area corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate' target='_blank'>private</a>`
|
||||
- Accessible despite being a privately owned area corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpermissive' target='_blank'>permissive</a>`
|
||||
- Only accessible with a guide or during organised activities corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dguided' target='_blank'>guided</a>`
|
||||
- Accessible with fee corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -108,16 +115,20 @@ This is rendered with `Accessin this nature reserve: {access:description}`
|
|||
|
||||
|
||||
|
||||
The question is **Who operates this area?**
|
||||
The question is Who operates this area?
|
||||
|
||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||
This is rendered with `Operated by {operator}`
|
||||
|
||||
This is rendered with Operated by {operator}
|
||||
|
||||
|
||||
|
||||
- **Operated by Natuurpunt** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt' target='_blank'>Natuurpunt</a>
|
||||
- **Operated by {operator}** corresponds with operator~^(n|N)atuurpunt.*$_This option cannot be chosen as answer_
|
||||
- **Operated by <i>Agentschap Natuur en Bos</i>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgentschap Natuur en Bos' target='_blank'>Agentschap Natuur en Bos</a>
|
||||
|
||||
|
||||
- Operated by Natuurpunt corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt' target='_blank'>Natuurpunt</a>`
|
||||
- Operated by {operator} corresponds with `operator~^(n|N)atuurpunt.*$`
|
||||
- This option cannot be chosen as answer
|
||||
- Operated by <i>Agentschap Natuur en Bos</i> corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgentschap Natuur en Bos' target='_blank'>Agentschap Natuur en Bos</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -126,14 +137,17 @@ This is rendered with `Operated by {operator}`
|
|||
|
||||
|
||||
|
||||
The question is **What is the name of this area?**
|
||||
The question is What is the name of this area?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
This is rendered with `This area is named {name}`
|
||||
|
||||
This is rendered with This area is named {name}
|
||||
|
||||
|
||||
|
||||
- **This area doesn't have a name** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
- This area doesn't have a name corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -142,18 +156,18 @@ This is rendered with `This area is named {name}`
|
|||
|
||||
|
||||
|
||||
The question is **Are dogs allowed in this nature reserve?**
|
||||
The question is Are dogs allowed in this nature reserve?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Dogs have to be leashed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed' target='_blank'>leashed</a>
|
||||
- **No dogs allowed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno' target='_blank'>no</a>
|
||||
- **Dogs are allowed to roam freely** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes' target='_blank'>yes</a>
|
||||
- Dogs have to be leashed corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed' target='_blank'>leashed</a>`
|
||||
- No dogs allowed corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno' target='_blank'>no</a>`
|
||||
- Dogs are allowed to roam freely corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes' target='_blank'>yes</a>`
|
||||
|
||||
|
||||
Only visible if `access=yes|access=permissive|access=guided` is shown
|
||||
Only visible if `access=yes|access=permissive|access=guided` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -161,14 +175,18 @@ Only visible if `access=yes|access=permissive|access=guided` is shown
|
|||
|
||||
|
||||
|
||||
The question is **What is the website of {title()}?**
|
||||
The question is What is the website of {title()}?
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||
|
||||
This is rendered with <a href='{website}' target='_blank'>{website}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='{contact:website}' target='_blank'>{contact:website}</a> corresponds with `contact:website~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -177,10 +195,13 @@ This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **Whom is the curator of this nature reserve?<br/><span class='subtle'>Respect privacy - only fill out a name if this is widely published**
|
||||
The question is Whom is the curator of this nature reserve?<br/><span class='subtle'>Respect privacy - only fill out a name if this is widely published
|
||||
|
||||
This rendering asks information about the property [curator](https://wiki.openstreetmap.org/wiki/Key:curator)
|
||||
This is rendered with `{curator} is the curator of this nature reserve`
|
||||
|
||||
This is rendered with {curator} is the curator of this nature reserve
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -188,10 +209,13 @@ This is rendered with `{curator} is the curator of this nature reserve`
|
|||
|
||||
|
||||
|
||||
The question is **What email adress can one send to with questions and problems with this nature reserve?<br/><span class='subtle'>Respect privacy - only fill out a personal email address if this is widely published**
|
||||
The question is What email adress can one send to with questions and problems with this nature reserve?<br/><span class='subtle'>Respect privacy - only fill out a personal email address if this is widely published
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||
|
||||
This is rendered with <a href='mailto:{email}' target='_blank'>{email}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -199,10 +223,13 @@ This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **What phone number can one call to with questions and problems with this nature reserve?<br/><span class='subtle'>Respect privacy - only fill out a personal phone number address if this is widely published**
|
||||
The question is What phone number can one call to with questions and problems with this nature reserve?<br/><span class='subtle'>Respect privacy - only fill out a personal phone number address if this is widely published
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `<a href='tel:{phone}' target='_blank'>{phone}</a>`
|
||||
|
||||
This is rendered with <a href='tel:{phone}' target='_blank'>{phone}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -210,10 +237,13 @@ This is rendered with `<a href='tel:{phone}' target='_blank'>{phone}</a>`
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||
This is rendered with `Extra information: <i>{description}</i>`
|
||||
|
||||
This is rendered with Extra information: <i>{description}</i>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -221,10 +251,13 @@ This is rendered with `Extra information: <i>{description}</i>`
|
|||
|
||||
|
||||
|
||||
The question is **Is there some extra info?**
|
||||
The question is Is there some extra info?
|
||||
|
||||
This rendering asks information about the property [description:0](https://wiki.openstreetmap.org/wiki/Key:description:0)
|
||||
This is rendered with `Extra info: <i>{description:0}</i>`
|
||||
|
||||
This is rendered with Extra info: <i>{description:0}</i>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -232,7 +265,7 @@ This is rendered with `Extra info: <i>{description:0}</i>`
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -242,14 +275,22 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What is the corresponding Wikidata entity?**
|
||||
Shows a wikipedia box with the corresponding wikipedia article
|
||||
|
||||
The question is What is the corresponding Wikidata entity?
|
||||
|
||||
This rendering asks information about the property [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata)
|
||||
This is rendered with `{wikipedia():max-height:25rem}`
|
||||
|
||||
This is rendered with {wikipedia():max-height:25rem}
|
||||
|
||||
|
||||
|
||||
- **No Wikipedia page has been linked yet** corresponds with _This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- {wikipedia():max-height:25rem} corresponds with `wikipedia~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
- No Wikipedia page has been linked yet corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
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)
|
|
@ -59,7 +59,7 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -69,7 +69,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -79,7 +79,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -89,7 +89,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -99,7 +99,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -109,7 +109,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -119,7 +119,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -76,7 +78,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -86,14 +90,17 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What is the name of this tower?**
|
||||
The question is What is the name of this tower?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
This is rendered with `This tower is called <b>{name}</b>`
|
||||
|
||||
This is rendered with This tower is called <b>{name}</b>
|
||||
|
||||
|
||||
|
||||
- **This tower doesn't have a specific name** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
- This tower doesn't have a specific name corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -102,10 +109,13 @@ This is rendered with `This tower is called <b>{name}</b>`
|
|||
|
||||
|
||||
|
||||
The question is **What is the height of this tower?**
|
||||
The question is What is the height of this tower?
|
||||
|
||||
This rendering asks information about the property [height](https://wiki.openstreetmap.org/wiki/Key:height)
|
||||
This is rendered with `This tower is {height} high`
|
||||
|
||||
This is rendered with This tower is {height} high
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -113,14 +123,14 @@ This is rendered with `This tower is {height} high`
|
|||
|
||||
|
||||
|
||||
The question is **Can this tower be visited?**
|
||||
The question is Can this tower be visited?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This tower is publicly accessible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>
|
||||
- **This tower can only be visited with a guide** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dguided' target='_blank'>guided</a>
|
||||
- This tower is publicly accessible corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>`
|
||||
- This tower can only be visited with a guide corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dguided' target='_blank'>guided</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -129,17 +139,20 @@ The question is **Can this tower be visited?**
|
|||
|
||||
|
||||
|
||||
The question is **How much does one have to pay to enter this tower?**
|
||||
The question is How much does one have to pay to enter this tower?
|
||||
|
||||
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
||||
This is rendered with `Visiting this tower costs <b>{charge}</b>`
|
||||
|
||||
This is rendered with Visiting this tower costs <b>{charge}</b>
|
||||
|
||||
|
||||
|
||||
- **Free to visit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
Only visible if `access=yes|access=guided` is shown
|
||||
- Free to visit corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
Only visible if `access=yes|access=guided` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -147,17 +160,19 @@ Only visible if `access=yes|access=guided` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Which methods of payment are accepted here?**
|
||||
The question is Which methods of payment are accepted here?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Cash is accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dno' target='_blank'>no</a>
|
||||
- **Payment cards are accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||
- Cash is accepted here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dno' target='_blank'>no</a>
|
||||
- Payment cards are accepted here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
Only visible if `fee=yes|charge~^..*$` is shown
|
||||
Only visible if `fee=yes|charge~^..*$` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -165,14 +180,18 @@ Only visible if `fee=yes|charge~^..*$` is shown
|
|||
|
||||
|
||||
|
||||
The question is **What is the website of {title()}?**
|
||||
The question is What is the website of {title()}?
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||
|
||||
This is rendered with <a href='{website}' target='_blank'>{website}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='{contact:website}' target='_blank'>{contact:website}</a> corresponds with `contact:website~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -181,12 +200,15 @@ This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **How much individual steps does one have to climb to reach the top of this tower?**
|
||||
The question is How much individual steps does one have to climb to reach the top of this tower?
|
||||
|
||||
This rendering asks information about the property [step_count](https://wiki.openstreetmap.org/wiki/Key:step_count)
|
||||
This is rendered with `This tower has {step_count} steps to reach the top`
|
||||
|
||||
Only visible if `access=yes|access=guided` is shown
|
||||
This is rendered with This tower has {step_count} steps to reach the top
|
||||
|
||||
|
||||
|
||||
Only visible if `access=yes|access=guided` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -194,17 +216,17 @@ Only visible if `access=yes|access=guided` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Does this tower have an elevator?**
|
||||
The question is Does this tower have an elevator?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This tower has an elevator which takes visitors to the top** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:elevator' target='_blank'>elevator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:elevator%3Dyes' target='_blank'>yes</a>
|
||||
- **This tower does not have an elevator** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:elevator' target='_blank'>elevator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:elevator%3Dno' target='_blank'>no</a>
|
||||
- This tower has an elevator which takes visitors to the top corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:elevator' target='_blank'>elevator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:elevator%3Dyes' target='_blank'>yes</a>`
|
||||
- This tower does not have an elevator corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:elevator' target='_blank'>elevator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:elevator%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
Only visible if `access=yes|access=guided` is shown
|
||||
Only visible if `access=yes|access=guided` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -212,10 +234,13 @@ Only visible if `access=yes|access=guided` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Who maintains this tower?**
|
||||
The question is Who maintains this tower?
|
||||
|
||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||
This is rendered with `Maintained by <b>{operator}</b>`
|
||||
|
||||
This is rendered with Maintained by <b>{operator}</b>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -223,19 +248,19 @@ This is rendered with `Maintained by <b>{operator}</b>`
|
|||
|
||||
|
||||
|
||||
The question is **Is this place accessible with a wheelchair?**
|
||||
The question is Is this place accessible with a wheelchair?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This place is specially adapted for wheelchair users** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>
|
||||
- **This place is easily reachable with a wheelchair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>
|
||||
- **It is possible to reach this place in a wheelchair, but it is not easy** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited' target='_blank'>limited</a>
|
||||
- **This place is not reachable with a wheelchair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a>
|
||||
- This place is specially adapted for wheelchair users corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>`
|
||||
- This place is easily reachable with a wheelchair corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>`
|
||||
- It is possible to reach this place in a wheelchair, but it is not easy corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited' target='_blank'>limited</a>`
|
||||
- This place is not reachable with a wheelchair corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
Only visible if `elevator=yes&access=yes|access=guided` is shown
|
||||
Only visible if `elevator=yes&access=yes|access=guided` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -243,14 +268,22 @@ Only visible if `elevator=yes&access=yes|access=guided` is shown
|
|||
|
||||
|
||||
|
||||
The question is **What is the corresponding Wikidata entity?**
|
||||
Shows a wikipedia box with the corresponding wikipedia article
|
||||
|
||||
The question is What is the corresponding Wikidata entity?
|
||||
|
||||
This rendering asks information about the property [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata)
|
||||
This is rendered with `{wikipedia():max-height:25rem}`
|
||||
|
||||
This is rendered with {wikipedia():max-height:25rem}
|
||||
|
||||
|
||||
|
||||
- **No Wikipedia page has been linked yet** corresponds with _This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- {wikipedia():max-height:25rem} corresponds with `wikipedia~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
- No Wikipedia page has been linked yet corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
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)
|
|
@ -25,8 +25,10 @@ A layer showing car parkings
|
|||
|
||||
|
||||
|
||||
- [onwheels](https://mapcomplete.osm.be/onwheels)
|
||||
- [parkings](https://mapcomplete.osm.be/parkings)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
- [transit](https://mapcomplete.osm.be/transit)
|
||||
|
||||
|
||||
|
||||
|
@ -52,13 +54,114 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity:disabled#values) [capacity:disabled](https://wiki.openstreetmap.org/wiki/Key:capacity:disabled) | [pnat](../SpecialInputElements.md#pnat) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [pnat](../SpecialInputElements.md#pnat) |
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### level
|
||||
|
||||
|
||||
|
||||
The question is On what level is this feature located?
|
||||
|
||||
This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level)
|
||||
|
||||
This is rendered with Located on the {level}th floor
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Located underground corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- Located on the ground floor corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>`
|
||||
- Located on the ground floor corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- Located on the first floor corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D1' target='_blank'>1</a>`
|
||||
- Located on the first basement level corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D-1' target='_blank'>-1</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### parking-type
|
||||
|
||||
|
||||
|
||||
The question is What kind of parking is this?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This is a surface parking lot corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:parking' target='_blank'>parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:parking%3Dsurface' target='_blank'>surface</a>`
|
||||
- This is a parking bay next to a street corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:parking' target='_blank'>parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:parking%3Dstreet_side' target='_blank'>street_side</a>`
|
||||
- This is an underground parking garage corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:parking' target='_blank'>parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:parking%3Dunderground' target='_blank'>underground</a>`
|
||||
- This is a multi-storey parking garage corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:parking' target='_blank'>parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:parking%3Dmulti-storey' target='_blank'>multi-storey</a>`
|
||||
- This is a rooftop parking deck corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:parking' target='_blank'>parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:parking%3Drooftop' target='_blank'>rooftop</a>`
|
||||
- This is a lane for parking on the road corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:parking' target='_blank'>parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:parking%3Dlane' target='_blank'>lane</a>`
|
||||
- This is parking covered by carports corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:parking' target='_blank'>parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:parking%3Dcarports' target='_blank'>carports</a>`
|
||||
- This a parking consisting of garage boxes corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:parking' target='_blank'>parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:parking%3Dgarage_boxes' target='_blank'>garage_boxes</a>`
|
||||
- This is a parking on a layby corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:parking' target='_blank'>parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:parking%3Dlayby' target='_blank'>layby</a>`
|
||||
- This is a parking consisting of sheds corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:parking' target='_blank'>parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:parking%3Dsheds' target='_blank'>sheds</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### capacity-disabled
|
||||
|
||||
|
||||
|
||||
The question is How many disabled parking spots are there at this parking?
|
||||
|
||||
This rendering asks information about the property [capacity:disabled](https://wiki.openstreetmap.org/wiki/Key:capacity:disabled)
|
||||
|
||||
This is rendered with There are {capacity:disabled} disabled parking spots
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- There are disabled parking spots, but it is not known how many corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:capacity:disabled' target='_blank'>capacity:disabled</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:capacity:disabled%3Dyes' target='_blank'>yes</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- There are no disabled parking spots corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:capacity:disabled' target='_blank'>capacity:disabled</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:capacity:disabled%3Dno' target='_blank'>no</a>`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### capacity
|
||||
|
||||
|
||||
|
||||
The question is How many parking spots are there at this parking?
|
||||
|
||||
This rendering asks information about the property [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity)
|
||||
|
||||
This is rendered with There are {capacity} parking spots
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -68,7 +70,7 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -78,10 +80,13 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What is the Wikidata-item that this object is named after?**
|
||||
The question is What is the Wikidata-item that this object is named after?
|
||||
|
||||
This rendering asks information about the property [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata)
|
||||
This is rendered with `<h3>Wikipedia article of the name giver</h3>{wikipedia(name:etymology:wikidata):max-height:20rem}`
|
||||
|
||||
This is rendered with <h3>Wikipedia article of the name giver</h3>{wikipedia(name:etymology:wikidata):max-height:20rem}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -89,7 +94,7 @@ This is rendered with `<h3>Wikipedia article of the name giver</h3>{wikipedia(na
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -99,14 +104,17 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What is this object named after?<br/><span class='subtle'>This might be written on the street name sign</span>**
|
||||
The question is What is this object named after?<br/><span class='subtle'>This might be written on the street name sign</span>
|
||||
|
||||
This rendering asks information about the property [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology)
|
||||
This is rendered with `Named after {name:etymology}`
|
||||
|
||||
This is rendered with Named after {name:etymology}
|
||||
|
||||
|
||||
|
||||
- **The origin of this name is unknown in all literature** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:name:etymology' target='_blank'>name:etymology</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown' target='_blank'>unknown</a>
|
||||
|
||||
|
||||
- The origin of this name is unknown in all literature corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:name:etymology' target='_blank'>name:etymology</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown' target='_blank'>unknown</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -115,7 +123,7 @@ This is rendered with `Named after {name:etymology}`
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -125,7 +133,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -135,7 +143,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -145,7 +153,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -155,10 +163,10 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
Only visible if `wikidata~^..*$` is shown
|
||||
Only visible if `wikidata~^..*$` is shown
|
||||
|
||||
This document is autogenerated from [assets/themes/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/etymology/etymology.json)
|
|
@ -15,6 +15,7 @@ Pedestrian footpaths, especially used for indoor navigation and snapping entranc
|
|||
|
||||
|
||||
- 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)
|
||||
|
||||
|
||||
|
@ -26,7 +27,8 @@ Pedestrian footpaths, especially used for indoor navigation and snapping entranc
|
|||
|
||||
|
||||
|
||||
- [entrances](https://mapcomplete.osm.be/entrances)
|
||||
- [indoors](https://mapcomplete.osm.be/indoors)
|
||||
- [onwheels](https://mapcomplete.osm.be/onwheels)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
|
|
190
Docs/Layers/pharmacy.md
Normal file
190
Docs/Layers/pharmacy.md
Normal file
|
@ -0,0 +1,190 @@
|
|||
|
||||
|
||||
pharmacy
|
||||
==========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/pharmacy/pharmacy.svg' height="100px">
|
||||
|
||||
A layer showing pharmacies, which (probably) dispense prescription drugs
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **13** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [healthcare](https://mapcomplete.osm.be/healthcare)
|
||||
- [onwheels](https://mapcomplete.osm.be/onwheels)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
- [shops](https://mapcomplete.osm.be/shops)
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpharmacy' target='_blank'>pharmacy</a>
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22pharmacy%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### name
|
||||
|
||||
|
||||
|
||||
The question is What is the name of the pharmacy?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
|
||||
This is rendered with This pharmacy is called {name}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### opening_hours
|
||||
|
||||
|
||||
|
||||
The question is What are the opening hours of {title()}?
|
||||
|
||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||
|
||||
This is rendered with <h3>Opening hours</h3>{opening_hours_table(opening_hours)}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### phone
|
||||
|
||||
|
||||
|
||||
The question is What is the phone number of {title()}?
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
|
||||
This is rendered with <a href='tel:{phone}'>{phone}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='tel:{contact:phone}'>{contact:phone}</a> corresponds with `contact:phone~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### email
|
||||
|
||||
|
||||
|
||||
The question is What is the email address of {title()}?
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
|
||||
This is rendered with <a href='mailto:{email}' target='_blank'>{email}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='mailto:{contact:email}' target='_blank'>{contact:email}</a> corresponds with `contact:email~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### website
|
||||
|
||||
|
||||
|
||||
The question is What is the website of {title()}?
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
|
||||
This is rendered with <a href='{website}' target='_blank'>{website}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <a href='{contact:website}' target='_blank'>{contact:website}</a> corresponds with `contact:website~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### wheelchair
|
||||
|
||||
|
||||
|
||||
The question is Is this pharmacy easy to access on a wheelchair?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This pharmacy is easy to access on a wheelchair corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>`
|
||||
- This pharmacy is hard to access on a wheelchair corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a>`
|
||||
- This pharmacy has limited access for wheelchair users corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited' target='_blank'>limited</a>`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/pharmacy/pharmacy.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/pharmacy/pharmacy.json)
|
|
@ -53,13 +53,16 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
|
||||
|
||||
|
||||
|
@ -68,8 +71,35 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### level
|
||||
|
||||
|
||||
|
||||
The question is On what level is this feature located?
|
||||
|
||||
This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level)
|
||||
|
||||
This is rendered with Located on the {level}th floor
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Located underground corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- Located on the ground floor corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>`
|
||||
- Located on the ground floor corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- Located on the first floor corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D1' target='_blank'>1</a>`
|
||||
- Located on the first basement level corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D-1' target='_blank'>-1</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -78,15 +108,19 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What material is this picnic table made of?**
|
||||
The question is What material is this picnic table made of?
|
||||
|
||||
This rendering asks information about the property [material](https://wiki.openstreetmap.org/wiki/Key:material)
|
||||
This is rendered with `This picnic table is made of {material}`
|
||||
|
||||
This is rendered with This picnic table is made of {material}
|
||||
|
||||
|
||||
|
||||
- **This is a wooden picnic table** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood' target='_blank'>wood</a>
|
||||
- **This is a concrete picnic table** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete' target='_blank'>concrete</a>
|
||||
|
||||
|
||||
- This is a wooden picnic table corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood' target='_blank'>wood</a>`
|
||||
- This is a concrete picnic table corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete' target='_blank'>concrete</a>`
|
||||
- This picnic table is made from (recycled) plastic corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dplastic' target='_blank'>plastic</a>`
|
||||
|
||||
|
||||
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)
|
|
@ -19,17 +19,6 @@ Een speelbos is een vrij toegankelijke zone in een bos
|
|||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
@ -51,7 +40,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -69,7 +60,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -79,15 +72,19 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **Wie beheert dit gebied?**
|
||||
The question is Wie beheert dit gebied?
|
||||
|
||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||
This is rendered with `Dit gebied wordt beheerd door {operator}`
|
||||
|
||||
This is rendered with Dit gebied wordt beheerd door {operator}
|
||||
|
||||
|
||||
|
||||
- **Dit gebied wordt beheerd door het <a href='https://www.natuurenbos.be/spelen'>Agentschap Natuur en Bos</a>** corresponds with operator~^[aA][nN][bB]$_This option cannot be chosen as answer_
|
||||
- **Dit gebied wordt beheerd door het <a href='https://www.natuurenbos.be/spelen'>Agentschap Natuur en Bos</a>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgenstchap Natuur en Bos' target='_blank'>Agenstchap Natuur en Bos</a>
|
||||
|
||||
|
||||
- Dit gebied wordt beheerd door het <a href='https://www.natuurenbos.be/spelen'>Agentschap Natuur en Bos</a> corresponds with `operator~^[aA][nN][bB]$`
|
||||
- This option cannot be chosen as answer
|
||||
- Dit gebied wordt beheerd door het <a href='https://www.natuurenbos.be/spelen'>Agentschap Natuur en Bos</a> corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgenstchap Natuur en Bos' target='_blank'>Agenstchap Natuur en Bos</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -96,14 +93,14 @@ This is rendered with `Dit gebied wordt beheerd door {operator}`
|
|||
|
||||
|
||||
|
||||
The question is **Wanneer is deze speelzone toegankelijk?**
|
||||
The question is Wanneer is deze speelzone toegankelijk?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Het hele jaar door overdag toegankelijk (van 08:00 tot 22:00)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D08:00-22:00' target='_blank'>08:00-22:00</a>
|
||||
- **Enkel in de <b>zomervakantie</b> en overdag toegankelijk (van 1 juli tot 31 augustus, van 08:00 tot 22:00** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3DJul-Aug 08:00-22:00' target='_blank'>Jul-Aug 08:00-22:00</a>
|
||||
- Het hele jaar door overdag toegankelijk (van 08:00 tot 22:00) corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D08:00-22:00' target='_blank'>08:00-22:00</a>`
|
||||
- Enkel in de <b>zomervakantie</b> en overdag toegankelijk (van 1 juli tot 31 augustus, van 08:00 tot 22:00 corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3DJul-Aug 08:00-22:00' target='_blank'>Jul-Aug 08:00-22:00</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -112,10 +109,13 @@ The question is **Wanneer is deze speelzone toegankelijk?**
|
|||
|
||||
|
||||
|
||||
The question is **Wie kan men emailen indien er problemen zijn met de speelzone?**
|
||||
The question is Wie kan men emailen indien er problemen zijn met de speelzone?
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `De bevoegde dienst kan bereikt worden via {email}`
|
||||
|
||||
This is rendered with De bevoegde dienst kan bereikt worden via {email}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -123,10 +123,13 @@ This is rendered with `De bevoegde dienst kan bereikt worden via {email}`
|
|||
|
||||
|
||||
|
||||
The question is **Wie kan men bellen indien er problemen zijn met de speelzone?**
|
||||
The question is Wie kan men bellen indien er problemen zijn met de speelzone?
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `De bevoegde dienst kan getelefoneerd worden via {phone}`
|
||||
|
||||
This is rendered with De bevoegde dienst kan getelefoneerd worden via {phone}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -134,7 +137,7 @@ This is rendered with `De bevoegde dienst kan getelefoneerd worden via {phone}`
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -144,7 +147,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -41,10 +41,10 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dplayground' target='_blank'>playground</a>
|
||||
- playground!~^forest$
|
||||
- playground!=forest
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22leisure%22%3D%22playground%22%5D%5B%22playground%22!~%22%5Eforest%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22leisure%22%3D%22playground%22%5D%5B%22playground%22!%3D%22forest%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
|
||||
|
||||
|
||||
|
@ -53,7 +53,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -77,7 +79,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -87,21 +91,26 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **Which is the surface of this playground?<br/><i>If there are multiple, select the most occuring one</i>**
|
||||
The question is Which is the surface of this playground?<br/><i>If there are multiple, select the most occuring one</i>
|
||||
|
||||
This rendering asks information about the property [surface](https://wiki.openstreetmap.org/wiki/Key:surface)
|
||||
This is rendered with `The surface is <b>{surface}</b>`
|
||||
|
||||
This is rendered with The surface is <b>{surface}</b>
|
||||
|
||||
|
||||
|
||||
- **The surface is <b>grass</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dgrass' target='_blank'>grass</a>
|
||||
- **The surface is <b>sand</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dsand' target='_blank'>sand</a>
|
||||
- **The surface consist of <b>woodchips</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dwoodchips' target='_blank'>woodchips</a>
|
||||
- **The surface is <b>paving stones</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaving_stones' target='_blank'>paving_stones</a>
|
||||
- **The surface is <b>asphalt</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dasphalt' target='_blank'>asphalt</a>
|
||||
- **The surface is <b>concrete</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dconcrete' target='_blank'>concrete</a>
|
||||
- **The surface is <b>unpaved</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dunpaved' target='_blank'>unpaved</a>_This option cannot be chosen as answer_
|
||||
- **The surface is <b>paved</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaved' target='_blank'>paved</a>_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- The surface is <b>grass</b> corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dgrass' target='_blank'>grass</a>`
|
||||
- The surface is <b>sand</b> corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dsand' target='_blank'>sand</a>`
|
||||
- The surface consist of <b>woodchips</b> corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dwoodchips' target='_blank'>woodchips</a>`
|
||||
- The surface is <b>paving stones</b> corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaving_stones' target='_blank'>paving_stones</a>`
|
||||
- The surface is <b>asphalt</b> corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dasphalt' target='_blank'>asphalt</a>`
|
||||
- The surface is <b>concrete</b> corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dconcrete' target='_blank'>concrete</a>`
|
||||
- The surface is <b>unpaved</b> corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dunpaved' target='_blank'>unpaved</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- The surface is <b>paved</b> corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaved' target='_blank'>paved</a>`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -110,14 +119,14 @@ This is rendered with `The surface is <b>{surface}</b>`
|
|||
|
||||
|
||||
|
||||
The question is **Is this playground lit at night?**
|
||||
The question is Is this playground lit at night?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This playground is lit at night** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes' target='_blank'>yes</a>
|
||||
- **This playground is not lit at night** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno' target='_blank'>no</a>
|
||||
- This playground is lit at night corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes' target='_blank'>yes</a>`
|
||||
- This playground is not lit at night corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
This tagrendering has labels `extra`
|
||||
|
@ -128,10 +137,13 @@ This tagrendering has labels `extra`
|
|||
|
||||
|
||||
|
||||
The question is **What is the minimum age required to access this playground?**
|
||||
The question is What is the minimum age required to access this playground?
|
||||
|
||||
This rendering asks information about the property [min_age](https://wiki.openstreetmap.org/wiki/Key:min_age)
|
||||
This is rendered with `Accessible to kids older than {min_age} years`
|
||||
|
||||
This is rendered with Accessible to kids older than {min_age} years
|
||||
|
||||
|
||||
|
||||
This tagrendering has labels `extra`
|
||||
|
||||
|
@ -141,10 +153,13 @@ This tagrendering has labels `extra`
|
|||
|
||||
|
||||
|
||||
The question is **What is the maximum age allowed to access this playground?**
|
||||
The question is What is the maximum age allowed to access this playground?
|
||||
|
||||
This rendering asks information about the property [max_age](https://wiki.openstreetmap.org/wiki/Key:max_age)
|
||||
This is rendered with `Accessible to kids of at most {max_age}`
|
||||
|
||||
This is rendered with Accessible to kids of at most {max_age}
|
||||
|
||||
|
||||
|
||||
This tagrendering has labels `extra`
|
||||
|
||||
|
@ -154,10 +169,13 @@ This tagrendering has labels `extra`
|
|||
|
||||
|
||||
|
||||
The question is **Who operates this playground?**
|
||||
The question is Who operates this playground?
|
||||
|
||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||
This is rendered with `Operated by {operator}`
|
||||
|
||||
This is rendered with Operated by {operator}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -165,17 +183,19 @@ This is rendered with `Operated by {operator}`
|
|||
|
||||
|
||||
|
||||
The question is **Is this playground accessible to the general public?**
|
||||
The question is Is this playground accessible to the general public?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Accessible to the general public** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>
|
||||
- **This is a <b>paid</b> playground** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>
|
||||
- **Only accessible for clients of the operating business** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers' target='_blank'>customers</a>
|
||||
- **Only accessible to students of the school** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dstudents' target='_blank'>students</a>_This option cannot be chosen as answer_
|
||||
- **Not accessible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate' target='_blank'>private</a>
|
||||
- Accessible to the general public corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>`
|
||||
- This is a <b>paid</b> playground corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>`
|
||||
- Only accessible for clients of the operating business corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers' target='_blank'>customers</a>`
|
||||
- Only accessible to students of the school corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dstudents' target='_blank'>students</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- Not accessible corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate' target='_blank'>private</a>`
|
||||
- This is a schoolyard - an outdoor area where the pupils can play during their breaks; but it is not accessible to the general public corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dschoolyard' target='_blank'>schoolyard</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -184,14 +204,18 @@ The question is **Is this playground accessible to the general public?**
|
|||
|
||||
|
||||
|
||||
The question is **What is the website of {title()}?**
|
||||
The question is What is the website of {title()}?
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||
|
||||
This is rendered with <a href='{website}' target='_blank'>{website}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
- <a href='{contact:website}' target='_blank'>{contact:website}</a> corresponds with `contact:website~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -200,10 +224,13 @@ This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **What is the email address of the playground maintainer?**
|
||||
The question is What is the email address of the playground maintainer?
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `<a href='mailto:{email}'>{email}</a>`
|
||||
|
||||
This is rendered with <a href='mailto:{email}'>{email}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -211,10 +238,13 @@ This is rendered with `<a href='mailto:{email}'>{email}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **What is the phone number of the playground maintainer?**
|
||||
The question is What is the phone number of the playground maintainer?
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||
|
||||
This is rendered with <a href='tel:{phone}'>{phone}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -222,15 +252,15 @@ This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
|||
|
||||
|
||||
|
||||
The question is **Is this playground accessible to wheelchair users?**
|
||||
The question is Is this playground accessible to wheelchair users?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Completely accessible for wheelchair users** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>
|
||||
- **Limited accessibility for wheelchair users** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited' target='_blank'>limited</a>
|
||||
- **Not accessible for wheelchair users** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a>
|
||||
- Completely accessible for wheelchair users corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>`
|
||||
- Limited accessibility for wheelchair users corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited' target='_blank'>limited</a>`
|
||||
- Not accessible for wheelchair users corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -239,15 +269,18 @@ The question is **Is this playground accessible to wheelchair users?**
|
|||
|
||||
|
||||
|
||||
The question is **When is this playground accessible?**
|
||||
The question is When is this playground accessible?
|
||||
|
||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||
This is rendered with `{opening_hours_table(opening_hours)}`
|
||||
|
||||
This is rendered with {opening_hours_table(opening_hours)}
|
||||
|
||||
|
||||
|
||||
- **Accessible from sunrise till sunset** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dsunrise-sunset' target='_blank'>sunrise-sunset</a>
|
||||
- **Always accessible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
|
||||
|
||||
|
||||
- Accessible from sunrise till sunset corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dsunrise-sunset' target='_blank'>sunrise-sunset</a>`
|
||||
- Always accessible corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -256,7 +289,7 @@ This is rendered with `{opening_hours_table(opening_hours)}`
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -266,7 +299,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -57,7 +57,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -67,7 +69,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -51,7 +51,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -66,7 +68,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -76,7 +80,7 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -86,14 +90,17 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What are the opening hours for this post office?**
|
||||
The question is What are the opening hours for this post office?
|
||||
|
||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||
This is rendered with `Opening Hours: {opening_hours_table()}`
|
||||
|
||||
This is rendered with Opening Hours: {opening_hours_table()}
|
||||
|
||||
|
||||
|
||||
- **24/7 opened (including holidays)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
|
||||
|
||||
|
||||
- 24/7 opened (including holidays) corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/postboxes/postboxes.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/postboxes/postboxes.json)
|
|
@ -15,7 +15,6 @@ A streetside cabinet with books, accessible to anyone
|
|||
|
||||
|
||||
- This layer is shown at zoomlevel **10** and higher
|
||||
- This layer is needed as dependency for layer [note_import](#note_import)
|
||||
|
||||
|
||||
|
||||
|
@ -53,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -61,7 +62,7 @@ attribute | type | values which are supported by this layer
|
|||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [nat](../SpecialInputElements.md#nat) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/books#values) [books](https://wiki.openstreetmap.org/wiki/Key:books) | Multiple choice | [children](https://wiki.openstreetmap.org/wiki/Tag:books%3Dchildren) [adults](https://wiki.openstreetmap.org/wiki/Tag:books%3Dadults) [children;adults](https://wiki.openstreetmap.org/wiki/Tag:books%3Dchildren;adults)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) |
|
||||
|
@ -77,7 +78,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -87,14 +90,17 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What is the name of this public bookcase?**
|
||||
The question is What is the name of this public bookcase?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
This is rendered with `The name of this bookcase is {name}`
|
||||
|
||||
This is rendered with The name of this bookcase is {name}
|
||||
|
||||
|
||||
|
||||
- **This bookcase doesn't have a name** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
- This bookcase doesn't have a name corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -103,10 +109,13 @@ This is rendered with `The name of this bookcase is {name}`
|
|||
|
||||
|
||||
|
||||
The question is **How many books fit into this public bookcase?**
|
||||
The question is How many books fit into this public bookcase?
|
||||
|
||||
This rendering asks information about the property [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity)
|
||||
This is rendered with `{capacity} books fit in this bookcase`
|
||||
|
||||
This is rendered with {capacity} books fit in this bookcase
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -114,15 +123,18 @@ This is rendered with `{capacity} books fit in this bookcase`
|
|||
|
||||
|
||||
|
||||
The question is **What kind of books can be found in this public bookcase?**
|
||||
The question is What kind of books can be found in this public bookcase?
|
||||
|
||||
This rendering asks information about the property [books](https://wiki.openstreetmap.org/wiki/Key:books)
|
||||
|
||||
This is rendered with This place mostly serves {books}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Mostly children books** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:books' target='_blank'>books</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:books%3Dchildren' target='_blank'>children</a>
|
||||
- **Mostly books for adults** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:books' target='_blank'>books</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:books%3Dadults' target='_blank'>adults</a>
|
||||
- **Both books for kids and adults** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:books' target='_blank'>books</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:books%3Dchildren;adults' target='_blank'>children;adults</a>
|
||||
- Mostly children books corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:books' target='_blank'>books</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:books%3Dchildren' target='_blank'>children</a>`
|
||||
- Mostly books for adults corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:books' target='_blank'>books</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:books%3Dadults' target='_blank'>adults</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -131,15 +143,16 @@ The question is **What kind of books can be found in this public bookcase?**
|
|||
|
||||
|
||||
|
||||
The question is **Is this bookcase located outdoors?**
|
||||
The question is Is this bookcase located outdoors?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This bookcase is located indoors** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes' target='_blank'>yes</a>
|
||||
- **This bookcase is located outdoors** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno' target='_blank'>no</a>
|
||||
- **This bookcase is located outdoors** corresponds with _This option cannot be chosen as answer_
|
||||
- This bookcase is located indoors corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes' target='_blank'>yes</a>`
|
||||
- This bookcase is located outdoors corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno' target='_blank'>no</a>`
|
||||
- This bookcase is located outdoors corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -148,17 +161,17 @@ The question is **Is this bookcase located outdoors?**
|
|||
|
||||
|
||||
|
||||
The question is **Is this public bookcase freely accessible?**
|
||||
The question is Is this public bookcase freely accessible?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Publicly accessible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>
|
||||
- **Only accessible to customers** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers' target='_blank'>customers</a>
|
||||
- Publicly accessible corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>`
|
||||
- Only accessible to customers corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers' target='_blank'>customers</a>`
|
||||
|
||||
|
||||
Only visible if `indoor=yes` is shown
|
||||
Only visible if `indoor=yes` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -166,10 +179,13 @@ Only visible if `indoor=yes` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Who maintains this public bookcase?**
|
||||
The question is Who maintains this public bookcase?
|
||||
|
||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||
This is rendered with `Operated by {operator}`
|
||||
|
||||
This is rendered with Operated by {operator}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -177,15 +193,18 @@ This is rendered with `Operated by {operator}`
|
|||
|
||||
|
||||
|
||||
The question is **Is this public bookcase part of a bigger network?**
|
||||
The question is Is this public bookcase part of a bigger network?
|
||||
|
||||
This rendering asks information about the property [brand](https://wiki.openstreetmap.org/wiki/Key:brand)
|
||||
This is rendered with `This public bookcase is part of {brand}`
|
||||
|
||||
This is rendered with This public bookcase is part of {brand}
|
||||
|
||||
|
||||
|
||||
- **Part of the network 'Little Free Library'** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:brand' target='_blank'>brand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:brand%3DLittle Free Library' target='_blank'>Little Free Library</a>
|
||||
- **This public bookcase is not part of a bigger network** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:nobrand' target='_blank'>nobrand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:nobrand%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
- Part of the network 'Little Free Library' corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:brand' target='_blank'>brand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:brand%3DLittle Free Library' target='_blank'>Little Free Library</a>`
|
||||
- This public bookcase is not part of a bigger network corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:nobrand' target='_blank'>nobrand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:nobrand%3Dyes' target='_blank'>yes</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -194,17 +213,20 @@ This is rendered with `This public bookcase is part of {brand}`
|
|||
|
||||
|
||||
|
||||
The question is **What is the reference number of this public bookcase?**
|
||||
The question is What is the reference number of this public bookcase?
|
||||
|
||||
This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref)
|
||||
This is rendered with `The reference number of this public bookcase within {brand} is {ref}`
|
||||
|
||||
This is rendered with The reference number of this public bookcase within {brand} is {ref}
|
||||
|
||||
|
||||
|
||||
- **This bookcase is not part of a bigger network** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:nobrand' target='_blank'>nobrand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:nobrand%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
Only visible if `brand~^..*$` is shown
|
||||
- This bookcase is not part of a bigger network corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:nobrand' target='_blank'>nobrand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:nobrand%3Dyes' target='_blank'>yes</a>`
|
||||
|
||||
|
||||
Only visible if `brand~^..*$` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -212,10 +234,13 @@ Only visible if `brand~^..*$` is shown
|
|||
|
||||
|
||||
|
||||
The question is **When was this public bookcase installed?**
|
||||
The question is When was this public bookcase installed?
|
||||
|
||||
This rendering asks information about the property [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date)
|
||||
This is rendered with `Installed on {start_date}`
|
||||
|
||||
This is rendered with Installed on {start_date}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -223,9 +248,12 @@ This is rendered with `Installed on {start_date}`
|
|||
|
||||
|
||||
|
||||
The question is **Is there a website with more information about this public bookcase?**
|
||||
The question is Is there a website with more information about this public bookcase?
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `More info on <a href='{website}' target='_blank'>the website</a>`
|
||||
|
||||
This is rendered with More info on <a href='{website}' target='_blank'>the website</a>
|
||||
|
||||
|
||||
|
||||
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)
|
112
Docs/Layers/rainbow_crossing_high_zoom.md
Normal file
112
Docs/Layers/rainbow_crossing_high_zoom.md
Normal file
|
@ -0,0 +1,112 @@
|
|||
|
||||
|
||||
rainbow_crossing_high_zoom
|
||||
============================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/rainbow_crossings/crossing.svg' height="100px">
|
||||
|
||||
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`
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [rainbow_crossings](https://mapcomplete.osm.be/rainbow_crossings)
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dcrossing' target='_blank'>crossing</a>
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:crossing:marking' target='_blank'>crossing:marking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:marking%3Drainbow' target='_blank'>rainbow</a>
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22crossing%3Amarking%22%3D%22rainbow%22%5D%5B%22highway%22%3D%22crossing%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### crossing-with-rainbow
|
||||
|
||||
|
||||
|
||||
The question is Does this crossing has rainbow paintings?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This crossing has rainbow paintings corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:crossing:marking' target='_blank'>crossing:marking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:marking%3Drainbow' target='_blank'>rainbow</a>`
|
||||
- No rainbow paintings here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:not:crossing:marking' target='_blank'>not:crossing:marking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:crossing:marking%3Drainbow' target='_blank'>rainbow</a>`
|
||||
- No rainbow paintings here corresponds with `crossing:marking!=rainbow`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
Only visible if `highway=crossing` is shown
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
Show the images block at this location
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### minimap
|
||||
|
||||
|
||||
|
||||
Shows a small map with the feature. Added by default to every popup
|
||||
|
||||
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)
|
88
Docs/Layers/rainbow_crossings.md
Normal file
88
Docs/Layers/rainbow_crossings.md
Normal file
|
@ -0,0 +1,88 @@
|
|||
|
||||
|
||||
rainbow_crossings
|
||||
===================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/rainbow_crossings/crossing.svg' height="100px">
|
||||
|
||||
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])
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
- [rainbow_crossings](https://mapcomplete.osm.be/rainbow_crossings)
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dcrossing' target='_blank'>crossing</a>
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22highway%22%3D%22crossing%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### crossing-with-rainbow
|
||||
|
||||
|
||||
|
||||
The question is Does this crossing has rainbow paintings?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This crossing has rainbow paintings corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:crossing:marking' target='_blank'>crossing:marking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:marking%3Drainbow' target='_blank'>rainbow</a>`
|
||||
- No rainbow paintings here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:not:crossing:marking' target='_blank'>not:crossing:marking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:crossing:marking%3Drainbow' target='_blank'>rainbow</a>`
|
||||
- No rainbow paintings here corresponds with `crossing:marking!=rainbow`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
Only visible if `highway=crossing` is shown
|
||||
|
||||
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)
|
137
Docs/Layers/reception_desk.md
Normal file
137
Docs/Layers/reception_desk.md
Normal file
|
@ -0,0 +1,137 @@
|
|||
|
||||
|
||||
reception_desk
|
||||
================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/reception_desk/reception_desk.svg' height="100px">
|
||||
|
||||
A layer showing where the reception desks are and which asks some accessibility information
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **0** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [onwheels](https://mapcomplete.osm.be/onwheels)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dreception_desk' target='_blank'>reception_desk</a>
|
||||
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22reception_desk%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/desk:height#values) [desk:height](https://wiki.openstreetmap.org/wiki/Key:desk:height) | [pfloat](../SpecialInputElements.md#pfloat) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](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)
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### level
|
||||
|
||||
|
||||
|
||||
The question is On what level is this feature located?
|
||||
|
||||
This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level)
|
||||
|
||||
This is rendered with Located on the {level}th floor
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Located underground corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- Located on the ground floor corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>`
|
||||
- Located on the ground floor corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- Located on the first floor corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D1' target='_blank'>1</a>`
|
||||
- Located on the first basement level corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D-1' target='_blank'>-1</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
### desk-height
|
||||
|
||||
|
||||
|
||||
The question is What is the height of the reception desk? <div class='subtle'>This is measured from the floor to the lowest usable part of the desk</div>
|
||||
|
||||
This rendering asks information about the property [desk:height](https://wiki.openstreetmap.org/wiki/Key:desk:height)
|
||||
|
||||
This is rendered with The height of the desk is <b>{canonical(desk:height)}</b>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### induction-loop
|
||||
|
||||
|
||||
|
||||
An accessibility feature: induction loops are for hard-hearing persons which have an FM-receiver.
|
||||
|
||||
The question is Does this place have an audio induction loop for people with reduced hearing?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This place has an audio induction loop corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:hearing_loop' target='_blank'>hearing_loop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dyes' target='_blank'>yes</a>`
|
||||
- This place <b>does not</b> have an audio induction loop corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:hearing_loop' target='_blank'>hearing_loop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dno' target='_blank'>no</a>`
|
||||
|
||||
|
||||
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)
|
|
@ -52,7 +52,9 @@ Elements must have the all of following tags to be shown on this layer:
|
|||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
Warning:
|
||||
|
||||
this quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
|
@ -73,7 +75,9 @@ attribute | type | values which are supported by this layer
|
|||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
@ -83,15 +87,15 @@ _This tagrendering has no question and is thus read-only_
|
|||
|
||||
|
||||
|
||||
The question is **What type of recycling is this?**
|
||||
The question is What type of recycling is this?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This is a recycling container** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:recycling_type' target='_blank'>recycling_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling_type%3Dcontainer' target='_blank'>container</a>
|
||||
- **This is a recycling centre** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:recycling_type' target='_blank'>recycling_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling_type%3Dcentre' target='_blank'>centre</a>
|
||||
- **Waste disposal container for residual waste** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dwaste_disposal' target='_blank'>waste_disposal</a>
|
||||
- This is a recycling container corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:recycling_type' target='_blank'>recycling_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling_type%3Dcontainer' target='_blank'>container</a>`
|
||||
- This is a recycling centre corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:recycling_type' target='_blank'>recycling_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling_type%3Dcentre' target='_blank'>centre</a>`
|
||||
- Waste disposal container for residual waste corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dwaste_disposal' target='_blank'>waste_disposal</a>`
|
||||
|
||||
|
||||
|
||||
|
@ -100,17 +104,20 @@ The question is **What type of recycling is this?**
|
|||
|
||||
|
||||
|
||||
The question is **What is the name of this recycling centre?**
|
||||
The question is What is the name of this recycling centre?
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
This is rendered with `This recycling centre is named <b>{name}</b>`
|
||||
|
||||
This is rendered with This recycling centre is named <b>{name}</b>
|
||||
|
||||
|
||||
|
||||
- **This recycling centre doesn't have a specific name** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
Only visible if `recycling_type=centre` is shown
|
||||
- This recycling centre doesn't have a specific name corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>`
|
||||
|
||||
|
||||
Only visible if `recycling_type=centre` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -118,18 +125,18 @@ Only visible if `recycling_type=centre` is shown
|
|||
|
||||
|
||||
|
||||
The question is **Where is this container located?**
|
||||
The question is Where is this container located?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This is an underground container** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>
|
||||
- **This container is located indoors** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dindoor' target='_blank'>indoor</a>
|
||||
- **This container is located outdoors** corresponds with
|
||||
- This is an underground container corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>`
|
||||
- This container is located indoors corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dindoor' target='_blank'>indoor</a>`
|
||||
- This container is located outdoors corresponds with ``
|
||||
|
||||
|
||||
Only visible if `recycling_type=container` is shown
|
||||
Only visible if `recycling_type=container` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -137,33 +144,56 @@ Only visible if `recycling_type=container` is shown
|
|||
|
||||
|
||||
|
||||
The question is **What can be recycled here?**
|
||||
The question is What can be recycled here?
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Batteries can be recycled here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:recycling:batteries' target='_blank'>recycling:batteries</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:batteries%3Dyes' target='_blank'>yes</a>Unselecting this answer will add
|
||||
- **Beverage cartons can be recycled here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:recycling:beverage_cartons' target='_blank'>recycling:beverage_cartons</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:beverage_cartons%3Dyes' target='_blank'>yes</a>Unselecting this answer will add
|
||||
- **Cans can be recycled here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:recycling:cans' target='_blank'>recycling:cans</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:cans%3Dyes' target='_blank'>yes</a>Unselecting this answer will add
|
||||
- **Clothes can be recycled here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:recycling:clothes' target='_blank'>recycling:clothes</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:clothes%3Dyes' target='_blank'>yes</a>Unselecting this answer will add
|
||||
- **Cooking oil can be recycled here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:recycling:cooking_oil' target='_blank'>recycling:cooking_oil</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:cooking_oil%3Dyes' target='_blank'>yes</a>Unselecting this answer will add
|
||||
- **Engine oil can be recycled here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:recycling:engine_oil' target='_blank'>recycling:engine_oil</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:engine_oil%3Dyes' target='_blank'>yes</a>Unselecting this answer will add
|
||||
- **Green waste can be recycled here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:recycling:green_waste' target='_blank'>recycling:green_waste</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:green_waste%3Dyes' target='_blank'>yes</a>Unselecting this answer will add
|
||||
- **Organic waste can be recycled here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:recycling:organic' target='_blank'>recycling:organic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:organic%3Dyes' target='_blank'>yes</a>_This option cannot be chosen as answer_Unselecting this answer will add
|
||||
- **Glass bottles can be recycled here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:recycling:glass_bottles' target='_blank'>recycling:glass_bottles</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:glass_bottles%3Dyes' target='_blank'>yes</a>Unselecting this answer will add
|
||||
- **Glass can be recycled here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:recycling:glass' target='_blank'>recycling:glass</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:glass%3Dyes' target='_blank'>yes</a>Unselecting this answer will add
|
||||
- **Newspapers can be recycled here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:recycling:newspaper' target='_blank'>recycling:newspaper</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:newspaper%3Dyes' target='_blank'>yes</a>Unselecting this answer will add
|
||||
- **Paper can be recycled here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:recycling:paper' target='_blank'>recycling:paper</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:paper%3Dyes' target='_blank'>yes</a>Unselecting this answer will add
|
||||
- **Plastic bottles can be recycled here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:recycling:plastic_bottles' target='_blank'>recycling:plastic_bottles</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:plastic_bottles%3Dyes' target='_blank'>yes</a>Unselecting this answer will add
|
||||
- **Plastic packaging can be recycled here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:recycling:plastic_packaging' target='_blank'>recycling:plastic_packaging</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:plastic_packaging%3Dyes' target='_blank'>yes</a>Unselecting this answer will add
|
||||
- **Plastic can be recycled here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:recycling:plastic' target='_blank'>recycling:plastic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:plastic%3Dyes' target='_blank'>yes</a>Unselecting this answer will add
|
||||
- **Scrap metal can be recycled here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:recycling:scrap_metal' target='_blank'>recycling:scrap_metal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:scrap_metal%3Dyes' target='_blank'>yes</a>Unselecting this answer will add
|
||||
- **Shoes can be recycled here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:recycling:shoes' target='_blank'>recycling:shoes</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:shoes%3Dyes' target='_blank'>yes</a>Unselecting this answer will add
|
||||
- **Small electrical appliances can be recycled here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:recycling:small_appliances' target='_blank'>recycling:small_appliances</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:small_appliances%3Dyes' target='_blank'>yes</a>Unselecting this answer will add
|
||||
- **Small electrical appliances can be recycled here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:recycling:small_electrical_appliances' target='_blank'>recycling:small_electrical_appliances</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:small_electrical_appliances%3Dyes' target='_blank'>yes</a>_This option cannot be chosen as answer_Unselecting this answer will add
|
||||
- **Needles can be recycled here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:recycling:needles' target='_blank'>recycling:needles</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:needles%3Dyes' target='_blank'>yes</a>Unselecting this answer will add
|
||||
- **Residual waste can be recycled here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:recycling:waste' target='_blank'>recycling:waste</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:waste%3Dyes' target='_blank'>yes</a>Unselecting this answer will add
|
||||
- Batteries can be recycled here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:recycling:batteries' target='_blank'>recycling:batteries</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:batteries%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add
|
||||
- Beverage cartons can be recycled here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:recycling:beverage_cartons' target='_blank'>recycling:beverage_cartons</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:beverage_cartons%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add
|
||||
- Cans can be recycled here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:recycling:cans' target='_blank'>recycling:cans</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:cans%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add
|
||||
- Clothes can be recycled here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:recycling:clothes' target='_blank'>recycling:clothes</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:clothes%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add
|
||||
- Cooking oil can be recycled here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:recycling:cooking_oil' target='_blank'>recycling:cooking_oil</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:cooking_oil%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add
|
||||
- Engine oil can be recycled here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:recycling:engine_oil' target='_blank'>recycling:engine_oil</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:engine_oil%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add
|
||||
- Green waste can be recycled here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:recycling:green_waste' target='_blank'>recycling:green_waste</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:green_waste%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add
|
||||
- Organic waste can be recycled here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:recycling:organic' target='_blank'>recycling:organic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:organic%3Dyes' target='_blank'>yes</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- Unselecting this answer will add
|
||||
- Glass bottles can be recycled here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:recycling:glass_bottles' target='_blank'>recycling:glass_bottles</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:glass_bottles%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add
|
||||
- Glass can be recycled here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:recycling:glass' target='_blank'>recycling:glass</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:glass%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add
|
||||
- Newspapers can be recycled here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:recycling:newspaper' target='_blank'>recycling:newspaper</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:newspaper%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add
|
||||
- Paper can be recycled here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:recycling:paper' target='_blank'>recycling:paper</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:paper%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add
|
||||
- Plastic bottles can be recycled here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:recycling:plastic_bottles' target='_blank'>recycling:plastic_bottles</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:plastic_bottles%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add
|
||||
- Plastic packaging can be recycled here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:recycling:plastic_packaging' target='_blank'>recycling:plastic_packaging</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:plastic_packaging%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add
|
||||
- Plastic can be recycled here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:recycling:plastic' target='_blank'>recycling:plastic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:plastic%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add
|
||||
- Scrap metal can be recycled here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:recycling:scrap_metal' target='_blank'>recycling:scrap_metal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:scrap_metal%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add
|
||||
- Shoes can be recycled here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:recycling:shoes' target='_blank'>recycling:shoes</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:shoes%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add
|
||||
- Small electrical appliances can be recycled here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:recycling:small_appliances' target='_blank'>recycling:small_appliances</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:small_appliances%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add
|
||||
- Small electrical appliances can be recycled here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:recycling:small_electrical_appliances' target='_blank'>recycling:small_electrical_appliances</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:small_electrical_appliances%3Dyes' target='_blank'>yes</a>`
|
||||
- This option cannot be chosen as answer
|
||||
- Unselecting this answer will add
|
||||
- Needles can be recycled here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:recycling:needles' target='_blank'>recycling:needles</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:needles%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add
|
||||
- Residual waste can be recycled here corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:recycling:waste' target='_blank'>recycling:waste</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:recycling:waste%3Dyes' target='_blank'>yes</a>`
|
||||
- Unselecting this answer will add
|
||||
|
||||
|
||||
|
||||
|
@ -172,10 +202,13 @@ The question is **What can be recycled here?**
|
|||
|
||||
|
||||
|
||||
The question is **What company operates this recycling facility?**
|
||||
The question is What company operates this recycling facility?
|
||||
|
||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||
This is rendered with `This recycling facility is operated by {operator}`
|
||||
|
||||
This is rendered with This recycling facility is operated by {operator}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -183,17 +216,21 @@ This is rendered with `This recycling facility is operated by {operator}`
|
|||
|
||||
|
||||
|
||||
The question is **What is the website of {title()}?**
|
||||
The question is What is the website of {title()}?
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||
|
||||
This is rendered with <a href='{website}' target='_blank'>{website}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
Only visible if `recycling_type=centre` is shown
|
||||
- <a href='{contact:website}' target='_blank'>{contact:website}</a> corresponds with `contact:website~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
Only visible if `recycling_type=centre` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -201,17 +238,21 @@ Only visible if `recycling_type=centre` is shown
|
|||
|
||||
|
||||
|
||||
The question is **What is the email address of {title()}?**
|
||||
The question is What is the email address of {title()}?
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||
|
||||
This is rendered with <a href='mailto:{email}' target='_blank'>{email}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
Only visible if `recycling_type=centre` is shown
|
||||
- <a href='mailto:{contact:email}' target='_blank'>{contact:email}</a> corresponds with `contact:email~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
Only visible if `recycling_type=centre` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -219,17 +260,21 @@ Only visible if `recycling_type=centre` is shown
|
|||
|
||||
|
||||
|
||||
The question is **What is the phone number of {title()}?**
|
||||
The question is What is the phone number of {title()}?
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||
|
||||
This is rendered with <a href='tel:{phone}'>{phone}</a>
|
||||
|
||||
|
||||
|
||||
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
Only visible if `recycling_type=centre` is shown
|
||||
- <a href='tel:{contact:phone}'>{contact:phone}</a> corresponds with `contact:phone~^..*$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
Only visible if `recycling_type=centre` is shown
|
||||
|
||||
|
||||
|
||||
|
@ -237,14 +282,17 @@ Only visible if `recycling_type=centre` is shown
|
|||
|
||||
|
||||
|
||||
The question is **What are the opening hours of this recycling facility?**
|
||||
The question is What are the opening hours of this recycling facility?
|
||||
|
||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||
This is rendered with `{opening_hours_table()}`
|
||||
|
||||
This is rendered with {opening_hours_table()}
|
||||
|
||||
|
||||
|
||||
- **24/7** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
|
||||
|
||||
|
||||
- 24/7 corresponds with `<a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/recycling/recycling.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/recycling/recycling.json)
|
739
Docs/Layers/school.md
Normal file
739
Docs/Layers/school.md
Normal file
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue