Merge master
This commit is contained in:
commit
80168f5d0d
919 changed files with 95585 additions and 8504 deletions
6
.github/workflows/codeql-analysis.yml
vendored
6
.github/workflows/codeql-analysis.yml
vendored
|
@ -37,7 +37,7 @@ jobs:
|
|||
|
||||
# Initializes the CodeQL tools for scanning.
|
||||
- name: Initialize CodeQL
|
||||
uses: github/codeql-action/init@v1
|
||||
uses: github/codeql-action/init@v2
|
||||
with:
|
||||
languages: ${{ matrix.language }}
|
||||
# If you wish to specify custom queries, you can do so here or in a config file.
|
||||
|
@ -48,7 +48,7 @@ jobs:
|
|||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||||
# If this step fails, then you should remove it and run the build manually (see below)
|
||||
- name: Autobuild
|
||||
uses: github/codeql-action/autobuild@v1
|
||||
uses: github/codeql-action/autobuild@v2
|
||||
|
||||
# ℹ️ Command-line programs to run using the OS shell.
|
||||
# 📚 https://git.io/JvXDl
|
||||
|
@ -62,4 +62,4 @@ jobs:
|
|||
# make release
|
||||
|
||||
- name: Perform CodeQL Analysis
|
||||
uses: github/codeql-action/analyze@v1
|
||||
uses: github/codeql-action/analyze@v2
|
||||
|
|
2
.github/workflows/deploy_pietervdvn.yml
vendored
2
.github/workflows/deploy_pietervdvn.yml
vendored
|
@ -5,9 +5,11 @@ on:
|
|||
- develop
|
||||
- feature/*
|
||||
- theme/*
|
||||
- refactoring/*
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ github.actor != 'weblate' }}
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
|
|
37
.github/workflows/validate_translations.yml
vendored
Normal file
37
.github/workflows/validate_translations.yml
vendored
Normal file
|
@ -0,0 +1,37 @@
|
|||
name: Deployment on pietervdvn
|
||||
on:
|
||||
pull_request
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ github.actor == 'weblate' }}
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: "16"
|
||||
cache: "npm"
|
||||
cache-dependency-path: package-lock.json
|
||||
|
||||
- name: install deps
|
||||
run: npm ci
|
||||
shell: bash
|
||||
|
||||
- name: create generated dir
|
||||
run: mkdir ./assets/generated
|
||||
shell: bash
|
||||
|
||||
- name: sync translations
|
||||
run: npm run generate:translations
|
||||
shell: bash
|
||||
|
||||
- name: generate layeroverview
|
||||
run: npm run reset:layeroverview
|
||||
shell: bash
|
||||
|
||||
- name: run tests
|
||||
run: npm run test
|
||||
shell: bash
|
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -5,7 +5,7 @@ node_modules
|
|||
scratch
|
||||
assets/editor-layer-index.json
|
||||
assets/generated/*
|
||||
assets/generated/images/*
|
||||
src/assets/generated/
|
||||
public/*.webmanifest
|
||||
/*.html
|
||||
!/index.html
|
||||
|
|
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
|
@ -17,5 +17,6 @@
|
|||
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
||||
"[svelte]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
}
|
||||
},
|
||||
"editor.formatOnSave": true
|
||||
}
|
||||
|
|
2
404.html
2
404.html
|
@ -49,7 +49,7 @@
|
|||
Not found...
|
||||
</div>
|
||||
|
||||
<script type="module" src="./notfound.ts"></script>
|
||||
<script type="module" src="./src/notfound.ts"></script>
|
||||
<script async data-goatcounter="https://pietervdvn.goatcounter.com/count" src="//gc.zgo.at/count.js"></script>
|
||||
|
||||
</body>
|
||||
|
|
|
@ -1,104 +0,0 @@
|
|||
import questions from "../assets/tagRenderings/questions.json"
|
||||
import { Utils } from "../Utils"
|
||||
import TagRenderingConfig from "../Models/ThemeConfig/TagRenderingConfig"
|
||||
import { TagRenderingConfigJson } from "../Models/ThemeConfig/Json/TagRenderingConfigJson"
|
||||
import BaseUIElement from "../UI/BaseUIElement"
|
||||
import Combine from "../UI/Base/Combine"
|
||||
import Title from "../UI/Base/Title"
|
||||
import { FixedUiElement } from "../UI/Base/FixedUiElement"
|
||||
import List from "../UI/Base/List"
|
||||
|
||||
export default class SharedTagRenderings {
|
||||
public static SharedTagRendering: Map<string, TagRenderingConfig> =
|
||||
SharedTagRenderings.generatedSharedFields()
|
||||
public static SharedTagRenderingJson: Map<string, TagRenderingConfigJson> =
|
||||
SharedTagRenderings.generatedSharedFieldsJsons()
|
||||
|
||||
private static generatedSharedFields(): Map<string, TagRenderingConfig> {
|
||||
const configJsons = SharedTagRenderings.generatedSharedFieldsJsons()
|
||||
const d = new Map<string, TagRenderingConfig>()
|
||||
for (const key of Array.from(configJsons.keys())) {
|
||||
try {
|
||||
d.set(
|
||||
key,
|
||||
new TagRenderingConfig(configJsons.get(key), `SharedTagRenderings.${key}`)
|
||||
)
|
||||
} catch (e) {
|
||||
if (!Utils.runningFromConsole) {
|
||||
console.error(
|
||||
"BUG: could not parse",
|
||||
key,
|
||||
" from questions.json - this error happened during the build step of the SharedTagRenderings",
|
||||
e
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
return d
|
||||
}
|
||||
|
||||
private static generatedSharedFieldsJsons(): Map<string, TagRenderingConfigJson> {
|
||||
const dict = new Map<string, TagRenderingConfigJson>()
|
||||
|
||||
for (const key in questions) {
|
||||
if (key === "id") {
|
||||
continue
|
||||
}
|
||||
dict.set(key, <TagRenderingConfigJson>questions[key])
|
||||
}
|
||||
|
||||
dict.forEach((value, key) => {
|
||||
if (key === "id") {
|
||||
return
|
||||
}
|
||||
value.id = value.id ?? key
|
||||
if (value["builtin"] !== undefined) {
|
||||
if (value["override"] == undefined) {
|
||||
throw (
|
||||
"HUH? Why whould you want to reuse a builtin if one doesn't override? In questions.json/" +
|
||||
key
|
||||
)
|
||||
}
|
||||
if (typeof value["builtin"] !== "string") {
|
||||
return
|
||||
}
|
||||
// This is a really funny situation: we extend another tagRendering!
|
||||
const parent = Utils.Clone(dict.get(value["builtin"]))
|
||||
delete parent.id
|
||||
Utils.Merge(value["override"], parent)
|
||||
delete value["builtin"]
|
||||
delete value["override"]
|
||||
for (const pkey in parent) {
|
||||
value[pkey] = parent[pkey]
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
return dict
|
||||
}
|
||||
|
||||
public static HelpText(): BaseUIElement {
|
||||
return new Combine([
|
||||
new Combine([
|
||||
new Title("Builtin questions", 1),
|
||||
|
||||
"The following items can be easily reused in your layers",
|
||||
]).SetClass("flex flex-col"),
|
||||
|
||||
...Array.from(SharedTagRenderings.SharedTagRendering.keys()).map((key) => {
|
||||
const tr = SharedTagRenderings.SharedTagRendering.get(key)
|
||||
let mappings: BaseUIElement = undefined
|
||||
if (tr.mappings?.length > 0) {
|
||||
mappings = new List(tr.mappings.map((m) => m.then.textFor("en")))
|
||||
}
|
||||
return new Combine([
|
||||
new Title(key),
|
||||
tr.render?.textFor("en"),
|
||||
tr.question?.textFor("en") ??
|
||||
new FixedUiElement("Read-only tagrendering").SetClass("font-bold"),
|
||||
mappings,
|
||||
]).SetClass("flex flex-col")
|
||||
}),
|
||||
]).SetClass("flex flex-col")
|
||||
}
|
||||
}
|
|
@ -33,6 +33,7 @@
|
|||
+ [internet-fee](#internet-fee)
|
||||
+ [internet-ssid](#internet-ssid)
|
||||
+ [reviews](#reviews)
|
||||
+ [questions](#questions)
|
||||
+ [climbing.website](#climbingwebsite)
|
||||
+ [climbing.fee](#climbingfee)
|
||||
+ [climbing.bouldering](#climbingbouldering)
|
||||
|
@ -45,7 +46,6 @@
|
|||
+ [opening_hours_by_appointment](#opening_hours_by_appointment)
|
||||
+ [multilevels](#multilevels)
|
||||
+ [induction-loop](#induction-loop)
|
||||
+ [questions](#questions)
|
||||
+ [all_tags](#all_tags)
|
||||
+ [export_as_gpx](#export_as_gpx)
|
||||
+ [export_as_geojson](#export_as_geojson)
|
||||
|
@ -145,6 +145,7 @@
|
|||
- reception_desk
|
||||
- recycling
|
||||
- shops
|
||||
- shower
|
||||
- slow_roads
|
||||
- sport_pitch
|
||||
- sports_centre
|
||||
|
@ -158,6 +159,7 @@
|
|||
- trail
|
||||
- transit_stops
|
||||
- tree_node
|
||||
- vending_machine
|
||||
- viewpoint
|
||||
- village_green
|
||||
- waste_basket
|
||||
|
@ -224,7 +226,10 @@
|
|||
- kindergarten_childcare
|
||||
- pharmacy
|
||||
- postoffices
|
||||
- questions
|
||||
- questions
|
||||
- shops
|
||||
- shower
|
||||
- sports_centre
|
||||
- toilet_at_amenity
|
||||
- veterinary
|
||||
|
@ -377,6 +382,8 @@
|
|||
- climbing_gym
|
||||
- food
|
||||
- observation_tower
|
||||
- questions
|
||||
- questions
|
||||
- shops
|
||||
- ticket_validator
|
||||
|
||||
|
@ -409,6 +416,7 @@
|
|||
- parcel_lockers
|
||||
- recycling
|
||||
- toilet
|
||||
- vending_machine
|
||||
|
||||
|
||||
|
||||
|
@ -428,13 +436,16 @@
|
|||
- hackerspace
|
||||
- parking
|
||||
- picnic_table
|
||||
- questions
|
||||
- railway_platforms
|
||||
- reception_desk
|
||||
- shops
|
||||
- shower
|
||||
- ticket_machine
|
||||
- ticket_validator
|
||||
- toilet
|
||||
- toilet_at_amenity
|
||||
- vending_machine
|
||||
|
||||
|
||||
|
||||
|
@ -578,6 +589,23 @@
|
|||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- charging_station
|
||||
- etymology
|
||||
- hackerspace
|
||||
- play_forest
|
||||
- playground
|
||||
- shops
|
||||
- sport_pitch
|
||||
|
||||
|
||||
|
||||
|
||||
### climbing.website
|
||||
|
||||
|
||||
|
@ -715,22 +743,6 @@
|
|||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- etymology
|
||||
- hackerspace
|
||||
- play_forest
|
||||
- playground
|
||||
- shops
|
||||
- sport_pitch
|
||||
|
||||
|
||||
|
||||
|
||||
### all_tags
|
||||
|
||||
|
||||
|
@ -793,8 +805,10 @@
|
|||
|
||||
|
||||
- parking_ticket_machine
|
||||
- shower
|
||||
- ticket_machine
|
||||
- toilet
|
||||
- vending_machine
|
||||
|
||||
|
||||
|
||||
|
@ -807,6 +821,7 @@
|
|||
|
||||
- parking_ticket_machine
|
||||
- ticket_machine
|
||||
- vending_machine
|
||||
|
||||
|
||||
|
||||
|
@ -819,6 +834,7 @@
|
|||
|
||||
- parking_ticket_machine
|
||||
- ticket_machine
|
||||
- vending_machine
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,15 +1,22 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
Builtin questions
|
||||
===================
|
||||
questions
|
||||
===========
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Special library layer which does not need a '.questions'-prefix before being imported
|
||||
|
||||
|
||||
|
||||
The following items can be easily reused in your layers
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [Builtin questions](#builtin-questions)
|
||||
1. [questions](#questions)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [questions](#questions)
|
||||
+ [images](#images)
|
||||
+ [mapillary](#mapillary)
|
||||
|
@ -34,6 +41,7 @@ The following items can be easily reused in your layers
|
|||
+ [payment-options-advanced](#payment-options-advanced)
|
||||
+ [denominations-coins](#denominations-coins)
|
||||
+ [denominations-notes](#denominations-notes)
|
||||
+ [last_edit](#last_edit)
|
||||
+ [all_tags](#all_tags)
|
||||
+ [just_created](#just_created)
|
||||
+ [multilevels](#multilevels)
|
||||
|
@ -49,13 +57,76 @@ The following items can be easily reused in your layers
|
|||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **0** and higher
|
||||
- Elements don't have a title set and cannot be toggled nor will they show up in the dashboard. If you import this layer in your theme, override `title` to make this toggleable.
|
||||
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
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/wikidata#values) [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) |
|
||||
[<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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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)
|
||||
[<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)
|
||||
[<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/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/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/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | ["by appointment"](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D"by appointment")
|
||||
[<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/payment:coins:denominations#values) [payment:coins:denominations](https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations) | Multiple choice | [0.01 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.01 EUR) [0.02 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.02 EUR) [0.05 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 EUR) [0.10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 EUR) [0.20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 EUR) [0.50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 EUR) [1 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 EUR) [2 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 EUR)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/payment:notes:denominations#values) [payment:notes:denominations](https://wiki.openstreetmap.org/wiki/Key:payment:notes:denominations) | Multiple choice | [5 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D5 EUR) [10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D10 EUR) [20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D20 EUR) [50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D50 EUR) [100 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D100 EUR) [200 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D200 EUR) [500 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D500 EUR)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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/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/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/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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access:ssid#values) [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom)
|
||||
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
{questions()}
|
||||
Show the questions block at this location
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
*Read-only tagrendering*
|
||||
|
||||
|
||||
|
||||
|
@ -63,9 +134,11 @@ The following items can be easily reused in your layers
|
|||
|
||||
|
||||
|
||||
{image_carousel()}{image_upload()}
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
*Read-only tagrendering*
|
||||
|
||||
|
||||
|
||||
|
@ -73,9 +146,11 @@ The following items can be easily reused in your layers
|
|||
|
||||
|
||||
|
||||
{mapillary()}
|
||||
Shows a button to open Mapillary on this location
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
*Read-only tagrendering*
|
||||
|
||||
|
||||
|
||||
|
@ -83,9 +158,11 @@ The following items can be easily reused in your layers
|
|||
|
||||
|
||||
|
||||
{export_as_gpx()}
|
||||
Shows a button to export this feature as GPX. Especially useful for route relations
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
*Read-only tagrendering*
|
||||
|
||||
|
||||
|
||||
|
@ -93,9 +170,11 @@ The following items can be easily reused in your layers
|
|||
|
||||
|
||||
|
||||
{export_as_geojson()}
|
||||
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
|
||||
|
||||
|
||||
*Read-only tagrendering*
|
||||
|
||||
|
||||
|
||||
|
@ -103,14 +182,22 @@ The following items can be easily reused in your layers
|
|||
|
||||
|
||||
|
||||
{wikipedia():max-height:25rem}
|
||||
Shows a wikipedia box with the corresponding wikipedia article; the wikidata-item link can be changed by a contributor
|
||||
|
||||
What is the corresponding Wikidata entity?
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
- {wikipedia():max-height:25rem}
|
||||
- No Wikipedia page has been linked yet
|
||||
|
||||
|
||||
- *{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
|
||||
|
||||
|
||||
|
||||
|
@ -119,9 +206,11 @@ What is the corresponding Wikidata entity?
|
|||
|
||||
|
||||
|
||||
{reviews()}
|
||||
Shows the reviews module (including the possibility to leave a review)
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
*Read-only tagrendering*
|
||||
|
||||
|
||||
|
||||
|
@ -129,9 +218,11 @@ What is the corresponding Wikidata entity?
|
|||
|
||||
|
||||
|
||||
{minimap(18, id): width:100%; height:8rem; border-radius:2rem; overflow: hidden; pointer-events: none;}
|
||||
Shows a small map with the feature. Added by default to every popup
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
*Read-only tagrendering*
|
||||
|
||||
|
||||
|
||||
|
@ -139,28 +230,35 @@ What is the corresponding Wikidata entity?
|
|||
|
||||
|
||||
|
||||
<a href='tel:{phone}'>{phone}</a>
|
||||
The question is *What is the phone number of {title()}?*
|
||||
|
||||
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>
|
||||
|
||||
|
||||
- *<a href='tel:{contact:phone}'>{contact:phone}</a>* corresponds with `contact:phone~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### osmlink
|
||||
|
||||
|
||||
|
||||
<a href='https://openstreetmap.org/{id}' target='_blank'><img src='./assets/svg/osm-logo-us.svg'/></a>
|
||||
|
||||
*Read-only tagrendering*
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
- <span class='alert'>Uploading...</alert>
|
||||
|
||||
|
||||
- *<span class='alert'>Uploading...</alert>* corresponds with `id~^(=-)$`
|
||||
|
||||
|
||||
|
||||
|
@ -169,44 +267,60 @@ What is the phone number of {title()}?
|
|||
|
||||
|
||||
|
||||
<a href='mailto:{email}' target='_blank'>{email}</a>
|
||||
The question is *What is the email address of {title()}?*
|
||||
|
||||
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>
|
||||
|
||||
|
||||
- *<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>* corresponds with `contact:email~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### website
|
||||
|
||||
|
||||
|
||||
<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>
|
||||
The question is *What is the website of {title()}?*
|
||||
|
||||
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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
- <a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### wheelchair-access
|
||||
|
||||
|
||||
|
||||
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
|
||||
- This place is easily reachable with a wheelchair
|
||||
- It is possible to reach this place in a wheelchair, but it is not easy
|
||||
- This place is not reachable with a wheelchair
|
||||
|
||||
|
||||
- *This place is specially adapted for wheelchair users* corresponds with `wheelchair=designated`
|
||||
- *This place is easily reachable with a wheelchair* corresponds with `wheelchair=yes`
|
||||
- *It is possible to reach this place in a wheelchair, but it is not easy* corresponds with `wheelchair=limited`
|
||||
- *This place is not reachable with a wheelchair* corresponds with `wheelchair=no`
|
||||
|
||||
|
||||
|
||||
|
@ -215,14 +329,16 @@ Is this place accessible with a wheelchair?
|
|||
|
||||
|
||||
|
||||
Are dogs allowed in this business?
|
||||
The question is *Are dogs allowed in this business?*
|
||||
|
||||
|
||||
|
||||
- Dogs are allowed
|
||||
- Dogs are <b>not</b> allowed
|
||||
- Dogs are allowed, but they have to be leashed
|
||||
- Dogs are allowed and can run around freely
|
||||
|
||||
|
||||
- *Dogs are allowed* corresponds with `dog=yes`
|
||||
- *Dogs are <b>not</b> allowed* corresponds with `dog=no`
|
||||
- *Dogs are allowed, but they have to be leashed* corresponds with `dog=leashed`
|
||||
- *Dogs are allowed and can run around freely* corresponds with `dog=unleashed`
|
||||
|
||||
|
||||
|
||||
|
@ -231,9 +347,13 @@ Are dogs allowed in this business?
|
|||
|
||||
|
||||
|
||||
{description}
|
||||
The question is *Is there still some relevant info that the previous questions did not cover? Feel free to add it here.*
|
||||
|
||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||
|
||||
This is rendered with `{description}`
|
||||
|
||||
|
||||
Is there still some relevant info that the previous questions did not cover? Feel free to add it here.
|
||||
|
||||
|
||||
|
||||
|
@ -241,9 +361,13 @@ Is there still some relevant info that the previous questions did not cover? Fee
|
|||
|
||||
|
||||
|
||||
<h3>Opening hours</h3>{opening_hours_table(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)}`
|
||||
|
||||
|
||||
What are the opening hours of {title()}?
|
||||
|
||||
|
||||
|
||||
|
@ -251,13 +375,17 @@ What are the opening hours of {title()}?
|
|||
|
||||
|
||||
|
||||
<h3>Opening hours</h3>{opening_hours_table(opening_hours)}
|
||||
The question is *What are the opening hours of {title()}?*
|
||||
|
||||
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)}`
|
||||
|
||||
|
||||
|
||||
- 24/7 opened (including holidays)
|
||||
|
||||
|
||||
- *24/7 opened (including holidays)* corresponds with `opening_hours=24/7`
|
||||
|
||||
|
||||
|
||||
|
@ -266,14 +394,19 @@ What are the opening hours of {title()}?
|
|||
|
||||
|
||||
|
||||
<h3>Opening hours</h3>{opening_hours_table(opening_hours)}
|
||||
The question is *What are the opening hours of {title()}?*
|
||||
|
||||
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 by appointment
|
||||
- Only by appointment
|
||||
|
||||
|
||||
- *Only by appointment* corresponds with `opening_hours="by appointment"`
|
||||
- *Only by appointment* corresponds with `opening_hours~^("by appointment"|by appointment)$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
@ -282,14 +415,16 @@ What are the opening hours of {title()}?
|
|||
|
||||
|
||||
|
||||
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
|
||||
- There are a few domestic sockets available to customers seated indoors, where they can charge their electronics
|
||||
- There are no sockets available indoors to customers, but charging might be possible if the staff is asked
|
||||
- There are a no domestic sockets available to customers seated indoors
|
||||
|
||||
|
||||
- *There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics* corresponds with `service:electricity=yes`
|
||||
- *There are a few domestic sockets available to customers seated indoors, where they can charge their electronics* corresponds with `service:electricity=limited`
|
||||
- *There are no sockets available indoors to customers, but charging might be possible if the staff is asked* corresponds with `service:electricity=ask`
|
||||
- *There are a no domestic sockets available to customers seated indoors* corresponds with `service:electricity=no`
|
||||
|
||||
|
||||
|
||||
|
@ -298,13 +433,18 @@ Does this amenity have electrical outlets, available to customers when they are
|
|||
|
||||
|
||||
|
||||
Which methods of payment are accepted here?
|
||||
The question is *Which methods of payment are accepted here?*
|
||||
|
||||
|
||||
|
||||
- Cash is accepted here
|
||||
- Payment cards are accepted here
|
||||
- Payment by QR-code is possible here
|
||||
|
||||
|
||||
- *Cash is accepted here* corresponds with `payment:cash=yes`
|
||||
- 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 `payment:cards=yes`
|
||||
- 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 by QR-code is possible here* corresponds with `payment:qr_code=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:qr_code' target='_blank'>payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:qr_code%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
@ -313,17 +453,28 @@ Which methods of payment are accepted here?
|
|||
|
||||
|
||||
|
||||
Which methods of payment are accepted here?
|
||||
The question is *Which methods of payment are accepted here?*
|
||||
|
||||
|
||||
|
||||
- Cash is accepted here
|
||||
- Payment cards are accepted here
|
||||
- Payment by QR-code is possible here
|
||||
- Coins are accepted here
|
||||
- Bank notes are accepted here
|
||||
- Debit cards are accepted here
|
||||
- Credit cards are accepted here
|
||||
|
||||
|
||||
- *Cash is accepted here* corresponds with `payment:cash=yes`
|
||||
- This option cannot be chosen as answer
|
||||
- Unselecting this answer will add
|
||||
- *Payment cards are accepted here* corresponds with `payment:cards=yes`
|
||||
- This option cannot be chosen as answer
|
||||
- Unselecting this answer will add
|
||||
- *Payment by QR-code is possible here* corresponds with `payment:qr_code=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:qr_code' target='_blank'>payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:qr_code%3Dno' target='_blank'>no</a>
|
||||
- *Coins are accepted here* corresponds with `payment:coins=yes`
|
||||
- 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>
|
||||
- *Bank notes are accepted here* corresponds with `payment:notes=yes`
|
||||
- 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>
|
||||
- *Debit cards are accepted here* corresponds with `payment:debit_cards=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:debit_cards' target='_blank'>payment:debit_cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:debit_cards%3Dno' target='_blank'>no</a>
|
||||
- *Credit cards are accepted here* corresponds with `payment:credit_cards=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:credit_cards' target='_blank'>payment:credit_cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:credit_cards%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
@ -332,15 +483,22 @@ Which methods of payment are accepted here?
|
|||
|
||||
|
||||
|
||||
Which methods of payment are accepted here?
|
||||
The question is *Which methods of payment are accepted here?*
|
||||
|
||||
|
||||
|
||||
- Cash is accepted here
|
||||
- Payment cards are accepted here
|
||||
- Payment by QR-code is possible here
|
||||
- Payment is done using a dedicated app
|
||||
- Payment is done using a membership card
|
||||
|
||||
|
||||
- *Cash is accepted here* corresponds with `payment:cash=yes`
|
||||
- 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 `payment:cards=yes`
|
||||
- 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 by QR-code is possible here* corresponds with `payment:qr_code=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:qr_code' target='_blank'>payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:qr_code%3Dno' target='_blank'>no</a>
|
||||
- *Payment is done using a dedicated app* corresponds with `payment:app=yes`
|
||||
- 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 `payment:membership_card=yes`
|
||||
- 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>
|
||||
|
||||
|
||||
|
||||
|
@ -349,48 +507,72 @@ Which methods of payment are accepted here?
|
|||
|
||||
|
||||
|
||||
What coins can you use to pay here?
|
||||
The question is *What coins can you use to pay here?*
|
||||
|
||||
|
||||
|
||||
- 1 cent coins are accepted
|
||||
- 2 cent coins are accepted
|
||||
- 5 cent coins are accepted
|
||||
- 10 cent coins are accepted
|
||||
- 20 cent coins are accepted
|
||||
- 50 cent coins are accepted
|
||||
- 1 euro coins are accepted
|
||||
- 2 euro coins are accepted
|
||||
|
||||
|
||||
- *1 cent coins are accepted* corresponds with `payment:coins:denominations=0.01 EUR`
|
||||
- *2 cent coins are accepted* corresponds with `payment:coins:denominations=0.02 EUR`
|
||||
- *5 cent coins are accepted* corresponds with `payment:coins:denominations=0.05 EUR`
|
||||
- *10 cent coins are accepted* corresponds with `payment:coins:denominations=0.10 EUR`
|
||||
- *20 cent coins are accepted* corresponds with `payment:coins:denominations=0.20 EUR`
|
||||
- *50 cent coins are accepted* corresponds with `payment:coins:denominations=0.50 EUR`
|
||||
- *1 euro coins are accepted* corresponds with `payment:coins:denominations=1 EUR`
|
||||
- *2 euro coins are accepted* corresponds with `payment:coins:denominations=2 EUR`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `payment:coins=yes|payment:cash=yes&_currency=EUR`
|
||||
|
||||
|
||||
|
||||
### denominations-notes
|
||||
|
||||
|
||||
|
||||
what notes can you use to pay here?
|
||||
The question is *what notes can you use to pay here?*
|
||||
|
||||
|
||||
|
||||
- 5 euro notes are accepted
|
||||
- 10 euro notes are accepted
|
||||
- 20 euro notes are accepted
|
||||
- 50 euro notes are accepted
|
||||
- 100 euro notes are accepted
|
||||
- 200 euro notes are accepted
|
||||
- 500 euro notes are accepted
|
||||
|
||||
|
||||
- *5 euro notes are accepted* corresponds with `payment:notes:denominations=5 EUR`
|
||||
- *10 euro notes are accepted* corresponds with `payment:notes:denominations=10 EUR`
|
||||
- *20 euro notes are accepted* corresponds with `payment:notes:denominations=20 EUR`
|
||||
- *50 euro notes are accepted* corresponds with `payment:notes:denominations=50 EUR`
|
||||
- *100 euro notes are accepted* corresponds with `payment:notes:denominations=100 EUR`
|
||||
- *200 euro notes are accepted* corresponds with `payment:notes:denominations=200 EUR`
|
||||
- *500 euro notes are accepted* corresponds with `payment:notes:denominations=500 EUR`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `payment:notes=yes|payment:cash=yes&_currency=EUR`
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all_tags
|
||||
|
||||
|
||||
|
||||
{all_tags()}
|
||||
Shows a table with all the tags of the feature
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
*Read-only tagrendering*
|
||||
|
||||
|
||||
|
||||
|
@ -398,30 +580,42 @@ what notes can you use to pay here?
|
|||
|
||||
|
||||
|
||||
*Read-only tagrendering*
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
- You just created this element! Thanks for sharing this info with the world and helping people worldwide.
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### multilevels
|
||||
|
||||
|
||||
|
||||
This elevator goes to floors {level}
|
||||
The question is *What levels does this elevator go to?*
|
||||
|
||||
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
|
||||
- Located on the ground floor
|
||||
- Located on the ground floor
|
||||
- Located on the first floor
|
||||
- Located on the first basement level
|
||||
|
||||
|
||||
- *Located underground* corresponds with `location=underground`
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the ground floor* corresponds with `level=0`
|
||||
- *Located on the ground floor* corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the first floor* corresponds with `level=1`
|
||||
- *Located on the first basement level* corresponds with `level=-1`
|
||||
|
||||
|
||||
|
||||
|
@ -430,17 +624,23 @@ What levels does this elevator go to?
|
|||
|
||||
|
||||
|
||||
Located on the {level}th floor
|
||||
The question is *On what level is this feature located?*
|
||||
|
||||
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
|
||||
- Located on the ground floor
|
||||
- Located on the ground floor
|
||||
- Located on the first floor
|
||||
- Located on the first basement level
|
||||
|
||||
|
||||
- *Located underground* corresponds with `location=underground`
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the ground floor* corresponds with `level=0`
|
||||
- *Located on the ground floor* corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the first floor* corresponds with `level=1`
|
||||
- *Located on the first basement level* corresponds with `level=-1`
|
||||
|
||||
|
||||
|
||||
|
@ -449,13 +649,15 @@ On what level is this feature located?
|
|||
|
||||
|
||||
|
||||
Is smoking allowed at {title()}?
|
||||
The question is *Is smoking allowed at {title()}?*
|
||||
|
||||
|
||||
|
||||
- Smoking is <b>allowed</b>
|
||||
- Smoking is <b>not allowed</b>
|
||||
- Smoking is <b>allowed outside</b>.
|
||||
|
||||
|
||||
- *Smoking is <b>allowed</b>* corresponds with `smoking=yes`
|
||||
- *Smoking is <b>not allowed</b>* corresponds with `smoking=no`
|
||||
- *Smoking is <b>allowed outside</b>.* corresponds with `smoking=outside`
|
||||
|
||||
|
||||
|
||||
|
@ -464,12 +666,16 @@ Is smoking allowed at {title()}?
|
|||
|
||||
|
||||
|
||||
Does this place have an audio induction loop for people with reduced hearing?
|
||||
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
|
||||
- This place <b>does not</b> have an audio induction loop
|
||||
|
||||
|
||||
- *This place has an audio induction loop* corresponds with `hearing_loop=yes`
|
||||
- *This place <b>does not</b> have an audio induction loop* corresponds with `hearing_loop=no`
|
||||
|
||||
|
||||
|
||||
|
@ -478,15 +684,18 @@ Does this place have an audio induction loop for people with reduced hearing?
|
|||
|
||||
|
||||
|
||||
Does this place offer internet access?
|
||||
The question is *Does this place offer internet access?*
|
||||
|
||||
|
||||
|
||||
- This place offers wireless internet access
|
||||
- This place <b>does not</b> offer internet access
|
||||
- This place offers internet access
|
||||
- This place offers internet access via a terminal or computer
|
||||
- This place offers wired internet access
|
||||
|
||||
|
||||
- *This place offers wireless internet access* corresponds with `internet_access=wlan`
|
||||
- *This place <b>does not</b> offer internet access* corresponds with `internet_access=no`
|
||||
- *This place offers internet access* corresponds with `internet_access=yes`
|
||||
- This option cannot be chosen as answer
|
||||
- *This place offers internet access via a terminal or computer* corresponds with `internet_access=terminal`
|
||||
- *This place offers wired internet access* corresponds with `internet_access=wired`
|
||||
|
||||
|
||||
|
||||
|
@ -495,44 +704,56 @@ Does this place offer internet access?
|
|||
|
||||
|
||||
|
||||
Is there a fee for internet access?
|
||||
The question is *Is there a fee for internet access?*
|
||||
|
||||
|
||||
|
||||
- There is a fee for the internet access at this place
|
||||
- Internet access is free at this place
|
||||
- Internet access is free at this place, for customers only
|
||||
|
||||
|
||||
- *There is a fee for the internet access at this place* corresponds with `internet_access:fee=yes`
|
||||
- *Internet access is free at this place* corresponds with `internet_access:fee=no`
|
||||
- *Internet access is free at this place, for customers only* corresponds with `internet_access:fee=customers`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `internet_access!=no&internet_access~.+`
|
||||
|
||||
|
||||
|
||||
### internet-ssid
|
||||
|
||||
|
||||
|
||||
The network name is <b>{internet_access:ssid}</b>
|
||||
The question is *What is the network name for the wireless internet access?*
|
||||
|
||||
What is the network name for the wireless internet access?
|
||||
This rendering asks information about the property [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid)
|
||||
|
||||
This is rendered with `The network name is <b>{internet_access:ssid}</b>`
|
||||
|
||||
|
||||
|
||||
- Telekom
|
||||
|
||||
|
||||
- *Telekom* corresponds with `internet_access:ssid=Telekom`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `internet_access=wlan`
|
||||
|
||||
|
||||
|
||||
### luminous_or_lit
|
||||
|
||||
|
||||
|
||||
Is this object lit or does it emit light?
|
||||
The question is *Is this object lit or does it emit light?*
|
||||
|
||||
|
||||
|
||||
- This object both emits light and is lighted by an external light source
|
||||
- This object emits light
|
||||
- This object is lit externally, e.g. by a spotlight or other lights
|
||||
- This object does not emit light and is not lighted by externally
|
||||
|
||||
|
||||
- *This object both emits light and is lighted by an external light source* corresponds with `lit=yes&luminous=yes`
|
||||
- *This object emits light* corresponds with `luminous=yes`
|
||||
- *This object is lit externally, e.g. by a spotlight or other lights* corresponds with `lit=yes`
|
||||
- *This object does not emit light and is not lighted by externally* corresponds with `lit=no&luminous=no`
|
||||
|
||||
|
||||
This document is autogenerated from [Customizations/SharedTagRenderings.ts](https://github.com/pietervdvn/MapComplete/blob/develop/Customizations/SharedTagRenderings.ts), [assets/tagRenderings/questions.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/tagRenderings/questions.json)
|
||||
This document is autogenerated from [assets/layers/questions/questions.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/questions/questions.json)
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
+ [_level](#_level)
|
||||
+ [_referencing_ways](#_referencing_ways)
|
||||
+ [_last_edit:passed_time](#_last_editpassed_time)
|
||||
+ [_currency](#_currency)
|
||||
+ [distanceTo](#distanceto)
|
||||
+ [overlapWith](#overlapwith)
|
||||
+ [enclosingFeatures](#enclosingfeatures)
|
||||
|
@ -223,6 +224,16 @@ This is a lazy metatag and is only calculated when needed
|
|||
|
||||
|
||||
|
||||
### _currency
|
||||
|
||||
|
||||
|
||||
Adds the currency valid for the object, based on country or explicit tagging. Can be a single currency or a semicolon-separated list of currencies. Empty if no currency is found.
|
||||
|
||||
This is a lazy metatag and is only calculated when needed
|
||||
|
||||
|
||||
|
||||
Calculating tags with Javascript
|
||||
----------------------------------
|
||||
|
||||
|
@ -351,4 +362,4 @@ If a 'unique tag key' is given, the tag with this key will only appear once (e.g
|
|||
0. key
|
||||
|
||||
|
||||
This document is autogenerated from [Logic/SimpleMetaTagger.ts](https://github.com/pietervdvn/MapComplete/blob/develop/Logic/SimpleMetaTagger.ts), [Logic/ExtraFunctions.ts](https://github.com/pietervdvn/MapComplete/blob/develop/Logic/ExtraFunctions.ts)
|
||||
This document is autogenerated from [src/Logic/SimpleMetaTagger.ts](https://github.com/pietervdvn/MapComplete/blob/develop/src/Logic/SimpleMetaTagger.ts), [src/Logic/ExtraFunctions.ts](https://github.com/pietervdvn/MapComplete/blob/develop/src/Logic/ExtraFunctions.ts)
|
||||
|
|
168
Docs/Layers/address.md
Normal file
168
Docs/Layers/address.md
Normal file
|
@ -0,0 +1,168 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
address
|
||||
=========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/address/housenumber_blank.svg' height="100px">
|
||||
|
||||
Addresses
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **18** and higher
|
||||
- This layer will automatically load [named_streets](./named_streets.md) into the layout as it depends on it: a calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _closest_3_street_names)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:housenumber#values) [addr:housenumber](https://wiki.openstreetmap.org/wiki/Key:addr:housenumber) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:street#values) [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:addr:street%3D) [](https://wiki.openstreetmap.org/wiki/Tag:addr:street%3D) [](https://wiki.openstreetmap.org/wiki/Tag:addr:street%3D)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/fixme#values) [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:fixme%3D)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### housenumber
|
||||
|
||||
|
||||
|
||||
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 house number is <b>{addr:housenumber}</b>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This building has no house number* corresponds with `nohousenumber=yes`
|
||||
|
||||
|
||||
|
||||
|
||||
### street
|
||||
|
||||
|
||||
|
||||
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>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *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=`
|
||||
|
||||
|
||||
|
||||
|
||||
### fixme
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *No fixme - write something here to explain complicated cases* corresponds with ``
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/address/address.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/address/address.json)
|
306
Docs/Layers/advertising.md
Normal file
306
Docs/Layers/advertising.md
Normal file
|
@ -0,0 +1,306 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
advertising
|
||||
=============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/advertising/sign.svg' height="100px">
|
||||
|
||||
We will complete data from advertising features with reference, operator and lit
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **15** and higher
|
||||
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[2])
|
||||
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[7])
|
||||
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[8])
|
||||
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[10])
|
||||
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[12])
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [advertising](https://mapcomplete.osm.be/advertising)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/advertising#values) [advertising](https://wiki.openstreetmap.org/wiki/Key:advertising) | [string](../SpecialInputElements.md#string) | [billboard](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dbillboard) [board](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dboard) [column](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dcolumn) [flag](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dflag) [poster_box](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dposter_box) [screen](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dscreen) [sculpture](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dsculpture) [sign](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dsign) [tarp](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dtarp) [totem](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dtotem) [wall_painting](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dwall_painting)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/animated#values) [animated](https://wiki.openstreetmap.org/wiki/Key:animated) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:animated%3Dno) [digital_display](https://wiki.openstreetmap.org/wiki/Tag:animated%3Ddigital_display) [trivision_blades](https://wiki.openstreetmap.org/wiki/Tag:animated%3Dtrivision_blades) [winding_posters](https://wiki.openstreetmap.org/wiki/Tag:animated%3Dwinding_posters) [revolving](https://wiki.openstreetmap.org/wiki/Tag:animated%3Drevolving)
|
||||
[<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) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/sides#values) [sides](https://wiki.openstreetmap.org/wiki/Key:sides) | Multiple choice | [1](https://wiki.openstreetmap.org/wiki/Tag:sides%3D1) [2](https://wiki.openstreetmap.org/wiki/Tag:sides%3D2)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### type
|
||||
|
||||
|
||||
|
||||
The question is *Which type of advertising feature is this?*
|
||||
|
||||
This rendering asks information about the property [advertising](https://wiki.openstreetmap.org/wiki/Key:advertising)
|
||||
|
||||
This is rendered with `This is a {advertising}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This is a billboard* corresponds with `advertising=billboard`
|
||||
- *This is a board* corresponds with `advertising=board`
|
||||
- *This is a column* corresponds with `advertising=column`
|
||||
- *This is a flag* corresponds with `advertising=flag`
|
||||
- *This is a poster Box* corresponds with `advertising=poster_box`
|
||||
- *This is a screen* corresponds with `advertising=screen`
|
||||
- *This is a sculpture* corresponds with `advertising=sculpture`
|
||||
- *This is a sign* corresponds with `advertising=sign`
|
||||
- *This is a tarp (a weatherproof piece of textile with an advertising message)* corresponds with `advertising=tarp`
|
||||
- *This is a totem* corresponds with `advertising=totem`
|
||||
- *This is a wall painting* corresponds with `advertising=wall_painting`
|
||||
|
||||
|
||||
|
||||
|
||||
### animated
|
||||
|
||||
|
||||
|
||||
The question is *Does this advertisement cycle through multiple messages?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<b>Static</b>, always shows the same message* corresponds with `animated=no`
|
||||
- *This object has a built-in <b>digital display</b> to show prices or some other message* corresponds with `animated=digital_display`
|
||||
- *<b>Trivision</b> - the billboard consists of many triangular prisms which regularly rotate* corresponds with `animated=trivision_blades`
|
||||
- *<b>Scrolling</b> posters* corresponds with `animated=winding_posters`
|
||||
- *<b>Rotates</b> on itself* corresponds with `animated=revolving`
|
||||
|
||||
|
||||
|
||||
|
||||
### luminous_or_lit
|
||||
|
||||
|
||||
|
||||
The question is *Is this object lit or does it emit light?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This is a neon-tube light* corresponds with `luminous=neon`
|
||||
- *This object both emits light and is lighted by an external light source* corresponds with `lit=yes&luminous=yes`
|
||||
- *This object emits light* corresponds with `luminous=yes`
|
||||
- *This object is lit externally, e.g. by a spotlight or other lights* corresponds with `lit=yes`
|
||||
- *This object does not emit light and is not lighted by externally* corresponds with `lit=no&luminous=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### operator
|
||||
|
||||
|
||||
|
||||
The question is *Who operates this feature?*
|
||||
|
||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||
|
||||
This is rendered with `Operated by {operator}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### message_type
|
||||
|
||||
|
||||
|
||||
The question is *What kind of message is shown?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Commercial message* corresponds with `message=commercial`
|
||||
- Unselecting this answer will add
|
||||
- *Local information* corresponds with `message=local`
|
||||
- Unselecting this answer will add
|
||||
- *Security information* corresponds with `message=safety`
|
||||
- Unselecting this answer will add
|
||||
- *Electoral advertising* corresponds with `message=political`
|
||||
- Unselecting this answer will add
|
||||
- *Information related to theatre, concerts, …* corresponds with `message=showbiz`
|
||||
- Unselecting this answer will add
|
||||
- *Message from non-profit organizations* corresponds with `message=non_profit`
|
||||
- Unselecting this answer will add
|
||||
- *To expres your opinion* corresponds with `message=opinion`
|
||||
- Unselecting this answer will add
|
||||
- *Religious message* corresponds with `message=religion`
|
||||
- Unselecting this answer will add
|
||||
- *Funding sign* corresponds with `message=funding`
|
||||
- Unselecting this answer will add
|
||||
- *A map* corresponds with `information=map`
|
||||
- Unselecting this answer will add
|
||||
|
||||
|
||||
|
||||
|
||||
### Sides
|
||||
|
||||
|
||||
|
||||
The question is *From how many sides you can watch advertisments?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This object has advertisements on a single side* corresponds with `sides=1`
|
||||
- *This object has advertisements on both sides* corresponds with `sides=2`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `advertising=poster_box|advertising=screen|advertising=billboard`
|
||||
|
||||
|
||||
|
||||
### ref
|
||||
|
||||
|
||||
|
||||
The question is *Wich is the reference number?*
|
||||
|
||||
This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref)
|
||||
|
||||
This is rendered with `Reference number is {ref}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/advertising/advertising.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/advertising/advertising.json)
|
200
Docs/Layers/all_streets.md
Normal file
200
Docs/Layers/all_streets.md
Normal file
|
@ -0,0 +1,200 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
all_streets
|
||||
=============
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Layer to mark any street as cyclestreet
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **18** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [cyclestreets](https://mapcomplete.osm.be/cyclestreets)
|
||||
- [street_lighting](https://mapcomplete.osm.be/street_lighting)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/traffic_sign#values) [traffic_sign](https://wiki.openstreetmap.org/wiki/Key:traffic_sign) | Multiple choice | [DE:244.1,1020-30](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1020-30) [DE:244.1,1022-12,1024-10](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1022-12,1024-10) [DE:244.1,1022-12](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1022-12) [DE:244.1,1024-10](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1024-10) [DE:244.1](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cyclestreet:start_date#values) [cyclestreet:start_date](https://wiki.openstreetmap.org/wiki/Key:cyclestreet:start_date) | [date](../SpecialInputElements.md#date) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
|
||||
|
||||
|
||||
|
||||
### is_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 `cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no`
|
||||
- *This street is a bicycle road* corresponds with `bicycle_road=yes`
|
||||
- This option cannot be chosen as answer
|
||||
- *This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)* corresponds with `bicycle_road=yes&maxspeed=30&source:maxspeed=DE:bicycle_road&vehicle=no&bicycle=designated`
|
||||
- *This street is a cyclestreet* corresponds with `cyclestreet=yes`
|
||||
- *This street will become a cyclestreet soon* corresponds with `proposed:cyclestreet=yes`
|
||||
- *This street will become a bicycle road soon* corresponds with `proposed:bicycle_road=yes`
|
||||
- *This street is not a cyclestreet* corresponds with ``
|
||||
|
||||
|
||||
|
||||
|
||||
### supplementary_sign
|
||||
|
||||
|
||||
|
||||
The question is *What sign does this bicycle road have?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Residents allowed* corresponds with `traffic_sign=DE:244.1,1020-30`
|
||||
- *Motor vehicles allowed* corresponds with `traffic_sign=DE:244.1,1022-12,1024-10`
|
||||
- *Motorcycles allowed* corresponds with `traffic_sign=DE:244.1,1022-12`
|
||||
- *Cars allowed* corresponds with `traffic_sign=DE:244.1,1024-10`
|
||||
- *There are no supplementary signs at this bicycle road.* corresponds with `traffic_sign=DE:244.1`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `bicycle_road=yes&_country=de`
|
||||
|
||||
|
||||
|
||||
### future_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}`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `proposed:cyclestreet=yes`
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### split-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/cyclestreets/cyclestreets.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/cyclestreets/cyclestreets.json)
|
217
Docs/Layers/ambulancestation.md
Normal file
217
Docs/Layers/ambulancestation.md
Normal file
|
@ -0,0 +1,217 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
ambulancestation
|
||||
==================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/hailhydrant/Twemoji_1f691.svg' height="100px">
|
||||
|
||||
An ambulance station is an area for storage of ambulance vehicles, medical equipment, personal protective equipment, and other medical supplies.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **12** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [hailhydrant](https://mapcomplete.osm.be/hailhydrant)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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/addr:street#values) [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:place#values) [addr:place](https://wiki.openstreetmap.org/wiki/Key:addr:place) | [string](../SpecialInputElements.md#string) |
|
||||
[<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) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator:type#values) [operator:type](https://wiki.openstreetmap.org/wiki/Key:operator:type) | [string](../SpecialInputElements.md#string) | [government](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment) [community](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity) [ngo](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dngo) [private](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dprivate)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### ambulance-name
|
||||
|
||||
|
||||
|
||||
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}.`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### ambulance-street
|
||||
|
||||
|
||||
|
||||
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}.`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### ambulance-place
|
||||
|
||||
|
||||
|
||||
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}.`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### ambulance-agency
|
||||
|
||||
|
||||
|
||||
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}.`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### ambulance-operator-type
|
||||
|
||||
|
||||
|
||||
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.`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *The station is operated by the government.* corresponds with `operator:type=government`
|
||||
- *The station is operated by a community-based, or informal organization.* corresponds with `operator:type=community`
|
||||
- *The station is operated by a formal group of volunteers.* corresponds with `operator:type=ngo`
|
||||
- *The station is privately operated.* corresponds with `operator:type=private`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/ambulancestation/ambulancestation.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/ambulancestation/ambulancestation.json)
|
313
Docs/Layers/artwork.md
Normal file
313
Docs/Layers/artwork.md
Normal file
|
@ -0,0 +1,313 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
artwork
|
||||
=========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/artwork/artwork.svg' height="100px">
|
||||
|
||||
An open map of statues, busts, graffitis and other artwork all over the world
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **12** and higher
|
||||
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[1])
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [artwork](https://mapcomplete.osm.be/artwork)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/artwork_type#values) [artwork_type](https://wiki.openstreetmap.org/wiki/Key:artwork_type) | [string](../SpecialInputElements.md#string) | [architecture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture) [mural](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural) [painting](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpainting) [sculpture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dsculpture) [statue](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstatue) [bust](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dbust) [stone](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstone) [installation](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dinstallation) [graffiti](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dgraffiti) [relief](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Drelief) [azulejo](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo) [tilework](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework) [woodcarving](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dwoodcarving)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/artist:wikidata#values) [artist:wikidata](https://wiki.openstreetmap.org/wiki/Key:artist:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/artist_name#values) [artist_name](https://wiki.openstreetmap.org/wiki/Key:artist_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/wikidata#values) [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/subject:wikidata#values) [subject:wikidata](https://wiki.openstreetmap.org/wiki/Key:subject:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) |
|
||||
[<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 | [bench](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbench) [](https://wiki.openstreetmap.org/wiki/Tag:amenity%3D)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### artwork-artwork_type
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Architecture* corresponds with `artwork_type=architecture`
|
||||
- *Mural* corresponds with `artwork_type=mural`
|
||||
- *Painting* corresponds with `artwork_type=painting`
|
||||
- *Sculpture* corresponds with `artwork_type=sculpture`
|
||||
- *Statue* corresponds with `artwork_type=statue`
|
||||
- *Bust* corresponds with `artwork_type=bust`
|
||||
- *Stone* corresponds with `artwork_type=stone`
|
||||
- *Installation* corresponds with `artwork_type=installation`
|
||||
- *Graffiti* corresponds with `artwork_type=graffiti`
|
||||
- *Relief* corresponds with `artwork_type=relief`
|
||||
- *Azulejo (Spanish decorative tilework)* corresponds with `artwork_type=azulejo`
|
||||
- *Tilework* corresponds with `artwork_type=tilework`
|
||||
- *Woodcarving* corresponds with `artwork_type=woodcarving`
|
||||
|
||||
|
||||
This tagrendering has labels `artwork-question`
|
||||
|
||||
|
||||
|
||||
### artwork-artist-wikidata
|
||||
|
||||
|
||||
|
||||
The question is *Who made this artwork?*
|
||||
|
||||
This rendering asks information about the property [artist:wikidata](https://wiki.openstreetmap.org/wiki/Key:artist:wikidata)
|
||||
|
||||
This is rendered with `This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}`
|
||||
|
||||
|
||||
|
||||
This tagrendering has labels `artwork-question`
|
||||
|
||||
|
||||
|
||||
### artwork-artist_name
|
||||
|
||||
|
||||
|
||||
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 tagrendering has labels `artwork-question`
|
||||
|
||||
|
||||
|
||||
### artwork-website
|
||||
|
||||
|
||||
|
||||
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 tagrendering has labels `artwork-question`
|
||||
|
||||
|
||||
|
||||
### wikipedia
|
||||
|
||||
|
||||
|
||||
Shows a wikipedia box with the corresponding wikipedia article; the wikidata-item link can be changed by a contributor
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *{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
|
||||
|
||||
|
||||
|
||||
|
||||
### artwork_subject
|
||||
|
||||
|
||||
|
||||
The question is *What does this artwork depict?*
|
||||
|
||||
This rendering asks information about the property [subject:wikidata](https://wiki.openstreetmap.org/wiki/Key:subject:wikidata)
|
||||
|
||||
This is rendered with `This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `subject:wikidata~.+`
|
||||
|
||||
This tagrendering has labels `artwork-question`
|
||||
|
||||
|
||||
|
||||
### doubles_as_bench
|
||||
|
||||
|
||||
|
||||
The question is *Does this artwork serve as a bench?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This artwork also serves as a bench* corresponds with `amenity=bench`
|
||||
- *This artwork does not serve as a bench* corresponds with ``
|
||||
- *This artwork does not serve as a bench* corresponds with `amenity!=bench`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
has_image.0 | With and without images (default) |
|
||||
has_image.1 | Has at least one image | image~.+\|image:0~.+|image:1~.+|image:2~.+|image:3~.+|mapillary~.+
|
||||
has_image.2 | Probably does not have an image |
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/artwork/artwork.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/artwork/artwork.json)
|
315
Docs/Layers/atm.md
Normal file
315
Docs/Layers/atm.md
Normal file
|
@ -0,0 +1,315 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
atm
|
||||
=====
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/atm/atm.svg' height="100px">
|
||||
|
||||
ATMs to withdraw money
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **13** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [atm](https://mapcomplete.osm.be/atm)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/brand#values) [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [string](../SpecialInputElements.md#string) |
|
||||
[<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) |
|
||||
[<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/cash_out#values) [cash_out](https://wiki.openstreetmap.org/wiki/Key:cash_out) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:cash_out%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:cash_out%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cash_in#values) [cash_in](https://wiki.openstreetmap.org/wiki/Key:cash_in) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:cash_in%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:cash_in%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cash_out:notes:denominations#values) [cash_out:notes:denominations](https://wiki.openstreetmap.org/wiki/Key:cash_out:notes:denominations) | Multiple choice | [5 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D5 EUR) [10 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D10 EUR) [20 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D20 EUR) [50 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D50 EUR) [100 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D100 EUR) [200 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D200 EUR) [500 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D500 EUR)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/speech_output#values) [speech_output](https://wiki.openstreetmap.org/wiki/Key:speech_output) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:speech_output%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:speech_output%3Dno)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `name~.+`
|
||||
|
||||
|
||||
|
||||
### brand
|
||||
|
||||
|
||||
|
||||
The question is *What brand is this ATM?*
|
||||
|
||||
This rendering asks information about the property [brand](https://wiki.openstreetmap.org/wiki/Key:brand)
|
||||
|
||||
This is rendered with `The brand of this ATM is {brand}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### operator
|
||||
|
||||
|
||||
|
||||
The question is *What company operates this ATM?*
|
||||
|
||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||
|
||||
This is rendered with `The ATM is operated by {operator}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### 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)}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### cash_out
|
||||
|
||||
|
||||
|
||||
The question is *Can you withdraw cash from this ATM?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You can withdraw cash from this ATM* corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- *You can withdraw cash from this ATM* corresponds with `cash_out=yes`
|
||||
- *You cannot withdraw cash from this ATM* corresponds with `cash_out=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### cash_in
|
||||
|
||||
|
||||
|
||||
The question is *Can you deposit cash into this ATM?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You probably cannot deposit cash into this ATM* corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- *You can deposit cash into this ATM* corresponds with `cash_in=yes`
|
||||
- *You cannot deposit cash into this ATM* corresponds with `cash_in=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### cash_out-denominations-notes
|
||||
|
||||
|
||||
|
||||
The question is *What notes can you withdraw here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *5 euro notes can be withdrawn* corresponds with `cash_out:notes:denominations=5 EUR`
|
||||
- *10 euro notes can be withdrawn* corresponds with `cash_out:notes:denominations=10 EUR`
|
||||
- *20 euro notes can be withdrawn* corresponds with `cash_out:notes:denominations=20 EUR`
|
||||
- *50 euro notes can be withdrawn* corresponds with `cash_out:notes:denominations=50 EUR`
|
||||
- *100 euro notes can be withdrawn* corresponds with `cash_out:notes:denominations=100 EUR`
|
||||
- *200 euro notes can be withdrawn* corresponds with `cash_out:notes:denominations=200 EUR`
|
||||
- *500 euro notes can be withdrawn* corresponds with `cash_out:notes:denominations=500 EUR`
|
||||
|
||||
|
||||
|
||||
|
||||
### speech_output
|
||||
|
||||
|
||||
|
||||
The question is *Does this ATM have speech output for visually impaired users?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This ATM has speech output, usually available through a headphone jack* corresponds with `speech_output=yes`
|
||||
- *This ATM does not have speech output* corresponds with `speech_output=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### speech_output_language
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `speech_output=yes`
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
open_now.0 | Open now | _isOpen=yes
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
speech_output.0 | With speech output | speech_output=yes
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/atm/atm.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/atm/atm.json)
|
155
Docs/Layers/bank.md
Normal file
155
Docs/Layers/bank.md
Normal file
|
@ -0,0 +1,155 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
bank
|
||||
======
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/bank/bank.svg' height="100px">
|
||||
|
||||
A financial institution to deposit money
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **0** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [atm](https://mapcomplete.osm.be/atm)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/atm#values) [atm](https://wiki.openstreetmap.org/wiki/Key:atm) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dno) [separate](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dseparate)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### has_atm
|
||||
|
||||
|
||||
|
||||
The question is *Does this bank have an ATM?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This bank has an ATM* corresponds with `atm=yes`
|
||||
- *This bank does <b>not</b> have an ATM* corresponds with `atm=no`
|
||||
- *This bank does have an ATM, but it is mapped as a different icon* corresponds with `atm=separate`
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
open_now.0 | Open now | _isOpen=yes
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
has_atm.0 | With an ATM | atm=yes
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/bank/bank.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bank/bank.json)
|
155
Docs/Layers/banks_with_atm.md
Normal file
155
Docs/Layers/banks_with_atm.md
Normal file
|
@ -0,0 +1,155 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
banks_with_atm
|
||||
================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/bank/bank.svg' height="100px">
|
||||
|
||||
A financial institution to deposit money
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **14** and higher
|
||||
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [atm](https://mapcomplete.osm.be/atm)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/atm#values) [atm](https://wiki.openstreetmap.org/wiki/Key:atm) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dno) [separate](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dseparate)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### has_atm
|
||||
|
||||
|
||||
|
||||
The question is *Does this bank have an ATM?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This bank has an ATM* corresponds with `atm=yes`
|
||||
- *This bank does <b>not</b> have an ATM* corresponds with `atm=no`
|
||||
- *This bank does have an ATM, but it is mapped as a different icon* corresponds with `atm=separate`
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
open_now.0 | Open now | _isOpen=yes
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
has_atm.0 | With an ATM | atm=yes
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/atm/atm.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/atm/atm.json)
|
288
Docs/Layers/barrier.md
Normal file
288
Docs/Layers/barrier.md
Normal file
|
@ -0,0 +1,288 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
barrier
|
||||
=========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/barrier/barrier.svg' height="100px">
|
||||
|
||||
Obstacles while cycling, such as bollards and cycle barriers
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **17** and higher
|
||||
- This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[0])
|
||||
- This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[1])
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [cycle_infra](https://mapcomplete.osm.be/cycle_infra)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/bicycle#values) [bicycle](https://wiki.openstreetmap.org/wiki/Key:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno)
|
||||
[<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) | [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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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=yes/no
|
||||
|
||||
|
||||
|
||||
The question is *Can a bicycle go past this barrier?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *A cyclist can go past this.* corresponds with `bicycle=yes`
|
||||
- *A cyclist can not go past this.* corresponds with `bicycle=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_referencing_ways~.+`
|
||||
|
||||
|
||||
|
||||
### barrier_type
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This is a single bollard in the road* corresponds with `barrier=bollard`
|
||||
- *This is a cycle barrier slowing down cyclists* corresponds with `barrier=cycle_barrier`
|
||||
|
||||
|
||||
|
||||
|
||||
### Bollard type
|
||||
|
||||
|
||||
|
||||
The question is *What kind of bollard is this?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Removable bollard* corresponds with `bollard=removable`
|
||||
- *Fixed bollard* corresponds with `bollard=fixed`
|
||||
- *Bollard that can be folded down* corresponds with `bollard=foldable`
|
||||
- *Flexible bollard, usually plastic* corresponds with `bollard=flexible`
|
||||
- *Rising bollard* corresponds with `bollard=rising`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `barrier=bollard`
|
||||
|
||||
|
||||
|
||||
### Cycle barrier type
|
||||
|
||||
|
||||
|
||||
The question is *What kind of cycling barrier is this?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Single, just two barriers with a space inbetween* corresponds with `cycle_barrier=single`
|
||||
- *Double, two barriers behind each other* corresponds with `cycle_barrier=double`
|
||||
- *Triple, three barriers behind each other* corresponds with `cycle_barrier=triple`
|
||||
- *Squeeze gate, gap is smaller at top, than at the bottom* corresponds with `cycle_barrier=squeeze`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `barrier=cycle_barrier`
|
||||
|
||||
|
||||
|
||||
### MaxWidth
|
||||
|
||||
|
||||
|
||||
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 tagrendering is only visible in the popup if the following condition is met: `cycle_barrier!=double&cycle_barrier!=triple&_referencing_ways~.+`
|
||||
|
||||
|
||||
|
||||
### Space between barrier (cyclebarrier)
|
||||
|
||||
|
||||
|
||||
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`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `cycle_barrier=double|cycle_barrier=triple`
|
||||
|
||||
|
||||
|
||||
### Width of opening (cyclebarrier)
|
||||
|
||||
|
||||
|
||||
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`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `cycle_barrier=double|cycle_barrier=triple`
|
||||
|
||||
|
||||
|
||||
### Overlap (cyclebarrier)
|
||||
|
||||
|
||||
|
||||
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`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `cycle_barrier=double|cycle_barrier=triple`
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/barrier/barrier.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/barrier/barrier.json)
|
380
Docs/Layers/bench.md
Normal file
380
Docs/Layers/bench.md
Normal file
|
@ -0,0 +1,380 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
bench
|
||||
=======
|
||||
|
||||
|
||||
|
||||
<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.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **14** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [benches](https://mapcomplete.osm.be/benches)
|
||||
- [nature](https://mapcomplete.osm.be/nature)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/backrest#values) [backrest](https://wiki.openstreetmap.org/wiki/Key:backrest) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/seats#values) [seats](https://wiki.openstreetmap.org/wiki/Key:seats) | [nat](../SpecialInputElements.md#nat) |
|
||||
[<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) [metal](https://wiki.openstreetmap.org/wiki/Tag:material%3Dmetal) [stone](https://wiki.openstreetmap.org/wiki/Tag:material%3Dstone) [concrete](https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete) [plastic](https://wiki.openstreetmap.org/wiki/Tag:material%3Dplastic) [steel](https://wiki.openstreetmap.org/wiki/Tag:material%3Dsteel)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/direction#values) [direction](https://wiki.openstreetmap.org/wiki/Key:direction) | [direction](../SpecialInputElements.md#direction) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/colour#values) [colour](https://wiki.openstreetmap.org/wiki/Key:colour) | [color](../SpecialInputElements.md#color) | [brown](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dbrown) [green](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgreen) [gray](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgray) [white](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dwhite) [red](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred) [black](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblack) [blue](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblue) [yellow](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/survey:date#values) [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/inscription#values) [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [text](../SpecialInputElements.md#text) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/tourism#values) [tourism](https://wiki.openstreetmap.org/wiki/Key:tourism) | Multiple choice | [artwork](https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dartwork) [](https://wiki.openstreetmap.org/wiki/Tag:tourism%3D)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/historic#values) [historic](https://wiki.openstreetmap.org/wiki/Key:historic) | Multiple choice | [memorial](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial) [](https://wiki.openstreetmap.org/wiki/Tag:historic%3D)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### bench-backrest
|
||||
|
||||
|
||||
|
||||
The question is *Does this bench have a backrest?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This bench is two-sided and shares the backrest* corresponds with `backrest=yes&two_sided=yes`
|
||||
- *Does have a backrest* corresponds with `backrest=yes`
|
||||
- *Does <b>not</b> have a backrest* corresponds with `backrest=no`
|
||||
|
||||
|
||||
This tagrendering has labels `bench-questions`
|
||||
|
||||
|
||||
|
||||
### bench-seats
|
||||
|
||||
|
||||
|
||||
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 bench does not have separated seats* corresponds with `seats:separated=no`
|
||||
|
||||
|
||||
This tagrendering has labels `bench-questions`
|
||||
|
||||
|
||||
|
||||
### bench-material
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *The seating is made from wood* corresponds with `material=wood`
|
||||
- *The seating is made from metal* corresponds with `material=metal`
|
||||
- *The seating is made from stone* corresponds with `material=stone`
|
||||
- *The seating is made from concrete* corresponds with `material=concrete`
|
||||
- *The seating is made from plastic* corresponds with `material=plastic`
|
||||
- *The seating is made from steel* corresponds with `material=steel`
|
||||
|
||||
|
||||
This tagrendering has labels `bench-questions`
|
||||
|
||||
|
||||
|
||||
### bench-direction
|
||||
|
||||
|
||||
|
||||
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 tagrendering has labels `bench-questions`
|
||||
|
||||
|
||||
|
||||
### bench-colour
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Colour: brown* corresponds with `colour=brown`
|
||||
- *Colour: green* corresponds with `colour=green`
|
||||
- *Colour: gray* corresponds with `colour=gray`
|
||||
- *Colour: white* corresponds with `colour=white`
|
||||
- *Colour: red* corresponds with `colour=red`
|
||||
- *Colour: black* corresponds with `colour=black`
|
||||
- *Colour: blue* corresponds with `colour=blue`
|
||||
- *Colour: yellow* corresponds with `colour=yellow`
|
||||
|
||||
|
||||
This tagrendering has labels `bench-questions`
|
||||
|
||||
|
||||
|
||||
### bench-survey:date
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Surveyed today!* corresponds with `survey:date=`
|
||||
|
||||
|
||||
This tagrendering has labels `bench-questions`
|
||||
|
||||
|
||||
|
||||
### bench-inscription
|
||||
|
||||
|
||||
|
||||
The question is *Does this bench have an inscription?*
|
||||
|
||||
This rendering asks information about the property [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription)
|
||||
|
||||
This is rendered with `This bench does have the following inscription:<br/><p><i>{inscription}</i></p>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This bench does not have an inscription* corresponds with `not:inscription=yes`
|
||||
- *This bench does <span class='subtle'>(probably)</span> not have an inscription* corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `bench-questions`
|
||||
|
||||
|
||||
|
||||
### bench-artwork
|
||||
|
||||
|
||||
|
||||
The question is *Does this bench have an artistic element?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This bench has an integrated artwork* corresponds with `tourism=artwork`
|
||||
- *This bench does not have an integrated artwork* corresponds with ``
|
||||
|
||||
|
||||
|
||||
|
||||
### bench-memorial
|
||||
|
||||
|
||||
|
||||
The question is *Does this bench act as memorial for someone or something?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This bench is a memorial for someone or something* corresponds with `historic=memorial`
|
||||
- *This bench is a <b>not</b> a memorial for someone or something* corresponds with `not:historic=memorial`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `historic=memorial|inscription~.+|memorial=bench|tourism=artwork`
|
||||
|
||||
This tagrendering has labels `bench-questions`
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
bench_is_memorial.0 | is a memorial | historic=memorial\|memorial=bench
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
has_backrest.0 | With and without backrest (default) |
|
||||
has_backrest.1 | Has a backrest | backrest=yes
|
||||
has_backrest.2 | Has no backrest | backrest=no
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
has_image.0 | With and without images (default) |
|
||||
has_image.1 | Has at least one image | image~.+\|image:0~.+|image:1~.+|image:2~.+|image:3~.+|mapillary~.+
|
||||
has_image.2 | Probably does not have an image |
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/bench/bench.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bench/bench.json)
|
172
Docs/Layers/bench_at_pt.md
Normal file
172
Docs/Layers/bench_at_pt.md
Normal file
|
@ -0,0 +1,172 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
bench_at_pt
|
||||
=============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/benches/bench_public_transport.svg' height="100px">
|
||||
|
||||
A layer showing all public-transport-stops which do have a bench
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **14** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [benches](https://mapcomplete.osm.be/benches)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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/bench#values) [bench](https://wiki.openstreetmap.org/wiki/Key:bench) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dyes) [stand_up_bench](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dstand_up_bench) [no](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dno)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### bench_at_pt-name
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### bench_at_pt-bench_type
|
||||
|
||||
|
||||
|
||||
The question is *What kind of bench is this?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *There is a normal, sit-down bench here* corresponds with `bench=yes`
|
||||
- *Stand up bench* corresponds with `bench=stand_up_bench`
|
||||
- *There is no bench here* corresponds with `bench=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/bench_at_pt/bench_at_pt.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bench_at_pt/bench_at_pt.json)
|
293
Docs/Layers/bicycle_library.md
Normal file
293
Docs/Layers/bicycle_library.md
Normal file
|
@ -0,0 +1,293 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
bicycle_library
|
||||
=================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/pin:#22ff55;./assets/layers/bicycle_library/bicycle_library.svg' height="100px">
|
||||
|
||||
A facility where bicycles can be lent for longer period of times
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **8** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [bicyclelib](https://mapcomplete.osm.be/bicyclelib)
|
||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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/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/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/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:charge%3D) [€20warranty + €20/year](https://wiki.openstreetmap.org/wiki/Tag:charge%3D€20warranty + €20/year)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/bicycle_library:for#values) [bicycle_library:for](https://wiki.openstreetmap.org/wiki/Key:bicycle_library:for) | Multiple choice | [child](https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dchild) [adult](https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dadult) [disabled](https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Ddisabled)
|
||||
[<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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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_library-name
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### 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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### phone
|
||||
|
||||
|
||||
|
||||
The question is *What is the phone number of {title()}?*
|
||||
|
||||
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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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)}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### bicycle_library-charge
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Lending a bicycle is free* corresponds with `fee=no`
|
||||
- *Lending a bicycle costs €20/year and €20 warranty* corresponds with `fee=yes&charge=€20warranty + €20/year`
|
||||
|
||||
|
||||
|
||||
|
||||
### bicycle-library-target-group
|
||||
|
||||
|
||||
|
||||
The question is *Who can loan bicycles here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Bikes for children available* corresponds with `bicycle_library:for=child`
|
||||
- *Bikes for adult available* corresponds with `bicycle_library:for=adult`
|
||||
- *Bikes for disabled persons available* corresponds with `bicycle_library:for=disabled`
|
||||
|
||||
|
||||
|
||||
|
||||
### description
|
||||
|
||||
|
||||
|
||||
The question is *Is there still some relevant info that the previous questions did not cover? Feel free to add it here.*
|
||||
|
||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||
|
||||
This is rendered with `{description}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/bicycle_library/bicycle_library.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bicycle_library/bicycle_library.json)
|
466
Docs/Layers/bicycle_rental.md
Normal file
466
Docs/Layers/bicycle_rental.md
Normal file
|
@ -0,0 +1,466 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
bicycle_rental
|
||||
================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/bicycle_rental/logo.svg' height="100px">
|
||||
|
||||
Bicycle rental stations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **12** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [bicycle_rental](https://mapcomplete.osm.be/bicycle_rental)
|
||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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 `shop=rental&bicycle_rental=shop`
|
||||
- *This is a rental business which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus* corresponds with `shop=rental`
|
||||
- *This is a shop which sells or repairs bicycles, but also rents out bicycles* corresponds with `service:bicycle:rental=yes&shop=bicycle`
|
||||
- *This is an automated docking station, where a bicycle is mechanically locked to a structure* corresponds with `bicycle_rental=docking_station`
|
||||
- *A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby* corresponds with `bicycle_rental=key_dispensing_machine`
|
||||
- *This is a dropoff point, e.g. a reserved parking to place the bicycles clearly marked as being for the rental service only* corresponds with `bicycle_rental=dropoff_point`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `amenity=bicycle_rental`
|
||||
|
||||
|
||||
|
||||
### 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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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)}`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `shop~.+|opening_hours~.+`
|
||||
|
||||
|
||||
|
||||
### payment-options
|
||||
|
||||
|
||||
|
||||
The question is *Which methods of payment are accepted here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Cash is accepted here* corresponds with `payment:cash=yes`
|
||||
- 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 `payment:cards=yes`
|
||||
- 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 by QR-code is possible here* corresponds with `payment:qr_code=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:qr_code' target='_blank'>payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:qr_code%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `shop~.+`
|
||||
|
||||
|
||||
|
||||
### payment-options-advanced
|
||||
|
||||
|
||||
|
||||
The question is *Which methods of payment are accepted here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Cash is accepted here* corresponds with `payment:cash=yes`
|
||||
- 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 `payment:cards=yes`
|
||||
- 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 by QR-code is possible here* corresponds with `payment:qr_code=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:qr_code' target='_blank'>payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:qr_code%3Dno' target='_blank'>no</a>
|
||||
- *Payment is done using a dedicated app* corresponds with `payment:app=yes`
|
||||
- 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 `payment:membership_card=yes`
|
||||
- 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 `rental=city_bike`
|
||||
- *Electrical bikes can be rented here* corresponds with `rental=ebike`
|
||||
- *BMX bikes can be rented here* corresponds with `rental=bmx`
|
||||
- *Mountainbikes can be rented here* corresponds with `rental=mtb`
|
||||
- *Bikes for children can be rented here* corresponds with `rental=kid_bike`
|
||||
- *Tandem bicycles can be rented here* corresponds with `rental=tandem`
|
||||
- *Race bicycles can be rented here* corresponds with `rental=racebike`
|
||||
- *Bike helmets can be rented here* corresponds with `rental=bike_helmet`
|
||||
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
||||
|
||||
### rental-capacity-city_bike
|
||||
|
||||
|
||||
|
||||
The question is *How many 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`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*city_bike.*)$`
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
||||
|
||||
### rental-capacity-ebike
|
||||
|
||||
|
||||
|
||||
The question is *How many 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`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*ebike.*)$`
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
||||
|
||||
### rental-capacity-kid_bike
|
||||
|
||||
|
||||
|
||||
The question is *How many 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`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*kid_bike.*)$`
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
||||
|
||||
### rental-capacity-bmx
|
||||
|
||||
|
||||
|
||||
The question is *How many 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`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*bmx.*)$`
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
||||
|
||||
### rental-capacity-mtb
|
||||
|
||||
|
||||
|
||||
The question is *How many mountainbikes 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} mountainbikes can be rented here`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*mtb.*)$`
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
||||
|
||||
### rental-capacity-bicycle_pannier
|
||||
|
||||
|
||||
|
||||
The question is *How many 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`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*bicycle_pannier.*)$`
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
||||
|
||||
### rental-capacity-tandem_bicycle
|
||||
|
||||
|
||||
|
||||
The question is *How many 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`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*tandem_bicycle.*)$`
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/bicycle_rental/bicycle_rental.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bicycle_rental/bicycle_rental.json)
|
464
Docs/Layers/bicycle_rental_non_docking.md
Normal file
464
Docs/Layers/bicycle_rental_non_docking.md
Normal file
|
@ -0,0 +1,464 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
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)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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 `shop=rental&bicycle_rental=shop`
|
||||
- *This is a rental business which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus* corresponds with `shop=rental`
|
||||
- *This is a shop which sells or repairs bicycles, but also rents out bicycles* corresponds with `service:bicycle:rental=yes&shop=bicycle`
|
||||
- *This is an automated docking station, where a bicycle is mechanically locked to a structure* corresponds with `bicycle_rental=docking_station`
|
||||
- *A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby* corresponds with `bicycle_rental=key_dispensing_machine`
|
||||
- *This is a dropoff point, e.g. a reserved parking to place the bicycles clearly marked as being for the rental service only* corresponds with `bicycle_rental=dropoff_point`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `amenity=bicycle_rental`
|
||||
|
||||
|
||||
|
||||
### 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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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)}`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `shop~.+|opening_hours~.+`
|
||||
|
||||
|
||||
|
||||
### payment-options
|
||||
|
||||
|
||||
|
||||
The question is *Which methods of payment are accepted here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Cash is accepted here* corresponds with `payment:cash=yes`
|
||||
- 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 `payment:cards=yes`
|
||||
- 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 by QR-code is possible here* corresponds with `payment:qr_code=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:qr_code' target='_blank'>payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:qr_code%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `shop~.+`
|
||||
|
||||
|
||||
|
||||
### payment-options-advanced
|
||||
|
||||
|
||||
|
||||
The question is *Which methods of payment are accepted here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Cash is accepted here* corresponds with `payment:cash=yes`
|
||||
- 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 `payment:cards=yes`
|
||||
- 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 by QR-code is possible here* corresponds with `payment:qr_code=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:qr_code' target='_blank'>payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:qr_code%3Dno' target='_blank'>no</a>
|
||||
- *Payment is done using a dedicated app* corresponds with `payment:app=yes`
|
||||
- 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 `payment:membership_card=yes`
|
||||
- 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 `rental=city_bike`
|
||||
- *Electrical bikes can be rented here* corresponds with `rental=ebike`
|
||||
- *BMX bikes can be rented here* corresponds with `rental=bmx`
|
||||
- *Mountainbikes can be rented here* corresponds with `rental=mtb`
|
||||
- *Bikes for children can be rented here* corresponds with `rental=kid_bike`
|
||||
- *Tandem bicycles can be rented here* corresponds with `rental=tandem`
|
||||
- *Race bicycles can be rented here* corresponds with `rental=racebike`
|
||||
- *Bike helmets can be rented here* corresponds with `rental=bike_helmet`
|
||||
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
||||
|
||||
### rental-capacity-city_bike
|
||||
|
||||
|
||||
|
||||
The question is *How many 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`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*city_bike.*)$`
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
||||
|
||||
### rental-capacity-ebike
|
||||
|
||||
|
||||
|
||||
The question is *How many 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`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*ebike.*)$`
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
||||
|
||||
### rental-capacity-kid_bike
|
||||
|
||||
|
||||
|
||||
The question is *How many 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`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*kid_bike.*)$`
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
||||
|
||||
### rental-capacity-bmx
|
||||
|
||||
|
||||
|
||||
The question is *How many 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`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*bmx.*)$`
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
||||
|
||||
### rental-capacity-mtb
|
||||
|
||||
|
||||
|
||||
The question is *How many mountainbikes 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} mountainbikes can be rented here`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*mtb.*)$`
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
||||
|
||||
### rental-capacity-bicycle_pannier
|
||||
|
||||
|
||||
|
||||
The question is *How many 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`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*bicycle_pannier.*)$`
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
||||
|
||||
### rental-capacity-tandem_bicycle
|
||||
|
||||
|
||||
|
||||
The question is *How many 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`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*tandem_bicycle.*)$`
|
||||
|
||||
This tagrendering has labels `bicycle_rental`
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
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)
|
272
Docs/Layers/bicycle_tube_vending_machine.md
Normal file
272
Docs/Layers/bicycle_tube_vending_machine.md
Normal file
|
@ -0,0 +1,272 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
bicycle_tube_vending_machine
|
||||
==============================
|
||||
|
||||
|
||||
|
||||
<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, …)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **13** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3D) [broken](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dbroken) [closed](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dclosed)
|
||||
[<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) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/brand#values) [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [string](../SpecialInputElements.md#string) | [Continental](https://wiki.openstreetmap.org/wiki/Tag:brand%3DContinental) [Schwalbe](https://wiki.openstreetmap.org/wiki/Tag:brand%3DSchwalbe)
|
||||
[<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) | [Schwalbe](https://wiki.openstreetmap.org/wiki/Tag:operator%3DSchwalbe) [Continental](https://wiki.openstreetmap.org/wiki/Tag:operator%3DContinental)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Still in use?
|
||||
|
||||
|
||||
|
||||
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 vending machine works* corresponds with ``
|
||||
- *This vending machine is broken* corresponds with `operational_status=broken`
|
||||
- *This vending machine is closed* corresponds with `operational_status=closed`
|
||||
|
||||
|
||||
|
||||
|
||||
### bicycle_tube_vending_machine-charge
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### vending-machine-payment-methods
|
||||
|
||||
|
||||
|
||||
The question is *How can one pay at this tube vending machine?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Payment with coins is possible* corresponds with `payment:coins=yes`
|
||||
- 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 `payment:notes=yes`
|
||||
- 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 `payment:cards=yes`
|
||||
- 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>
|
||||
|
||||
|
||||
|
||||
|
||||
### bicycle_tube_vending_machine-brand
|
||||
|
||||
|
||||
|
||||
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`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Continental tubes are sold here* corresponds with `brand=Continental`
|
||||
- *Schwalbe tubes are sold here* corresponds with `brand=Schwalbe`
|
||||
|
||||
|
||||
|
||||
|
||||
### bicycle_tube_vending_machine-operator
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Maintained by Schwalbe* corresponds with `operator=Schwalbe`
|
||||
- *Maintained by Continental* corresponds with `operator=Continental`
|
||||
|
||||
|
||||
|
||||
|
||||
### bicycle_tube_vending_maching-other-items
|
||||
|
||||
|
||||
|
||||
The question is *Are other bicycle bicycle accessories sold here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Bicycle lights are sold here* corresponds with `vending:bicycle_light=yes`
|
||||
- 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 `vending:gloves=yes`
|
||||
- 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 `vending:bicycle_repair_kit=yes`
|
||||
- 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 `vending:bicycle_pump=yes`
|
||||
- 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 `vending:bicycle_lock=yes`
|
||||
- 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>
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
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)
|
279
Docs/Layers/bike_cafe.md
Normal file
279
Docs/Layers/bike_cafe.md
Normal file
|
@ -0,0 +1,279 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
bike_cafe
|
||||
===========
|
||||
|
||||
|
||||
|
||||
<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, …
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **13** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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/service:bicycle:pump#values) [service:bicycle:pump](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:diy#values) [service:bicycle:diy](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dno)
|
||||
[<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)
|
||||
[<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/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_cafe-name
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_cafe-bike-pump
|
||||
|
||||
|
||||
|
||||
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 `service:bicycle:pump=yes`
|
||||
- *This bike cafe doesn't offer a bike pump for anyone* corresponds with `service:bicycle:pump=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_cafe-repair-tools
|
||||
|
||||
|
||||
|
||||
The question is *Are tools offered to repair your own bike?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This bike cafe offers tools for DIY repair* corresponds with `service:bicycle:diy=yes`
|
||||
- *This bike cafe doesn't offer tools for DIY repair* corresponds with `service:bicycle:diy=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_cafe-repair-service
|
||||
|
||||
|
||||
|
||||
The question is *Does this bike cafe repair bikes?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This bike cafe repairs bikes* corresponds with `service:bicycle:repair=yes`
|
||||
- *This bike cafe doesn't repair bikes* corresponds with `service:bicycle:repair=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### phone
|
||||
|
||||
|
||||
|
||||
The question is *What is the phone number of {title()}?*
|
||||
|
||||
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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### opening_hours
|
||||
|
||||
|
||||
|
||||
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 `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/bike_cafe/bike_cafe.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_cafe/bike_cafe.json)
|
194
Docs/Layers/bike_cleaning.md
Normal file
194
Docs/Layers/bike_cleaning.md
Normal file
|
@ -0,0 +1,194 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
bike_cleaning
|
||||
===============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/bike_cleaning/bike_cleaning.svg' height="100px">
|
||||
|
||||
A layer showing facilities where one can clean their bike
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **13** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:cleaning:charge#values) [service:bicycle:cleaning:charge](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:charge) | [string](../SpecialInputElements.md#string) |
|
||||
[<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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_cleaning-service:bicycle:cleaning:charge
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *The cleaning service is free to use* corresponds with `service:bicycle:cleaning:fee=no`
|
||||
- *Free to use* corresponds with `service:bicycle:cleaning:fee=yes`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_cleaning-charge
|
||||
|
||||
|
||||
|
||||
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 cleaning service is free to use* corresponds with `fee=no`
|
||||
- *There is a fee to use this cleaning service* corresponds with `fee=yes`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `amenity=bike_wash|amenity=bicycle_wash`
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/bike_cleaning/bike_cleaning.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_cleaning/bike_cleaning.json)
|
286
Docs/Layers/bike_parking.md
Normal file
286
Docs/Layers/bike_parking.md
Normal file
|
@ -0,0 +1,286 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
bike_parking
|
||||
==============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/pin:#5473de;./assets/layers/bike_parking/parking.svg' height="100px">
|
||||
|
||||
A layer showing where you can park your bike
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **17** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
- [transit](https://mapcomplete.osm.be/transit)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/bicycle_parking#values) [bicycle_parking](https://wiki.openstreetmap.org/wiki/Key:bicycle_parking) | [string](../SpecialInputElements.md#string) | [stands](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dstands) [wall_loops](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dwall_loops) [handlebar_holder](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dhandlebar_holder) [rack](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Drack) [two_tier](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dtwo_tier) [shed](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dshed) [bollard](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dbollard) [floor](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dfloor)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/location#values) [location](https://wiki.openstreetmap.org/wiki/Key:location) | Multiple choice | [underground](https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground) [surface](https://wiki.openstreetmap.org/wiki/Tag:location%3Dsurface) [rooftop](https://wiki.openstreetmap.org/wiki/Tag:location%3Drooftop)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/covered#values) [covered](https://wiki.openstreetmap.org/wiki/Key:covered) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:covered%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:covered%3Dno)
|
||||
[<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/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cargo_bike#values) [cargo_bike](https://wiki.openstreetmap.org/wiki/Key:cargo_bike) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Dyes) [designated](https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Ddesignated) [no](https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity:cargo_bike#values) [capacity:cargo_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:cargo_bike) | [nat](../SpecialInputElements.md#nat) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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 parking type
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Staple racks* corresponds with `bicycle_parking=stands`
|
||||
- *Wheel rack/loops* corresponds with `bicycle_parking=wall_loops`
|
||||
- *Handlebar holder* corresponds with `bicycle_parking=handlebar_holder`
|
||||
- *Rack* corresponds with `bicycle_parking=rack`
|
||||
- *Two-tiered* corresponds with `bicycle_parking=two_tier`
|
||||
- *Shed* corresponds with `bicycle_parking=shed`
|
||||
- *Bollard* corresponds with `bicycle_parking=bollard`
|
||||
- *An area on the floor which is marked for bicycle parking* corresponds with `bicycle_parking=floor`
|
||||
|
||||
|
||||
|
||||
|
||||
### Underground?
|
||||
|
||||
|
||||
|
||||
The question is *What is the relative location of this bicycle parking?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Underground parking* corresponds with `location=underground`
|
||||
- *Surface level parking* corresponds with `location=surface`
|
||||
- *Rooftop parking* corresponds with `location=rooftop`
|
||||
- *Surface level parking* corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### Is covered?
|
||||
|
||||
|
||||
|
||||
The question is *Is this parking covered? Also select "covered" for indoor parkings.*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This parking is covered (it has a roof)* corresponds with `covered=yes`
|
||||
- *This parking is not covered* corresponds with `covered=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### Capacity
|
||||
|
||||
|
||||
|
||||
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`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Access
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Publicly accessible* corresponds with `access=yes`
|
||||
- *Access is primarily for visitors to a business* corresponds with `access=customers`
|
||||
- *Access is limited to members of a school, company or organisation* corresponds with `access=private`
|
||||
|
||||
|
||||
|
||||
|
||||
### Cargo bike spaces?
|
||||
|
||||
|
||||
|
||||
The question is *Does this bicycle parking have spots for cargo bikes?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This parking has room for cargo bikes* corresponds with `cargo_bike=yes`
|
||||
- *This parking has designated (official) spots for cargo bikes.* corresponds with `cargo_bike=designated`
|
||||
- *You're not allowed to park cargo bikes* corresponds with `cargo_bike=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### Cargo bike capacity?
|
||||
|
||||
|
||||
|
||||
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`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `cargo_bike~^(designated|yes)$`
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/bike_parking/bike_parking.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_parking/bike_parking.json)
|
416
Docs/Layers/bike_repair_station.md
Normal file
416
Docs/Layers/bike_repair_station.md
Normal file
|
@ -0,0 +1,416 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
bike_repair_station
|
||||
=====================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/pin:#88d32c;./assets/layers/bike_repair_station/repair_station.svg' height="100px">
|
||||
|
||||
A layer showing bicycle pumps and bicycle repair tool stands
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **13** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:tools#values) [service:bicycle:tools](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:pump:operational_status#values) [service:bicycle:pump:operational_status](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump:operational_status) | Multiple choice | [broken](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump:operational_status%3Dbroken) [operational](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump:operational_status%3Doperational)
|
||||
[<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/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate)
|
||||
[<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) |
|
||||
[<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/service:bicycle:chain_tool#values) [service:bicycle:chain_tool](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:chain_tool) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:chain_tool%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:chain_tool%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:stand#values) [service:bicycle:stand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:stand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:stand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:stand%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/valves#values) [valves](https://wiki.openstreetmap.org/wiki/Key:valves) | [string](../SpecialInputElements.md#string) | [sclaverand](https://wiki.openstreetmap.org/wiki/Tag:valves%3Dsclaverand) [dunlop](https://wiki.openstreetmap.org/wiki/Tag:valves%3Ddunlop) [schrader](https://wiki.openstreetmap.org/wiki/Tag:valves%3Dschrader)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/manual#values) [manual](https://wiki.openstreetmap.org/wiki/Key:manual) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:manual%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:manual%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/manometer#values) [manometer](https://wiki.openstreetmap.org/wiki/Key:manometer) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dno) [broken](https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dbroken)
|
||||
[<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)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_repair_station-available-services
|
||||
|
||||
|
||||
|
||||
The question is *Which services are available at this location?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *There is only a pump present* corresponds with `service:bicycle:tools=no&service:bicycle:pump=yes`
|
||||
- *There are only tools (screwdrivers, pliers, …) present* corresponds with `service:bicycle:tools=yes&service:bicycle:pump=no`
|
||||
- *There are both tools and a pump present* corresponds with `service:bicycle:tools=yes&service:bicycle:pump=yes`
|
||||
|
||||
|
||||
|
||||
|
||||
### Operational status
|
||||
|
||||
|
||||
|
||||
The question is *Is the bike pump still operational?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *The bike pump is broken* corresponds with `service:bicycle:pump:operational_status=broken`
|
||||
- *The bike pump is operational* corresponds with `service:bicycle:pump:operational_status=operational`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `service:bicycle:pump=yes`
|
||||
|
||||
|
||||
|
||||
### opening_hours_24_7
|
||||
|
||||
|
||||
|
||||
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 `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *24/7 opened (including holidays)* corresponds with `opening_hours=24/7`
|
||||
|
||||
|
||||
|
||||
|
||||
### access
|
||||
|
||||
|
||||
|
||||
The question is *Who is allowed to use this repair station?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Publicly accessible* corresponds with `access=yes`
|
||||
- *Publicly accessible* corresponds with `access=public`
|
||||
- This option cannot be chosen as answer
|
||||
- *Only for customers* corresponds with `access=customers`
|
||||
- *Not accessible to the general public* corresponds with `access=private`
|
||||
- *Not accessible to the general public* corresponds with `access=no`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_repair_station-operator
|
||||
|
||||
|
||||
|
||||
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 tagrendering has labels `operator-info`
|
||||
|
||||
|
||||
|
||||
### bike_repair_station-email
|
||||
|
||||
|
||||
|
||||
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 tagrendering has labels `operator-info`
|
||||
|
||||
|
||||
|
||||
### bike_repair_station-phone
|
||||
|
||||
|
||||
|
||||
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 tagrendering has labels `operator-info`
|
||||
|
||||
|
||||
|
||||
### bike_repair_station-bike-chain-tool
|
||||
|
||||
|
||||
|
||||
The question is *Does this bike repair station have a special tool to repair your bike chain?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *There is a chain tool* corresponds with `service:bicycle:chain_tool=yes`
|
||||
- *There is no chain tool* corresponds with `service:bicycle:chain_tool=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `service:bicycle:tools=yes`
|
||||
|
||||
|
||||
|
||||
### bike_repair_station-bike-stand
|
||||
|
||||
|
||||
|
||||
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 `service:bicycle:stand=yes`
|
||||
- *There is no hook or stand* corresponds with `service:bicycle:stand=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `service:bicycle:tools=yes`
|
||||
|
||||
|
||||
|
||||
### send_email_about_broken_pump
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `email~.+&service:bicycle:pump:operational_status=broken`
|
||||
|
||||
|
||||
|
||||
### bike_repair_station-valves
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Sclaverand/Presta (narrow-width bike tires)* corresponds with `valves=sclaverand`
|
||||
- *Dunlop* corresponds with `valves=dunlop`
|
||||
- *Schrader (cars and mountainbikes)* corresponds with `valves=schrader`
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_repair_station-electrical_pump
|
||||
|
||||
|
||||
|
||||
The question is *Is this an electric bike pump?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Manual pump* corresponds with `manual=yes`
|
||||
- *Electrical pump* corresponds with `manual=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `service:bicycle:pump=yes`
|
||||
|
||||
|
||||
|
||||
### bike_repair_station-manometer
|
||||
|
||||
|
||||
|
||||
The question is *Does the pump have a pressure indicator or manometer?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *There is a manometer* corresponds with `manometer=yes`
|
||||
- *There is no manometer* corresponds with `manometer=no`
|
||||
- *There is manometer but it is broken* corresponds with `manometer=broken`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `service:bicycle:pump=yes`
|
||||
|
||||
|
||||
|
||||
### 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 `location=underground`
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the ground floor* corresponds with `level=0`
|
||||
- *Located on the ground floor* corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the first floor* corresponds with `level=1`
|
||||
- *Located on the first basement level* corresponds with `level=-1`
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/bike_repair_station/bike_repair_station.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_repair_station/bike_repair_station.json)
|
448
Docs/Layers/bike_shop.md
Normal file
448
Docs/Layers/bike_shop.md
Normal file
|
@ -0,0 +1,448 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
bike_shop
|
||||
===========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/pin:#f04c4c;./assets/layers/bike_shop/repair_shop.svg' height="100px">
|
||||
|
||||
A shop specifically selling bicycles or related items
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **13** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/shop#values) [shop](https://wiki.openstreetmap.org/wiki/Key:shop) | Multiple choice | [rental](https://wiki.openstreetmap.org/wiki/Tag:shop%3Drental)
|
||||
[<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/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/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/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | [string](../SpecialInputElements.md#string) |
|
||||
[<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/service:bicycle:second_hand#values) [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:pump#values) [service:bicycle:pump](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno) [separate](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dseparate)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:diy#values) [service:bicycle:diy](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Donly_sold)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:cleaning#values) [service:bicycle:cleaning](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dyes) [diy](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Ddiy) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dno)
|
||||
[<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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_shop-is-bicycle_shop
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This business focuses on rental* corresponds with `shop=rental`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `shop~.+&shop!~^(bicycle)$&shop!~^(sports)$`
|
||||
|
||||
|
||||
|
||||
### bike_shop-name
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### 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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### phone
|
||||
|
||||
|
||||
|
||||
The question is *What is the phone number of {title()}?*
|
||||
|
||||
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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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)}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_shop-access
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_repair_sells-bikes
|
||||
|
||||
|
||||
|
||||
The question is *Does this shop sell bikes?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This shop sells bikes* corresponds with `service:bicycle:retail=yes`
|
||||
- *This shop doesn't sell bikes* corresponds with `service:bicycle:retail=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_repair_repairs-bikes
|
||||
|
||||
|
||||
|
||||
The question is *Does this shop repair bikes?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This shop repairs bikes* corresponds with `service:bicycle:repair=yes`
|
||||
- *This shop doesn't repair bikes* corresponds with `service:bicycle:repair=no`
|
||||
- *This shop only repairs bikes bought here* corresponds with `service:bicycle:repair=only_sold`
|
||||
- *This shop only repairs bikes of a certain brand* corresponds with `service:bicycle:repair=brand`
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_repair_rents-bikes
|
||||
|
||||
|
||||
|
||||
The question is *Does this shop rent out bikes?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This shop rents out bikes* corresponds with `service:bicycle:rental=yes`
|
||||
- *This shop doesn't rent out bikes* corresponds with `service:bicycle:rental=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_repair_second-hand-bikes
|
||||
|
||||
|
||||
|
||||
The question is *Does this shop sell second-hand bikes?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This shop sells second-hand bikes* corresponds with `service:bicycle:second_hand=yes`
|
||||
- *This shop doesn't sell second-hand bikes* corresponds with `service:bicycle:second_hand=no`
|
||||
- *This shop only sells second-hand bikes* corresponds with `service:bicycle:second_hand=only`
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_repair_bike-pump-service
|
||||
|
||||
|
||||
|
||||
The question is *Does this shop offer a bike pump for use by anyone?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This shop offers a bike pump for anyone* corresponds with `service:bicycle:pump=yes`
|
||||
- *This shop doesn't offer a bike pump for anyone* corresponds with `service:bicycle:pump=no`
|
||||
- *There is bicycle pump, it is shown as a separate point* corresponds with `service:bicycle:pump=separate`
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_repair_tools-service
|
||||
|
||||
|
||||
|
||||
The question is *Are there tools here to repair your own bike?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This shop offers tools for DIY repair* corresponds with `service:bicycle:diy=yes`
|
||||
- *This shop doesn't offer tools for DIY repair* corresponds with `service:bicycle:diy=no`
|
||||
- *Tools for DIY repair are only available if you bought/hire the bike in the shop* corresponds with `service:bicycle:diy=only_sold`
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_repair_bike-wash
|
||||
|
||||
|
||||
|
||||
The question is *Are bicycles washed here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This shop cleans bicycles* corresponds with `service:bicycle:cleaning=yes`
|
||||
- *This shop has an installation where one can clean bicycles themselves* corresponds with `service:bicycle:cleaning=diy`
|
||||
- *This shop doesn't offer bicycle cleaning* corresponds with `service:bicycle:cleaning=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### bikecleaningbikecleaningservicebicyclecleaningcharge
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### description
|
||||
|
||||
|
||||
|
||||
The question is *Is there still some relevant info that the previous questions did not cover? Feel free to add it here.*
|
||||
|
||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||
|
||||
This is rendered with `{description}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
open_now.0 | Open now | _isOpen=yes
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
sells_second-hand.0 | Sells second-hand bicycles | service:bicycle:second_hand=yes\|service:bicycle:second_hand=only
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
offers_diy_repair.0 | Offers DIY bike repair | service:bicycle:diy=yes\|service:bicycle:diy=only
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/bike_shop/bike_shop.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_shop/bike_shop.json)
|
228
Docs/Layers/bike_themed_object.md
Normal file
228
Docs/Layers/bike_themed_object.md
Normal file
|
@ -0,0 +1,228 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
bike_themed_object
|
||||
====================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/bike_themed_object/other_services.svg' height="100px">
|
||||
|
||||
A layer with bike-themed objects but who don't match any other layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **13** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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/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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### description
|
||||
|
||||
|
||||
|
||||
The question is *Is there still some relevant info that the previous questions did not cover? Feel free to add it here.*
|
||||
|
||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||
|
||||
This is rendered with `{description}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### 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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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)}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/bike_themed_object/bike_themed_object.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_themed_object/bike_themed_object.json)
|
184
Docs/Layers/binocular.md
Normal file
184
Docs/Layers/binocular.md
Normal file
|
@ -0,0 +1,184 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
binocular
|
||||
===========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/binocular/telescope.svg' height="100px">
|
||||
|
||||
Binoculars
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **0** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [binoculars](https://mapcomplete.osm.be/binoculars)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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/direction#values) [direction](https://wiki.openstreetmap.org/wiki/Key:direction) | [direction](../SpecialInputElements.md#direction) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### binocular-charge
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Free to use* corresponds with `fee=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### binocular-direction
|
||||
|
||||
|
||||
|
||||
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}°`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/binocular/binocular.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/binocular/binocular.json)
|
229
Docs/Layers/birdhide.md
Normal file
229
Docs/Layers/birdhide.md
Normal file
|
@ -0,0 +1,229 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
birdhide
|
||||
==========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/birdhide/birdhide.svg' height="100px">
|
||||
|
||||
A birdhide
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **14** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [nature](https://mapcomplete.osm.be/nature)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/building#values) [building](https://wiki.openstreetmap.org/wiki/Key:building) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:building%3D) [yes](https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes) [tower](https://wiki.openstreetmap.org/wiki/Tag:building%3Dtower)
|
||||
[<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/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Natuurpunt](https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt) [Agentschap Natuur en Bos](https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgentschap Natuur en Bos)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### bird-hide-shelter-or-wall
|
||||
|
||||
|
||||
|
||||
The question is *Is this a bird blind or a bird watching shelter?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Bird blind* corresponds with `shelter=no`
|
||||
- *Bird hide* corresponds with `amenity=shelter&building=yes&shelter=yes`
|
||||
- *Bird tower hide* corresponds with `building=tower&bird_hide=tower`
|
||||
- *Bird hide shelter* corresponds with `amenity=shelter|building=yes|shelter=yes`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### bird-hide-wheelchair
|
||||
|
||||
|
||||
|
||||
The question is *Is this bird hide accessible to wheelchair users?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *There are special provisions for wheelchair users* corresponds with `wheelchair=designated`
|
||||
- *A wheelchair can easily use this birdhide* corresponds with `wheelchair=yes`
|
||||
- *This birdhide is reachable by wheelchair, but it is not easy* corresponds with `wheelchair=limited`
|
||||
- *Not accessible to wheelchair users* corresponds with `wheelchair=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### birdhide-operator
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Operated by Natuurpunt* corresponds with `operator=Natuurpunt`
|
||||
- *Operated by the Agency for Nature and Forests* corresponds with `operator=Agentschap Natuur en Bos`
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
wheelchair.0 | Wheelchair accessible | wheelchair=yes\|wheelchair=designated|wheelchair=permissive
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
shelter.0 | Only covered birdhides | shelter=yes\|building~.+&covered!=no
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/birdhide/birdhide.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/birdhide/birdhide.json)
|
493
Docs/Layers/cafe_pub.md
Normal file
493
Docs/Layers/cafe_pub.md
Normal file
|
@ -0,0 +1,493 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
cafe_pub
|
||||
==========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/cafe_pub/pub.svg' height="100px">
|
||||
|
||||
A layer showing cafés and pubs where one can gather around a drink. The layer asks for some relevant questions
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **0** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [cafes_and_pubs](https://mapcomplete.osm.be/cafes_and_pubs)
|
||||
- [onwheels](https://mapcomplete.osm.be/onwheels)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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) [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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access:ssid#values) [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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 `location=underground`
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the ground floor* corresponds with `level=0`
|
||||
- *Located on the ground floor* corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the first floor* corresponds with `level=1`
|
||||
- *Located on the first basement level* corresponds with `level=-1`
|
||||
|
||||
|
||||
|
||||
|
||||
### Name
|
||||
|
||||
|
||||
|
||||
The question is *What is the name of this business?*
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
|
||||
This is rendered with `This business is named {name}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Classification
|
||||
|
||||
|
||||
|
||||
The question is *What kind of cafe is this?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *A pub, mostly for drinking beers in a warm, relaxed interior* corresponds with `amenity=pub`
|
||||
- *A more modern and commercial <b>bar</b>, possibly with a music and light installation* corresponds with `amenity=bar`
|
||||
- *A <b>cafe</b> to drink tea, coffee or an alcoholical bevarage in a quiet environment* corresponds with `amenity=cafe`
|
||||
- *A <b>restaurant</b> where one can get a proper meal* corresponds with `amenity=restaurant`
|
||||
- *An open space where beer is served, typically seen in Germany* corresponds with `amenity=biergarten`
|
||||
- *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 `amenity=nightclub`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### payment-options
|
||||
|
||||
|
||||
|
||||
The question is *Which methods of payment are accepted here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Cash is accepted here* corresponds with `payment:cash=yes`
|
||||
- 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 `payment:cards=yes`
|
||||
- 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 by QR-code is possible here* corresponds with `payment:qr_code=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:qr_code' target='_blank'>payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:qr_code%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 `wheelchair=designated`
|
||||
- *This place is easily reachable with a wheelchair* corresponds with `wheelchair=yes`
|
||||
- *It is possible to reach this place in a wheelchair, but it is not easy* corresponds with `wheelchair=limited`
|
||||
- *This place is not reachable with a wheelchair* corresponds with `wheelchair=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### smoking
|
||||
|
||||
|
||||
|
||||
The question is *Is smoking allowed at {title()}?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Smoking is <b>allowed</b>* corresponds with `smoking=yes`
|
||||
- *Smoking is <b>not allowed</b>* corresponds with `smoking=no`
|
||||
- *Smoking is <b>allowed outside</b>.* corresponds with `smoking=outside`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 `service:electricity=yes`
|
||||
- *There are a few domestic sockets available to customers seated indoors, where they can charge their electronics* corresponds with `service:electricity=limited`
|
||||
- *There are no sockets available indoors to customers, but charging might be possible if the staff is asked* corresponds with `service:electricity=ask`
|
||||
- *There are a no domestic sockets available to customers seated indoors* corresponds with `service:electricity=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### dog-access
|
||||
|
||||
|
||||
|
||||
The question is *Are dogs allowed in this business?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Dogs are allowed* corresponds with `dog=yes`
|
||||
- *Dogs are <b>not</b> allowed* corresponds with `dog=no`
|
||||
- *Dogs are allowed, but they have to be leashed* corresponds with `dog=leashed`
|
||||
- *Dogs are allowed and can run around freely* corresponds with `dog=unleashed`
|
||||
|
||||
|
||||
|
||||
|
||||
### internet
|
||||
|
||||
|
||||
|
||||
The question is *Does this place offer internet access?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This place offers wireless internet access* corresponds with `internet_access=wlan`
|
||||
- *This place <b>does not</b> offer internet access* corresponds with `internet_access=no`
|
||||
- *This place offers internet access* corresponds with `internet_access=yes`
|
||||
- This option cannot be chosen as answer
|
||||
- *This place offers internet access via a terminal or computer* corresponds with `internet_access=terminal`
|
||||
- *This place offers wired internet access* corresponds with `internet_access=wired`
|
||||
|
||||
|
||||
|
||||
|
||||
### internet-fee
|
||||
|
||||
|
||||
|
||||
The question is *Is there a fee for internet access?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *There is a fee for the internet access at this place* corresponds with `internet_access:fee=yes`
|
||||
- *Internet access is free at this place* corresponds with `internet_access:fee=no`
|
||||
- *Internet access is free at this place, for customers only* corresponds with `internet_access:fee=customers`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `internet_access!=no&internet_access~.+`
|
||||
|
||||
|
||||
|
||||
### internet-ssid
|
||||
|
||||
|
||||
|
||||
The question is *What is the network name for the wireless internet access?*
|
||||
|
||||
This rendering asks information about the property [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid)
|
||||
|
||||
This is rendered with `The network name is <b>{internet_access:ssid}</b>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Telekom* corresponds with `internet_access:ssid=Telekom`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `internet_access=wlan`
|
||||
|
||||
|
||||
|
||||
### reviews
|
||||
|
||||
|
||||
|
||||
Shows the reviews module (including the possibility to leave a review)
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
open_now.0 | Open now | _isOpen=yes
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
accepts_cash.0 | Accepts cash | payment:cash=yes
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
accepts_cards.0 | Accepts payment cards | payment:cards=yes
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/cafe_pub/cafe_pub.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/cafe_pub/cafe_pub.json)
|
244
Docs/Layers/car_rental.md
Normal file
244
Docs/Layers/car_rental.md
Normal file
|
@ -0,0 +1,244 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
car_rental
|
||||
============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/car_rental/car_rental.svg' height="100px">
|
||||
|
||||
Places where you can rent a car
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **12** and higher
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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 this car rental?*
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
|
||||
This is rendered with `This car rental is called {name}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This car rental has no name* corresponds with `noname=yes`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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)}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
open_now.0 | Open now | _isOpen=yes
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/car_rental/car_rental.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/car_rental/car_rental.json)
|
358
Docs/Layers/caravansites.md
Normal file
358
Docs/Layers/caravansites.md
Normal file
|
@ -0,0 +1,358 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
caravansites
|
||||
==============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/themes/campersite/caravan.svg' height="100px">
|
||||
|
||||
camper sites
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **10** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [campersite](https://mapcomplete.osm.be/campersite)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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/fee#values) [fee](https://wiki.openstreetmap.org/wiki/Key:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno)
|
||||
[<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) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/sanitary_dump_station#values) [sanitary_dump_station](https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station%3Dno)
|
||||
[<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) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/toilets#values) [toilets](https://wiki.openstreetmap.org/wiki/Key:toilets) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno)
|
||||
[<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/permanent_camping#values) [permanent_camping](https://wiki.openstreetmap.org/wiki/Key:permanent_camping) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Donly)
|
||||
[<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) | [text](../SpecialInputElements.md#text) |
|
||||
[<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) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/power_supply#values) [power_supply](https://wiki.openstreetmap.org/wiki/Key:power_supply) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:power_supply%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:power_supply%3Dno)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### caravansites-name
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### caravansites-fee
|
||||
|
||||
|
||||
|
||||
The question is *Does this place charge a fee?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You need to pay for use* corresponds with `fee=yes`
|
||||
- *Can be used for free* corresponds with `fee=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### caravansites-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}`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `fee=yes`
|
||||
|
||||
|
||||
|
||||
### caravansites-sanitary-dump
|
||||
|
||||
|
||||
|
||||
The question is *Does this place have a sanitary dump station?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This place has a sanitary dump station* corresponds with `sanitary_dump_station=yes`
|
||||
- *This place does not have a sanitary dump station* corresponds with `sanitary_dump_station=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### caravansites-capacity
|
||||
|
||||
|
||||
|
||||
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`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### caravansites-internet
|
||||
|
||||
|
||||
|
||||
The question is *Does this place provide internet access?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *There is internet access* corresponds with `internet_access=yes`
|
||||
- *There is internet access* corresponds with `internet_access=wifi|internet_access=wlan`
|
||||
- This option cannot be chosen as answer
|
||||
- *There is no internet access* corresponds with `internet_access=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### caravansites-internet-fee
|
||||
|
||||
|
||||
|
||||
The question is *Do you have to pay for the internet access?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You need to pay extra for internet access* corresponds with `internet_access:fee=yes`
|
||||
- *You do not need to pay extra for internet access* corresponds with `internet_access:fee=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `internet_access=yes`
|
||||
|
||||
|
||||
|
||||
### caravansites-toilets
|
||||
|
||||
|
||||
|
||||
The question is *Does this place have toilets?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This place has toilets* corresponds with `toilets=yes`
|
||||
- *This place does not have toilets* corresponds with `toilets=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### caravansites-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>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### caravansites-long-term
|
||||
|
||||
|
||||
|
||||
The question is *Does this place offer spots for long term rental?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *There are some spots for long term rental, but you can also stay on a daily basis* corresponds with `permanent_camping=yes`
|
||||
- *There are no permanent guests here* corresponds with `permanent_camping=no`
|
||||
- *It is only possible to stay here if you have a long term contract (this place disappears from this map if you choose this)* corresponds with `permanent_camping=only`
|
||||
|
||||
|
||||
|
||||
|
||||
### caravansites-description
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
Show the images block at this location
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### minimap
|
||||
|
||||
|
||||
|
||||
Shows a small map with the feature. Added by default to every popup
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### operator
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### power_supply
|
||||
|
||||
|
||||
|
||||
The question is *Does this place have a power supply?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This place has a power supply* corresponds with `power_supply=yes`
|
||||
- *This place does not have power supply* corresponds with `power_supply=no`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/campersite/campersite.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/campersite/campersite.json)
|
2133
Docs/Layers/charging_station.md
Normal file
2133
Docs/Layers/charging_station.md
Normal file
File diff suppressed because it is too large
Load diff
2086
Docs/Layers/charging_station_ebikes.md
Normal file
2086
Docs/Layers/charging_station_ebikes.md
Normal file
File diff suppressed because it is too large
Load diff
285
Docs/Layers/climbing.md
Normal file
285
Docs/Layers/climbing.md
Normal file
|
@ -0,0 +1,285 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
climbing
|
||||
==========
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
A dummy layer which contains tagrenderings, shared among the climbing layers
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **19** and higher
|
||||
- Elements don't have a title set and cannot be toggled nor will they show up in the dashboard. If you import this layer in your theme, override `title` to make this toggleable.
|
||||
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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/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/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:charge%3D)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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>`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `leisure!~^(sports_centre)$&sport=climbing`
|
||||
|
||||
|
||||
|
||||
### average_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`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### 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`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### 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`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `climbing!~^(route)$&climbing:sport=yes|sport=climbing`
|
||||
|
||||
|
||||
|
||||
### bouldering
|
||||
|
||||
|
||||
|
||||
The question is *Is bouldering possible here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Bouldering is possible here* corresponds with `climbing:boulder=yes`
|
||||
- *Bouldering is not possible here* corresponds with `climbing:boulder=no`
|
||||
- *Bouldering is possible, although there are only a few problems* corresponds with `climbing:boulder=limited`
|
||||
- *There are {climbing:boulder} boulder problems* corresponds with `climbing:boulder~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### toprope
|
||||
|
||||
|
||||
|
||||
The question is *Is toprope climbing possible here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Toprope climbing is possible here* corresponds with `climbing:toprope=yes`
|
||||
- *Toprope climbing is not possible here* corresponds with `climbing:toprope=no`
|
||||
- *There are {climbing:toprope} toprope routes* corresponds with `climbing:toprope~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### sportclimbing
|
||||
|
||||
|
||||
|
||||
The question is *Is sport climbing possible here on fixed anchors?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Sport climbing is possible here* corresponds with `climbing:sport=yes`
|
||||
- *Sport climbing is not possible here* corresponds with `climbing:sport=no`
|
||||
- *There are {climbing:sport} sport climbing routes* corresponds with `climbing:sport~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### trad_climbing
|
||||
|
||||
|
||||
|
||||
The question is *Is traditional climbing possible here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Traditional climbing is possible here* corresponds with `climbing:traditional=yes`
|
||||
- *Traditional climbing is not possible here* corresponds with `climbing:traditional=no`
|
||||
- *There are {climbing:traditional} traditional climbing routes* corresponds with `climbing:traditional~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### max_bolts
|
||||
|
||||
|
||||
|
||||
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>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 `fee=no`
|
||||
- *Paying a fee is required to climb here* corresponds with `fee=yes`
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/climbing/climbing.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing/climbing.json)
|
220
Docs/Layers/climbing_area.md
Normal file
220
Docs/Layers/climbing_area.md
Normal file
|
@ -0,0 +1,220 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
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)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_contained_climbing_routes~.+`
|
||||
|
||||
|
||||
|
||||
### 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 `noname=yes`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 `climbing=boulder`
|
||||
- *A climbing crag - a single rock or cliff with at least a few climbing routes* corresponds with `climbing=crag`
|
||||
- *A climbing area with one or more climbing crags and/or boulders* corresponds with `climbing=area`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 `rock=limestone`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `climbing=crag|natural=cliff|natural=bare_rock`
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/climbing_area/climbing_area.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing_area/climbing_area.json)
|
216
Docs/Layers/climbing_club.md
Normal file
216
Docs/Layers/climbing_club.md
Normal file
|
@ -0,0 +1,216 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
climbing_club
|
||||
===============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/climbing/club.svg' height="100px">
|
||||
|
||||
A climbing club or organisation
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **10** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [climbing](https://mapcomplete.osm.be/climbing)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### climbing_club-name
|
||||
|
||||
|
||||
|
||||
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>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### 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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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)}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/climbing_club/climbing_club.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing_club/climbing_club.json)
|
460
Docs/Layers/climbing_gym.md
Normal file
460
Docs/Layers/climbing_gym.md
Normal file
|
@ -0,0 +1,460 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
climbing_gym
|
||||
==============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/climbing/climbing_gym.svg' height="100px">
|
||||
|
||||
A climbing gym
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **10** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [climbing](https://mapcomplete.osm.be/climbing)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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/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/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/service:climbing_shoes:rental#values) [service:climbing_shoes:rental](https://wiki.openstreetmap.org/wiki/Key:service:climbing_shoes:rental) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_shoes:rental%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_shoes:rental%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_shoes:rental%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:climbing_harness:rental#values) [service:climbing_harness:rental](https://wiki.openstreetmap.org/wiki/Key:service:climbing_harness:rental) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_harness:rental%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_harness:rental%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_harness:rental%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:climbing_rope:rental#values) [service:climbing_rope:rental](https://wiki.openstreetmap.org/wiki/Key:service:climbing_rope:rental) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_rope:rental%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_rope:rental%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:climbing_rope:rental%3Dno)
|
||||
[<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/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access:ssid#values) [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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 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>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### 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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### phone
|
||||
|
||||
|
||||
|
||||
The question is *What is the phone number of {title()}?*
|
||||
|
||||
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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### payment-options
|
||||
|
||||
|
||||
|
||||
The question is *Which methods of payment are accepted here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Cash is accepted here* corresponds with `payment:cash=yes`
|
||||
- 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 `payment:cards=yes`
|
||||
- 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 by QR-code is possible here* corresponds with `payment:qr_code=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:qr_code' target='_blank'>payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:qr_code%3Dno' target='_blank'>no</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)}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### shoe_rental
|
||||
|
||||
|
||||
|
||||
The question is *Can one rent climbing shoes here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Climbing shoes can be borrowed for free here* corresponds with `service:climbing_shoes:rental=yes&service:climbing_shoes:rental:fee=no`
|
||||
- *Climbing shoes can be rented here for {service:climbing_shoes:rental:charge}* corresponds with `service:climbing_shoes:rental=yes&service:climbing_shoes:rental:charge~.+`
|
||||
- This option cannot be chosen as answer
|
||||
- *Climbing shoes can be rented here* corresponds with `service:climbing_shoes:rental=yes&service:climbing_shoes:rental:fee=yes`
|
||||
- *Climbing shoes can <b>not</b> be rented here* corresponds with `service:climbing_shoes:rental=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### harness_rental
|
||||
|
||||
|
||||
|
||||
The question is *Can one rent a climbing harness here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *A climbing harness can be borrowed for free here* corresponds with `service:climbing_harness:rental=yes&service:climbing_harness:rental:fee=no`
|
||||
- *A climbing harness can be rented here for {service:climbing_harness:rental:charge}* corresponds with `service:climbing_harness:rental=yes&service:climbing_harness:rental:charge~.+`
|
||||
- This option cannot be chosen as answer
|
||||
- *A climbing harness can be rented here* corresponds with `service:climbing_harness:rental=yes`
|
||||
- *A climbing harness can <b>not</b> be rented here* corresponds with `service:climbing_harness:rental=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### belay_device_rental
|
||||
|
||||
|
||||
|
||||
The question is *Can one rent a belay device here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Belay devices are provided at each rope* corresponds with `service:climbing_belay_device:provided_at_each_rope=yes`
|
||||
- *A belay device can be borrowed for free here* corresponds with `service:climbing_belay_device:rental=yes&service:climbing_belay_device:rental:fee=no`
|
||||
- *A belay device can be rented here for {service:climbing_belay_device:rental:charge}* corresponds with `service:climbing_belay_device:rental=yes&service:climbing_belay_device:rental:charge~.+`
|
||||
- This option cannot be chosen as answer
|
||||
- *A belay device can be rented here* corresponds with `service:climbing_belay_device:rental=yes`
|
||||
- *A belay device can <b>not</b> be rented here* corresponds with `service:climbing_belay_device:rental=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### rope_rental
|
||||
|
||||
|
||||
|
||||
The question is *Can one rent a climbing rope here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *A climbing rope can be borrowed for free here* corresponds with `service:climbing_rope:rental=yes&service:climbing_rope:rental:fee=no`
|
||||
- *A climbing rope can be rented here for {service:climbing_rope:rental:charge}* corresponds with `service:climbing_rope:rental=yes&service:climbing_rope:rental:charge~.+`
|
||||
- This option cannot be chosen as answer
|
||||
- *A climbing rope can be rented here* corresponds with `service:climbing_rope:rental=yes`
|
||||
- *A climbing rope can <b>not</b> be rented here* corresponds with `service:climbing_rope:rental=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### climbingbouldering
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### climbingsportclimbing
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### climbingtoprope
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### climbingmindifficulty
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### climbingmaxdifficulty
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Speed climbing?
|
||||
|
||||
|
||||
|
||||
The question is *Is there a speed climbing wall?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *There is a speed climbing wall* corresponds with `climbing:speed=yes`
|
||||
- *There is no speed climbing wall* corresponds with `climbing:speed=no`
|
||||
- *There are {climbing:speed} speed climbing walls* corresponds with `climbing:speed~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### internet
|
||||
|
||||
|
||||
|
||||
The question is *Does this place offer internet access?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This place offers wireless internet access* corresponds with `internet_access=wlan`
|
||||
- *This place <b>does not</b> offer internet access* corresponds with `internet_access=no`
|
||||
- *This place offers internet access* corresponds with `internet_access=yes`
|
||||
- This option cannot be chosen as answer
|
||||
- *This place offers internet access via a terminal or computer* corresponds with `internet_access=terminal`
|
||||
- *This place offers wired internet access* corresponds with `internet_access=wired`
|
||||
|
||||
|
||||
|
||||
|
||||
### internet-fee
|
||||
|
||||
|
||||
|
||||
The question is *Is there a fee for internet access?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *There is a fee for the internet access at this place* corresponds with `internet_access:fee=yes`
|
||||
- *Internet access is free at this place* corresponds with `internet_access:fee=no`
|
||||
- *Internet access is free at this place, for customers only* corresponds with `internet_access:fee=customers`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `internet_access!=no&internet_access~.+`
|
||||
|
||||
|
||||
|
||||
### internet-ssid
|
||||
|
||||
|
||||
|
||||
The question is *What is the network name for the wireless internet access?*
|
||||
|
||||
This rendering asks information about the property [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid)
|
||||
|
||||
This is rendered with `The network name is <b>{internet_access:ssid}</b>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Telekom* corresponds with `internet_access:ssid=Telekom`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `internet_access=wlan`
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/climbing_gym/climbing_gym.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing_gym/climbing_gym.json)
|
147
Docs/Layers/climbing_opportunity.md
Normal file
147
Docs/Layers/climbing_opportunity.md
Normal file
|
@ -0,0 +1,147 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
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)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### climbing-opportunity-name
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `name~.+`
|
||||
|
||||
|
||||
|
||||
### climbing-possible
|
||||
|
||||
|
||||
|
||||
The question is *Is climbing possible here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Climbing is possible here* corresponds with `sport=climbing`
|
||||
- *Climbing is not possible here* corresponds with `climbing=no`
|
||||
- *Climbing is not possible here* corresponds with `sport!~^(climbing)$`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/climbing_opportunity/climbing_opportunity.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing_opportunity/climbing_opportunity.json)
|
230
Docs/Layers/climbing_route.md
Normal file
230
Docs/Layers/climbing_route.md
Normal file
|
@ -0,0 +1,230 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
climbing_route
|
||||
================
|
||||
|
||||
|
||||
|
||||
<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 is needed as dependency for layer [climbing_area](#climbing_area)
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [climbing](https://mapcomplete.osm.be/climbing)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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: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#values) [climbing:grade:french](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french) | [string](../SpecialInputElements.md#string) |
|
||||
[<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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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 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 climbing route doesn't have a name* corresponds with `noname=yes`
|
||||
|
||||
|
||||
|
||||
|
||||
### Length
|
||||
|
||||
|
||||
|
||||
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`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Difficulty
|
||||
|
||||
|
||||
|
||||
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`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### bolts
|
||||
|
||||
|
||||
|
||||
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 <div class='subtle'>This is without relays and indicates how much quickdraws a climber needs</div>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This route is not bolted* corresponds with `climbing:bolted=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### description
|
||||
|
||||
|
||||
|
||||
The question is *Is there still some relevant info that the previous questions did not cover? Feel free to add it here.*
|
||||
|
||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||
|
||||
This is rendered with `{description}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Rock type via embedded feature
|
||||
|
||||
|
||||
|
||||
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>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/climbing_route/climbing_route.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing_route/climbing_route.json)
|
304
Docs/Layers/clock.md
Normal file
304
Docs/Layers/clock.md
Normal file
|
@ -0,0 +1,304 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
clock
|
||||
=======
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/clock/clock.svg' height="100px">
|
||||
|
||||
Layer with public clocks
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **13** and higher
|
||||
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[1])
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [clock](https://mapcomplete.osm.be/clock)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/support#values) [support](https://wiki.openstreetmap.org/wiki/Key:support) | Multiple choice | [pole](https://wiki.openstreetmap.org/wiki/Tag:support%3Dpole) [wall_mounted](https://wiki.openstreetmap.org/wiki/Tag:support%3Dwall_mounted) [billboard](https://wiki.openstreetmap.org/wiki/Tag:support%3Dbillboard) [ground](https://wiki.openstreetmap.org/wiki/Tag:support%3Dground)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/display#values) [display](https://wiki.openstreetmap.org/wiki/Key:display) | Multiple choice | [analog](https://wiki.openstreetmap.org/wiki/Tag:display%3Danalog) [digital](https://wiki.openstreetmap.org/wiki/Tag:display%3Ddigital) [sundial](https://wiki.openstreetmap.org/wiki/Tag:display%3Dsundial) [unorthodox](https://wiki.openstreetmap.org/wiki/Tag:display%3Dunorthodox)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/visibility#values) [visibility](https://wiki.openstreetmap.org/wiki/Key:visibility) | Multiple choice | [house](https://wiki.openstreetmap.org/wiki/Tag:visibility%3Dhouse) [street](https://wiki.openstreetmap.org/wiki/Tag:visibility%3Dstreet) [area](https://wiki.openstreetmap.org/wiki/Tag:visibility%3Darea)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/date#values) [date](https://wiki.openstreetmap.org/wiki/Key:date) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:date%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:date%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/thermometer#values) [thermometer](https://wiki.openstreetmap.org/wiki/Key:thermometer) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:thermometer%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:thermometer%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/barometer#values) [barometer](https://wiki.openstreetmap.org/wiki/Key:barometer) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:barometer%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:barometer%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/hygrometer#values) [hygrometer](https://wiki.openstreetmap.org/wiki/Key:hygrometer) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:hygrometer%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:hygrometer%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/faces#values) [faces](https://wiki.openstreetmap.org/wiki/Key:faces) | [pnat](../SpecialInputElements.md#pnat) | [1](https://wiki.openstreetmap.org/wiki/Tag:faces%3D1) [2](https://wiki.openstreetmap.org/wiki/Tag:faces%3D2) [4](https://wiki.openstreetmap.org/wiki/Tag:faces%3D4)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### support
|
||||
|
||||
|
||||
|
||||
The question is *In what way is the clock mounted?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This clock is mounted on a pole* corresponds with `support=pole`
|
||||
- *This clock is mounted on a wall* corresponds with `support=wall_mounted`
|
||||
- *This clock is part of a billboard* corresponds with `support=billboard`
|
||||
- *This clock is on the ground* corresponds with `support=ground`
|
||||
|
||||
|
||||
|
||||
|
||||
### display
|
||||
|
||||
|
||||
|
||||
The question is *How does this clock display the time?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This clock displays the time with hands* corresponds with `display=analog`
|
||||
- *This clock displays the time with digits* corresponds with `display=digital`
|
||||
- *This clock displays the time with a sundial* corresponds with `display=sundial`
|
||||
- *This clock displays the time in a non-standard way, e.g using binary, water or something else* corresponds with `display=unorthodox`
|
||||
|
||||
|
||||
|
||||
|
||||
### visibility
|
||||
|
||||
|
||||
|
||||
The question is *How visible is this clock?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This clock is visible from about 5 meters away (small wall-mounted clock)* corresponds with `visibility=house`
|
||||
- *This clock is visible from about 20 meters away (medium size billboard clock)* corresponds with `visibility=street`
|
||||
- *This clock is visible from more than 20 meters away (e.g. a church clock or station clock)* corresponds with `visibility=area`
|
||||
|
||||
|
||||
|
||||
|
||||
### date
|
||||
|
||||
|
||||
|
||||
The question is *Does this clock also display the date?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This clock also displays the date* corresponds with `date=yes`
|
||||
- *This clock does not display the date* corresponds with `date=no`
|
||||
- *This clock does probably not display the date* corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### thermometer
|
||||
|
||||
|
||||
|
||||
The question is *Does this clock also display the temperature?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This clock also displays the temperature* corresponds with `thermometer=yes`
|
||||
- *This clock does not display the temperature* corresponds with `thermometer=no`
|
||||
- *This clock does probably not display the temperature* corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### barometer
|
||||
|
||||
|
||||
|
||||
The question is *Does this clock also display the air pressure?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This clock also displays the air pressure* corresponds with `barometer=yes`
|
||||
- *This clock does not display the air pressure* corresponds with `barometer=no`
|
||||
- *This clock does probably not display the air pressure* corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### hygrometer
|
||||
|
||||
|
||||
|
||||
The question is *Does this clock also display the humidity?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This clock also displays the humidity* corresponds with `hygrometer=yes`
|
||||
- *This clock does not display the humidity* corresponds with `hygrometer=no`
|
||||
- *This clock does probably not display the humidity* corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
|
||||
|
||||
### faces
|
||||
|
||||
|
||||
|
||||
The question is *How many faces does this clock have?*
|
||||
|
||||
This rendering asks information about the property [faces](https://wiki.openstreetmap.org/wiki/Key:faces)
|
||||
|
||||
This is rendered with `This clock has {faces} faces`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This clock has one face* corresponds with `faces=1`
|
||||
- *This clock has two faces* corresponds with `faces=2`
|
||||
- *This clock has four faces* corresponds with `faces=4`
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/clock/clock.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/clock/clock.json)
|
116
Docs/Layers/crab_address.md
Normal file
116
Docs/Layers/crab_address.md
Normal file
|
@ -0,0 +1,116 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
crab_address
|
||||
==============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/crab_address/housenumber_blank.svg' height="100px">
|
||||
|
||||
Address data for Flanders by the governement, suited for import into OpenStreetMap. Datadump from 2021-10-26. This layer contains only visualisation logic. Import buttons should be added via an override. Note that HNRLABEL contains the original value, whereas _HNRLABEL contains a slightly cleaned version
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **0** and higher
|
||||
- <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`
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### render_crab
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/crab_address/crab_address.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/crab_address/crab_address.json)
|
386
Docs/Layers/crossings.md
Normal file
386
Docs/Layers/crossings.md
Normal file
|
@ -0,0 +1,386 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
crossings
|
||||
===========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/crossings/pedestrian_crossing.svg' height="100px">
|
||||
|
||||
Crossings for pedestrians and cyclists
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **17** and higher
|
||||
- This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[0])
|
||||
- This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[1])
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [blind_osm](https://mapcomplete.osm.be/blind_osm)
|
||||
- [cycle_infra](https://mapcomplete.osm.be/cycle_infra)
|
||||
- [kerbs_and_crossings](https://mapcomplete.osm.be/kerbs_and_crossings)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/crossing#values) [crossing](https://wiki.openstreetmap.org/wiki/Key:crossing) | Multiple choice | [uncontrolled](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Duncontrolled) [traffic_signals](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dtraffic_signals) [unmarked](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dunmarked)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/crossing_ref#values) [crossing_ref](https://wiki.openstreetmap.org/wiki/Key:crossing_ref) | Multiple choice | [zebra](https://wiki.openstreetmap.org/wiki/Tag:crossing_ref%3Dzebra) [](https://wiki.openstreetmap.org/wiki/Tag:crossing_ref%3D)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/bicycle#values) [bicycle](https://wiki.openstreetmap.org/wiki/Key:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/crossing:island#values) [crossing:island](https://wiki.openstreetmap.org/wiki/Key:crossing:island) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dno)
|
||||
[<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/button_operated#values) [button_operated](https://wiki.openstreetmap.org/wiki/Key:button_operated) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:button_operated%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:button_operated%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/traffic_signals:sound#values) [traffic_signals:sound](https://wiki.openstreetmap.org/wiki/Key:traffic_signals:sound) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:sound%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:sound%3Dno) [locate](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:sound%3Dlocate) [walk](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:sound%3Dwalk)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/traffic_signals:vibration#values) [traffic_signals:vibration](https://wiki.openstreetmap.org/wiki/Key:traffic_signals:vibration) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:vibration%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:vibration%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/traffic_signals:arrow#values) [traffic_signals:arrow](https://wiki.openstreetmap.org/wiki/Key:traffic_signals:arrow) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:arrow%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:arrow%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/traffic_signals:minimap#values) [traffic_signals:minimap](https://wiki.openstreetmap.org/wiki/Key:traffic_signals:minimap) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:minimap%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:traffic_signals:minimap%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/red_turn:right:bicycle#values) [red_turn:right:bicycle](https://wiki.openstreetmap.org/wiki/Key:red_turn:right:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/red_turn:straight:bicycle#values) [red_turn:straight:bicycle](https://wiki.openstreetmap.org/wiki/Key:red_turn:straight:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dno)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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-type
|
||||
|
||||
|
||||
|
||||
The question is *What kind of crossing is this?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Crossing, without traffic lights* corresponds with `crossing=uncontrolled`
|
||||
- *Crossing with traffic signals* corresponds with `crossing=traffic_signals`
|
||||
- *Zebra crossing* corresponds with `crossing=zebra`
|
||||
- This option cannot be chosen as answer
|
||||
- *Crossing without crossing markings* corresponds with `crossing=unmarked`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `highway=crossing`
|
||||
|
||||
|
||||
|
||||
### crossing-is-zebra
|
||||
|
||||
|
||||
|
||||
The question is *Is this is a zebra crossing?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This is a zebra crossing* corresponds with `crossing_ref=zebra`
|
||||
- *This is not a zebra crossing* corresponds with ``
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `crossing=uncontrolled`
|
||||
|
||||
|
||||
|
||||
### crossing-bicycle-allowed
|
||||
|
||||
|
||||
|
||||
The question is *Is this crossing also for bicycles?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *A cyclist can use this crossing* corresponds with `bicycle=yes`
|
||||
- *A cyclist can not use this crossing* corresponds with `bicycle=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `highway=crossing`
|
||||
|
||||
|
||||
|
||||
### crossing-has-island
|
||||
|
||||
|
||||
|
||||
The question is *Does this crossing have an island in the middle?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This crossing has an island in the middle* corresponds with `crossing:island=yes`
|
||||
- *This crossing does not have an island in the middle* corresponds with `crossing:island=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `highway=crossing`
|
||||
|
||||
|
||||
|
||||
### crossing-tactile
|
||||
|
||||
|
||||
|
||||
The question is *Does this crossing have tactile paving?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This crossing has tactile paving* corresponds with `tactile_paving=yes`
|
||||
- *This crossing does not have tactile paving* corresponds with `tactile_paving=no`
|
||||
- *This crossing has tactile paving, but is not correct* corresponds with `tactile_paving=incorrect`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `highway=crossing`
|
||||
|
||||
|
||||
|
||||
### crossing-button
|
||||
|
||||
|
||||
|
||||
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 `button_operated=yes`
|
||||
- *This traffic light does not have a button to request green light* corresponds with `button_operated=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `highway=traffic_signals|crossing=traffic_signals`
|
||||
|
||||
|
||||
|
||||
### crossing-sound
|
||||
|
||||
|
||||
|
||||
The question is *Does this traffic light have sound signals to aid crossing?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This traffic light has sound signals to help crossing, both for finding the crossing and for crossing.* corresponds with `traffic_signals:sound=yes`
|
||||
- *This traffic light does not have sound signals to help crossing.* corresponds with `traffic_signals:sound=no`
|
||||
- *This traffic light has a sound signal to help locate the pole, but no signal to sign that it is safe to cross.* corresponds with `traffic_signals:sound=locate`
|
||||
- *This traffic light has a sound signal to sign that it is safe to cross, but no signal to help locate the pole.* corresponds with `traffic_signals:sound=walk`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `crossing=traffic_signals`
|
||||
|
||||
|
||||
|
||||
### crossing-vibration
|
||||
|
||||
|
||||
|
||||
The question is *Does this traffic light have vibration signals to aid crossing? (usually located at the bottom of the crossing button)*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *The button for this traffic light has a vibration signal to indicate that it is safe to cross.* corresponds with `traffic_signals:vibration=yes`
|
||||
- *The button for this traffic light does not have a vibration signal to indicate that it is safe to cross.* corresponds with `traffic_signals:vibration=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `crossing=traffic_signals&button_operated=yes`
|
||||
|
||||
|
||||
|
||||
### crossing-arrow
|
||||
|
||||
|
||||
|
||||
The question is *Does this traffic light have an arrow pointing in the direction of crossing?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This traffic light has an arrow pointing in the direction of crossing.* corresponds with `traffic_signals:arrow=yes`
|
||||
- *This traffic light does <b>not</b> have an arrow pointing in the direction of crossing.* corresponds with `traffic_signals:arrow=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `crossing=traffic_signals`
|
||||
|
||||
|
||||
|
||||
### crossing-minimap
|
||||
|
||||
|
||||
|
||||
The question is *Does this traffic light have a tactile map showing the layout of the crossing?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This traffic light has a tactile map showing the layout of the crossing.* corresponds with `traffic_signals:minimap=yes`
|
||||
- *This traffic light does <b>not</b> have a tactile map showing the layout of the crossing.* corresponds with `traffic_signals:minimap=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `crossing=traffic_signals`
|
||||
|
||||
|
||||
|
||||
### crossing-right-turn-through-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 `red_turn:right:bicycle=yes`
|
||||
- *A cyclist can turn right if the light is red* corresponds with `red_turn:right:bicycle=yes`
|
||||
- *A cyclist can not turn right if the light is red* corresponds with `red_turn:right:bicycle=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `highway=traffic_signals`
|
||||
|
||||
|
||||
|
||||
### crossing-continue-through-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 `red_turn:straight:bicycle=yes`
|
||||
- *A cyclist can go straight on if the light is red* corresponds with `red_turn:straight:bicycle=yes`
|
||||
- *A cyclist can not go straight on if the light is red* corresponds with `red_turn:straight:bicycle=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `highway=traffic_signals`
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
tactile_paving_advanced.0 | With or without tactile paving (default) |
|
||||
tactile_paving_advanced.1 | With tactile paving | tactile_paving=yes
|
||||
tactile_paving_advanced.2 | Without tactile paving | tactile_paving=no
|
||||
tactile_paving_advanced.3 | No information about tactile paving |
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/crossings/crossings.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/crossings/crossings.json)
|
205
Docs/Layers/cultural_places_without_etymology.md
Normal file
205
Docs/Layers/cultural_places_without_etymology.md
Normal file
|
@ -0,0 +1,205 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
cultural_places_without_etymology
|
||||
===================================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/pin:#05d7fcaa' height="100px">
|
||||
|
||||
All objects which have an etymology known
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **18** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [etymology](https://mapcomplete.osm.be/etymology)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name:etymology:wikidata#values) [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name:etymology#values) [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology) | [string](../SpecialInputElements.md#string) | [unknown](https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### etymology-images-from-wikipedia
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### wikipedia-etymology
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### zoeken op inventaris onroerend erfgoed
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_country=be`
|
||||
|
||||
|
||||
|
||||
### simple etymology
|
||||
|
||||
|
||||
|
||||
The question is *What is this object named after?*
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *The origin of this name is unknown in all literature* corresponds with `name:etymology=unknown`
|
||||
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
Show the images block at this location
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### street-name-sign-image
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### minimap
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### etymology_multi_apply
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### wikipedia
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `wikidata~.+`
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/etymology/etymology.json)
|
486
Docs/Layers/cycleways_and_roads.md
Normal file
486
Docs/Layers/cycleways_and_roads.md
Normal file
|
@ -0,0 +1,486 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
cycleways_and_roads
|
||||
=====================
|
||||
|
||||
|
||||
|
||||
<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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- 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)
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [blind_osm](https://mapcomplete.osm.be/blind_osm)
|
||||
- [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)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cycleway#values) [cycleway](https://wiki.openstreetmap.org/wiki/Key:cycleway) | Multiple choice | [shared_lane](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dshared_lane) [lane](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dlane) [track](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dtrack) [separate](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dseparate) [no](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dno) [no](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/lit#values) [lit](https://wiki.openstreetmap.org/wiki/Key:lit) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno) [24/7](https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cyclestreet#values) [cyclestreet](https://wiki.openstreetmap.org/wiki/Key:cyclestreet) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes) [](https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3D)
|
||||
[<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) | [nat](../SpecialInputElements.md#nat) | [20](https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D20) [30](https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D30) [50](https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D50) [70](https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D70) [90](https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D90)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cycleway:surface#values) [cycleway:surface](https://wiki.openstreetmap.org/wiki/Key:cycleway:surface) | [string](../SpecialInputElements.md#string) | [asphalt](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dasphalt) [paving_stones](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dpaving_stones) [concrete](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dconcrete) [unhewn_cobblestone](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dunhewn_cobblestone) [sett](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dsett) [wood](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dwood) [gravel](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dgravel) [fine_gravel](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dfine_gravel) [pebblestone](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dpebblestone) [ground](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dground)
|
||||
[<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) | [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) | [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)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### Cycleway type for a road
|
||||
|
||||
|
||||
|
||||
The question is *What kind of cycleway is here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *There is a shared lane* corresponds with `cycleway=shared_lane`
|
||||
- *There is a lane next to the road (separated with paint)* corresponds with `cycleway=lane`
|
||||
- *There is a track, but no cycleway drawn separately from this road on the map.* corresponds with `cycleway=track`
|
||||
- *There is a separately drawn cycleway* corresponds with `cycleway=separate`
|
||||
- *There is no cycleway* corresponds with `cycleway=no`
|
||||
- *There is no cycleway* corresponds with `cycleway=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### is lit?
|
||||
|
||||
|
||||
|
||||
The question is *Is this street lit?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This street is lit* corresponds with `lit=yes`
|
||||
- *This road is not lit* corresponds with `lit=no`
|
||||
- *This road is lit at night* corresponds with `lit=sunset-sunrise`
|
||||
- This option cannot be chosen as answer
|
||||
- *This road is lit 24/7* corresponds with `lit=24/7`
|
||||
|
||||
|
||||
|
||||
|
||||
### Is this a cyclestreet? (For a road)
|
||||
|
||||
|
||||
|
||||
The question is *Is this a cyclestreet?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This is a cyclestreet, and a 30km/h zone.* corresponds with `cyclestreet=yes`
|
||||
- *This is a cyclestreet* corresponds with `cyclestreet=yes`
|
||||
- *This is not a cyclestreet.* corresponds with ``
|
||||
|
||||
|
||||
|
||||
|
||||
### Maxspeed (for road)
|
||||
|
||||
|
||||
|
||||
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`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *The maximum speed is 20 km/h* corresponds with `maxspeed=20`
|
||||
- *The maximum speed is 30 km/h* corresponds with `maxspeed=30`
|
||||
- *The maximum speed is 50 km/h* corresponds with `maxspeed=50`
|
||||
- *The maximum speed is 70 km/h* corresponds with `maxspeed=70`
|
||||
- *The maximum speed is 90 km/h* corresponds with `maxspeed=90`
|
||||
|
||||
|
||||
|
||||
|
||||
### Cycleway:surface
|
||||
|
||||
|
||||
|
||||
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 cycleway is unpaved* corresponds with `cycleway:surface=unpaved`
|
||||
- This option cannot be chosen as answer
|
||||
- *This cycleway is paved* corresponds with `cycleway:surface=paved`
|
||||
- This option cannot be chosen as answer
|
||||
- *This cycleway is made of asphalt* corresponds with `cycleway:surface=asphalt`
|
||||
- *This cycleway is made of smooth paving stones* corresponds with `cycleway:surface=paving_stones`
|
||||
- *This cycleway is made of concrete* corresponds with `cycleway:surface=concrete`
|
||||
- *This cycleway is made of cobblestone (unhewn or sett)* corresponds with `cycleway:surface=cobblestone`
|
||||
- This option cannot be chosen as answer
|
||||
- *This cycleway is made of raw, natural cobblestone* corresponds with `cycleway:surface=unhewn_cobblestone`
|
||||
- *This cycleway is made of flat, square cobblestone* corresponds with `cycleway:surface=sett`
|
||||
- *This cycleway is made of wood* corresponds with `cycleway:surface=wood`
|
||||
- *This cycleway is made of gravel* corresponds with `cycleway:surface=gravel`
|
||||
- *This cycleway is made of fine gravel* corresponds with `cycleway:surface=fine_gravel`
|
||||
- *This cycleway is made of pebblestone* corresponds with `cycleway:surface=pebblestone`
|
||||
- *This cycleway is made from raw ground* corresponds with `cycleway:surface=ground`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `cycleway=shared_lane|cycleway=lane|cycleway=track`
|
||||
|
||||
|
||||
|
||||
### Cycleway:smoothness
|
||||
|
||||
|
||||
|
||||
The question is *What is the smoothness of this cycleway?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Usable for thin rollers: rollerblade, skateboard* corresponds with `cycleway:smoothness=excellent`
|
||||
- *Usable for thin wheels: racing bike* corresponds with `cycleway:smoothness=good`
|
||||
- *Usable for normal wheels: city bike, wheelchair, scooter* corresponds with `cycleway:smoothness=intermediate`
|
||||
- *Usable for robust wheels: trekking bike, car, rickshaw* corresponds with `cycleway:smoothness=bad`
|
||||
- *Usable for vehicles with high clearance: light duty off-road vehicle* corresponds with `cycleway:smoothness=very_bad`
|
||||
- *Usable for off-road vehicles: heavy duty off-road vehicle* corresponds with `cycleway:smoothness=horrible`
|
||||
- *Usable for specialized off-road vehicles: tractor, ATV* corresponds with `cycleway:smoothness=very_horrible`
|
||||
- *Impassable / No wheeled vehicle* corresponds with `cycleway:smoothness=impassable`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `cycleway=shared_lane|cycleway=lane|cycleway=track`
|
||||
|
||||
|
||||
|
||||
### Surface of the road
|
||||
|
||||
|
||||
|
||||
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 cycleway is unhardened* corresponds with `surface=unpaved`
|
||||
- This option cannot be chosen as answer
|
||||
- *This cycleway is paved* corresponds with `surface=paved`
|
||||
- This option cannot be chosen as answer
|
||||
- *This cycleway is made of asphalt* corresponds with `surface=asphalt`
|
||||
- *This cycleway is made of smooth paving stones* corresponds with `surface=paving_stones`
|
||||
- *This cycleway is made of concrete* corresponds with `surface=concrete`
|
||||
- *This cycleway is made of cobblestone (unhewn or sett)* corresponds with `surface=cobblestone`
|
||||
- This option cannot be chosen as answer
|
||||
- *This cycleway is made of raw, natural cobblestone* corresponds with `surface=unhewn_cobblestone`
|
||||
- *This cycleway is made of flat, square cobblestone* corresponds with `surface=sett`
|
||||
- *This cycleway is made of wood* corresponds with `surface=wood`
|
||||
- *This cycleway is made of gravel* corresponds with `surface=gravel`
|
||||
- *This cycleway is made of fine gravel* corresponds with `surface=fine_gravel`
|
||||
- *This cycleway is made of pebblestone* corresponds with `surface=pebblestone`
|
||||
- *This cycleway is made from raw ground* corresponds with `surface=ground`
|
||||
|
||||
|
||||
|
||||
|
||||
### Surface of the street
|
||||
|
||||
|
||||
|
||||
The question is *What is the smoothness of this street?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Usable for thin rollers: rollerblade, skateboard* corresponds with `smoothness=excellent`
|
||||
- *Usable for thin wheels: racing bike* corresponds with `smoothness=good`
|
||||
- *Usable for normal wheels: city bike, wheelchair, scooter* corresponds with `smoothness=intermediate`
|
||||
- *Usable for robust wheels: trekking bike, car, rickshaw* corresponds with `smoothness=bad`
|
||||
- *Usable for vehicles with high clearance: light duty off-road vehicle* corresponds with `smoothness=very_bad`
|
||||
- *Usable for off-road vehicles: heavy duty off-road vehicle* corresponds with `smoothness=horrible`
|
||||
- *Usable for specialized off-road vehicles: tractor, ATV* corresponds with `smoothness=very_horrible`
|
||||
- *Impassable / No wheeled vehicle* corresponds with `smoothness=impassable`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `cycleway=no|highway=cycleway`
|
||||
|
||||
|
||||
|
||||
### width:carriageway
|
||||
|
||||
|
||||
|
||||
The question is *What is the carriage width of this road (in meters)?*
|
||||
|
||||
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>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### cycleway-lane-track-traffic-signs
|
||||
|
||||
|
||||
|
||||
The question is *What traffic sign does this cycleway have?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Compulsory cycleway* corresponds with `cycleway:traffic_sign=BE:D7`
|
||||
- *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 `cycleway:traffic_sign=BE:D9`
|
||||
- *Unsegregated foot/cycleway* corresponds with `cycleway:traffic_sign=BE:D10`
|
||||
- *No traffic sign present* corresponds with `cycleway:traffic_sign=none`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `cycleway=lane|cycleway=track&_country=be`
|
||||
|
||||
|
||||
|
||||
### cycleway-traffic-signs
|
||||
|
||||
|
||||
|
||||
The question is *What traffic sign does this cycleway have?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Compulsory cycleway* corresponds with `traffic_sign=BE:D7`
|
||||
- *Compulsory cycleway (with supplementary sign)<br>* corresponds with `traffic_sign~^(BE:D7;.*)$`
|
||||
- This option cannot be chosen as answer
|
||||
- *Segregated foot/cycleway* corresponds with `traffic_sign=BE:D9`
|
||||
- *Unsegregated foot/cycleway* corresponds with `traffic_sign=BE:D10`
|
||||
- *Compulsory cycleway* corresponds with `traffic_sign=NL:G11`
|
||||
- *Compulsory (moped)cycleway* corresponds with `traffic_sign=NL:G12a`
|
||||
- *Non-compulsory cycleway* corresponds with `traffic_sign=NL:G13`
|
||||
- *No traffic sign present* corresponds with `traffic_sign=none`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `highway=cycleway|highway=path&_country=be|_country=nl`
|
||||
|
||||
|
||||
|
||||
### cycleway-traffic-signs-supplementary
|
||||
|
||||
|
||||
|
||||
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 `cycleway:traffic_sign=BE:D7;BE:M6`
|
||||
- *Speedpedelecs must use the cycleway* corresponds with `cycleway:traffic_sign=BE:D7;BE:M13`
|
||||
- *Mopeds and speedpedelecs must use the cycleway* corresponds with `cycleway:traffic_sign=BE:D7;BE:M14`
|
||||
- *Mopeds are not allowed* corresponds with `cycleway:traffic_sign=BE:D7;BE:M7`
|
||||
- *Speedpedelecs are not allowed* corresponds with `cycleway:traffic_sign=BE:D7;BE:M15`
|
||||
- *Mopeds and speedpedelecs are not allowed* corresponds with `cycleway:traffic_sign=BE:D7;BE:M16`
|
||||
- *No supplementary traffic sign present* corresponds with `cycleway:traffic_sign:supplementary=none`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `cycleway:traffic_sign=BE:D7|cycleway:traffic_sign~^(BE:D7;.*)$`
|
||||
|
||||
|
||||
|
||||
### cycleways_and_roads-cycleway:buffer
|
||||
|
||||
|
||||
|
||||
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`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `cycleway=track|cycleway=lane`
|
||||
|
||||
|
||||
|
||||
### cyclelan-segregation
|
||||
|
||||
|
||||
|
||||
The question is *How is this cycleway separated from the road?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This cycleway is separated by a dashed line* corresponds with `cycleway:separation=dashed_line`
|
||||
- *This cycleway is separated by a solid line* corresponds with `cycleway:separation=solid_line`
|
||||
- *This cycleway is separated by a parking lane* corresponds with `cycleway:separation=parking_lane`
|
||||
- *This cycleway is separated by a kerb* corresponds with `cycleway:separation=kerb`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `cycleway=track|cycleway=lane`
|
||||
|
||||
|
||||
|
||||
### cycleway-segregation
|
||||
|
||||
|
||||
|
||||
The question is *How is this cycleway separated from the road?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This cycleway is separated by a dashed line* corresponds with `separation=dashed_line`
|
||||
- *This cycleway is separated by a solid line* corresponds with `separation=solid_line`
|
||||
- *This cycleway is separated by a parking lane* corresponds with `separation=parking_lane`
|
||||
- *This cycleway is separated by a kerb* corresponds with `separation=kerb`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `highway=cycleway|highway=path`
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### split-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/cycleways_and_roads/cycleways_and_roads.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/cycleways_and_roads/cycleways_and_roads.json)
|
439
Docs/Layers/defibrillator.md
Normal file
439
Docs/Layers/defibrillator.md
Normal file
|
@ -0,0 +1,439 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
defibrillator
|
||||
===============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/square:#008754;./assets/layers/defibrillator/defibrillator.svg' height="100px">
|
||||
|
||||
A layer showing defibrillators which can be used in case of emergency. This contains public defibrillators, but also defibrillators which might need staff to fetch the actual device
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **12** and higher
|
||||
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[1])
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [aed](https://mapcomplete.osm.be/aed)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) [no](https://wiki.openstreetmap.org/wiki/Tag:access%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/defibrillator#values) [defibrillator](https://wiki.openstreetmap.org/wiki/Key:defibrillator) | Multiple choice | [manual](https://wiki.openstreetmap.org/wiki/Tag:defibrillator%3Dmanual) [automatic](https://wiki.openstreetmap.org/wiki/Tag:defibrillator%3Dautomatic)
|
||||
[<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) | [int](../SpecialInputElements.md#int) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/defibrillator:location#values) [defibrillator:location](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location) | [text](../SpecialInputElements.md#text) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/defibrillator:location:en#values) [defibrillator:location:en](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location:en) | [text](../SpecialInputElements.md#text) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/defibrillator:location:fr#values) [defibrillator:location:fr](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location:fr) | [text](../SpecialInputElements.md#text) |
|
||||
[<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/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [text](../SpecialInputElements.md#text) |
|
||||
[<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/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [text](../SpecialInputElements.md#text) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/survey:date#values) [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/fixme#values) [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme) | [text](../SpecialInputElements.md#text) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### defibrillator-indoors
|
||||
|
||||
|
||||
|
||||
The question is *Is this defibrillator located indoors?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This defibrillator is located indoors* corresponds with `indoor=yes`
|
||||
- *This defibrillator is located outdoors* corresponds with `indoor=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### defibrillator-access
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Publicly accessible* corresponds with `access=yes`
|
||||
- *Publicly accessible* corresponds with `access=public`
|
||||
- This option cannot be chosen as answer
|
||||
- *Only accessible to customers* corresponds with `access=customers`
|
||||
- *Not accessible to the general public (e.g. only accesible to staff, the owners, …)* corresponds with `access=private`
|
||||
- *Not accessible, possibly only for professional use* corresponds with `access=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### defibrillator-defibrillator
|
||||
|
||||
|
||||
|
||||
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 `defibrillator=manual`
|
||||
- *This is a normal automatic defibrillator* corresponds with `defibrillator=automatic`
|
||||
- *This is a special type of defibrillator: {defibrillator}* corresponds with `defibrillator~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `access=no`
|
||||
|
||||
|
||||
|
||||
### defibrillator-level
|
||||
|
||||
|
||||
|
||||
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 defibrillator is on the <b>ground floor</b>* corresponds with `level=0`
|
||||
- *This defibrillator is on the <b>first floor</b>* corresponds with `level=1`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `indoor=yes`
|
||||
|
||||
|
||||
|
||||
### defibrillator-defibrillator:location
|
||||
|
||||
|
||||
|
||||
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 language):</i><br/>{defibrillator:location}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### defibrillator-defibrillator:location:en
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### defibrillator-defibrillator:location:fr
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### wheelchair-access
|
||||
|
||||
|
||||
|
||||
The question is *Is this place accessible with a wheelchair?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This place is specially adapted for wheelchair users* corresponds with `wheelchair=designated`
|
||||
- *This place is easily reachable with a wheelchair* corresponds with `wheelchair=yes`
|
||||
- *It is possible to reach this place in a wheelchair, but it is not easy* corresponds with `wheelchair=limited`
|
||||
- *This place is not reachable with a wheelchair* corresponds with `wheelchair=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### defibrillator-ref
|
||||
|
||||
|
||||
|
||||
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>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### defibrillator-email
|
||||
|
||||
|
||||
|
||||
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>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### defibrillator-phone
|
||||
|
||||
|
||||
|
||||
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>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### opening_hours_24_7
|
||||
|
||||
|
||||
|
||||
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 `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *24/7 opened (including holidays)* corresponds with `opening_hours=24/7`
|
||||
|
||||
|
||||
|
||||
|
||||
### defibrillator-description
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### defibrillator-survey:date
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Checked today!* corresponds with `survey:date=`
|
||||
|
||||
|
||||
|
||||
|
||||
### defibrillator-fixme
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
has_image.0 | With and without images (default) |
|
||||
has_image.1 | Has at least one image | image~.+\|image:0~.+|image:1~.+|image:2~.+|image:3~.+|mapillary~.+
|
||||
has_image.2 | Probably does not have an image |
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
open_now.0 | Open now | _isOpen=yes
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/defibrillator/defibrillator.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/defibrillator/defibrillator.json)
|
261
Docs/Layers/dentist.md
Normal file
261
Docs/Layers/dentist.md
Normal file
|
@ -0,0 +1,261 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
dentist
|
||||
=========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/dentist/dentist.svg' height="100px">
|
||||
|
||||
This layer shows dentist offices
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **13** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [healthcare](https://mapcomplete.osm.be/healthcare)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### name
|
||||
|
||||
|
||||
|
||||
The question is *What is the name of this dentist?*
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
|
||||
This is rendered with `This dentist is called {name}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
open_now.0 | Open now | _isOpen=yes
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/dentist/dentist.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/dentist/dentist.json)
|
106
Docs/Layers/direction.md
Normal file
106
Docs/Layers/direction.md
Normal file
|
@ -0,0 +1,106 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
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.
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/direction/direction.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/direction/direction.json)
|
292
Docs/Layers/doctors.md
Normal file
292
Docs/Layers/doctors.md
Normal file
|
@ -0,0 +1,292 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
doctors
|
||||
=========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/doctors/doctors.svg' height="100px">
|
||||
|
||||
This layer shows doctor offices
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- 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)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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) | ["by appointment"](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D"by appointment")
|
||||
[<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/healthcare:speciality#values) [healthcare:speciality](https://wiki.openstreetmap.org/wiki/Key:healthcare:speciality) | [string](../SpecialInputElements.md#string) | [general](https://wiki.openstreetmap.org/wiki/Tag:healthcare:speciality%3Dgeneral) [gynaecology](https://wiki.openstreetmap.org/wiki/Tag:healthcare:speciality%3Dgynaecology) [psychiatry](https://wiki.openstreetmap.org/wiki/Tag:healthcare:speciality%3Dpsychiatry) [paediatrics](https://wiki.openstreetmap.org/wiki/Tag:healthcare:speciality%3Dpaediatrics)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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 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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### opening_hours_by_appointment
|
||||
|
||||
|
||||
|
||||
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 by appointment* corresponds with `opening_hours="by appointment"`
|
||||
- *Only by appointment* corresponds with `opening_hours~^("by appointment"|by appointment)$`
|
||||
- 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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 `healthcare:speciality=general`
|
||||
- *This is a gynaecologist* corresponds with `healthcare:speciality=gynaecology`
|
||||
- *This is a psychiatrist* corresponds with `healthcare:speciality=psychiatry`
|
||||
- *This is a paediatrician* corresponds with `healthcare:speciality=paediatrics`
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
open_now.0 | Open now | _isOpen=yes
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/doctors/doctors.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/doctors/doctors.json)
|
768
Docs/Layers/dogfoodb.md
Normal file
768
Docs/Layers/dogfoodb.md
Normal file
|
@ -0,0 +1,768 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
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)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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/reservation#values) [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno)
|
||||
[<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/organic#values) [organic](https://wiki.openstreetmap.org/wiki/Key:organic) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:organic%3Donly)
|
||||
[<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/organic#values) [organic](https://wiki.openstreetmap.org/wiki/Key:organic) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:organic%3Donly)
|
||||
[<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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access:ssid#values) [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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 `location=underground`
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the ground floor* corresponds with `level=0`
|
||||
- *Located on the ground floor* corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the first floor* corresponds with `level=1`
|
||||
- *Located on the first basement level* corresponds with `level=-1`
|
||||
|
||||
|
||||
|
||||
|
||||
### Name
|
||||
|
||||
|
||||
|
||||
The question is *What is the name of this business?*
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
|
||||
This is rendered with `The name of this business 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 `amenity=fast_food`
|
||||
- *A <b>restaurant</b>, focused on creating a nice experience where one is served at the table* corresponds with `amenity=restaurant`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### payment-options
|
||||
|
||||
|
||||
|
||||
The question is *Which methods of payment are accepted here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Cash is accepted here* corresponds with `payment:cash=yes`
|
||||
- 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 `payment:cards=yes`
|
||||
- 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 by QR-code is possible here* corresponds with `payment:qr_code=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:qr_code' target='_blank'>payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:qr_code%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 `wheelchair=designated`
|
||||
- *This place is easily reachable with a wheelchair* corresponds with `wheelchair=yes`
|
||||
- *It is possible to reach this place in a wheelchair, but it is not easy* corresponds with `wheelchair=limited`
|
||||
- *This place is not reachable with a wheelchair* corresponds with `wheelchair=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 `cuisine=pizza`
|
||||
- *This is a friture* corresponds with `cuisine=friture`
|
||||
- *Mainly serves pasta* corresponds with `cuisine=pasta`
|
||||
- *This is kebab shop* corresponds with `cuisine=kebab`
|
||||
- *This is a sandwichbar* corresponds with `cuisine=sandwich`
|
||||
- *Burgers are served here* corresponds with `cuisine=burger`
|
||||
- *Sushi is served here* corresponds with `cuisine=sushi`
|
||||
- *Coffee is served here* corresponds with `cuisine=coffee`
|
||||
- *This is an italian restaurant (which serves more then pasta and pizza)* corresponds with `cuisine=italian`
|
||||
- *French dishes are served here* corresponds with `cuisine=french`
|
||||
- *Chinese dishes are served here* corresponds with `cuisine=chinese`
|
||||
- *Greek dishes are served here* corresponds with `cuisine=greek`
|
||||
- *Indian dishes are served here* corresponds with `cuisine=indian`
|
||||
- *Turkish dishes are served here* corresponds with `cuisine=turkish`
|
||||
- *Thai dishes are served here* corresponds with `cuisine=thai`
|
||||
|
||||
|
||||
|
||||
|
||||
### Reservation
|
||||
|
||||
|
||||
|
||||
The question is *Is a reservation required for this place?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *A reservation is required at this place* corresponds with `reservation=required`
|
||||
- *A reservation is not required, but still recommended to make sure you get a table* corresponds with `reservation=recommended`
|
||||
- *Reservation is possible at this place* corresponds with `reservation=yes`
|
||||
- *Reservation is not possible at this place* corresponds with `reservation=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `amenity=restaurant`
|
||||
|
||||
|
||||
|
||||
### Takeaway
|
||||
|
||||
|
||||
|
||||
The question is *Does this place offer take-away?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This is a take-away only business* corresponds with `takeaway=only`
|
||||
- *Take-away is possible here* corresponds with `takeaway=yes`
|
||||
- *Take-away is not possible here* corresponds with `takeaway=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### delivery
|
||||
|
||||
|
||||
|
||||
The question is *Delivers {title()} their food at home?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This business does home delivery (eventually via a third party)* corresponds with `delivery=yes`
|
||||
- *This business does not deliver at home* corresponds with `delivery=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### Vegetarian (no friture)
|
||||
|
||||
|
||||
|
||||
The question is *Does this restaurant have a vegetarian option?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *No vegetarian options are available* corresponds with `diet:vegetarian=no`
|
||||
- *Some vegetarian options are available* corresponds with `diet:vegetarian=limited`
|
||||
- *Vegetarian options are available* corresponds with `diet:vegetarian=yes`
|
||||
- *All dishes are vegetarian* corresponds with `diet:vegetarian=only`
|
||||
|
||||
|
||||
|
||||
|
||||
### Vegan (no friture)
|
||||
|
||||
|
||||
|
||||
The question is *Does this business serve vegan meals?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *No vegan options available* corresponds with `diet:vegan=no`
|
||||
- *Some vegan options are available* corresponds with `diet:vegan=limited`
|
||||
- *Vegan options are available* corresponds with `diet:vegan=yes`
|
||||
- *All dishes are vegan* corresponds with `diet:vegan=only`
|
||||
|
||||
|
||||
|
||||
|
||||
### halal (no friture)
|
||||
|
||||
|
||||
|
||||
The question is *Does this restaurant offer a halal menu?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *There are no halal options available* corresponds with `diet:halal=no`
|
||||
- *There is a small halal menu* corresponds with `diet:halal=limited`
|
||||
- *There is a halal menu* corresponds with `diet:halal=yes`
|
||||
- *Only halal options are available* corresponds with `diet:halal=only`
|
||||
|
||||
|
||||
|
||||
|
||||
### organic (no friture)
|
||||
|
||||
|
||||
|
||||
The question is *Does this restaurant offer organic food?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *There are no organic options available* corresponds with `organic=no`
|
||||
- *There is an organic menu* corresponds with `organic=yes`
|
||||
- *Only organic options are available* corresponds with `organic=only`
|
||||
|
||||
|
||||
|
||||
|
||||
### friture-vegetarian
|
||||
|
||||
|
||||
|
||||
The question is *Does this fries shop have vegetarian snacks?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Vegetarian snacks are available* corresponds with `diet:vegetarian=yes`
|
||||
- *Only a small selection of snacks are vegetarian* corresponds with `diet:vegetarian=limited`
|
||||
- *No vegetarian snacks are available* corresponds with `diet:vegetarian=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `cuisine=friture`
|
||||
|
||||
|
||||
|
||||
### friture-vegan
|
||||
|
||||
|
||||
|
||||
The question is *Does this fries shop have vegan snacks?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Vegan snacks are available* corresponds with `diet:vegan=yes`
|
||||
- *A small selection of vegan snacks are available* corresponds with `diet:vegan=limited`
|
||||
- *No vegan snacks are available* corresponds with `diet:vegan=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `cuisine=friture`
|
||||
|
||||
|
||||
|
||||
### friture-organic
|
||||
|
||||
|
||||
|
||||
The question is *Does this fries shop offer organic snacks?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Organic snacks are available* corresponds with `organic=yes`
|
||||
- *No organic snacks are available* corresponds with `organic=no`
|
||||
- *Only organic snacks are available* corresponds with `organic=only`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `cuisine=friture`
|
||||
|
||||
|
||||
|
||||
### 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 `friture:oil=vegetable`
|
||||
- *The frying is done with animal oil* corresponds with `friture:oil=animal`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `cuisine=friture`
|
||||
|
||||
|
||||
|
||||
### 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?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You can bring <b>your own containers</b> to get your order, saving on single-use packaging material and thus waste* corresponds with `reusable_packaging:accept=yes`
|
||||
- *Bringing your own container is <b>not allowed</b>* corresponds with `reusable_packaging:accept=no`
|
||||
- *You <b>must</b> bring your own container to order here.* corresponds with `reusable_packaging:accept=only`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `cuisine=friture`
|
||||
|
||||
|
||||
|
||||
### 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 `service:electricity=yes`
|
||||
- *There are a few domestic sockets available to customers seated indoors, where they can charge their electronics* corresponds with `service:electricity=limited`
|
||||
- *There are no sockets available indoors to customers, but charging might be possible if the staff is asked* corresponds with `service:electricity=ask`
|
||||
- *There are a no domestic sockets available to customers seated indoors* corresponds with `service:electricity=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### dog-access
|
||||
|
||||
|
||||
|
||||
The question is *Are dogs allowed in this business?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Dogs are allowed* corresponds with `dog=yes`
|
||||
- *Dogs are <b>not</b> allowed* corresponds with `dog=no`
|
||||
- *Dogs are allowed, but they have to be leashed* corresponds with `dog=leashed`
|
||||
- *Dogs are allowed and can run around freely* corresponds with `dog=unleashed`
|
||||
|
||||
|
||||
|
||||
|
||||
### internet
|
||||
|
||||
|
||||
|
||||
The question is *Does this place offer internet access?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This place offers wireless internet access* corresponds with `internet_access=wlan`
|
||||
- *This place <b>does not</b> offer internet access* corresponds with `internet_access=no`
|
||||
- *This place offers internet access* corresponds with `internet_access=yes`
|
||||
- This option cannot be chosen as answer
|
||||
- *This place offers internet access via a terminal or computer* corresponds with `internet_access=terminal`
|
||||
- *This place offers wired internet access* corresponds with `internet_access=wired`
|
||||
|
||||
|
||||
|
||||
|
||||
### internet-fee
|
||||
|
||||
|
||||
|
||||
The question is *Is there a fee for internet access?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *There is a fee for the internet access at this place* corresponds with `internet_access:fee=yes`
|
||||
- *Internet access is free at this place* corresponds with `internet_access:fee=no`
|
||||
- *Internet access is free at this place, for customers only* corresponds with `internet_access:fee=customers`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `internet_access!=no&internet_access~.+`
|
||||
|
||||
|
||||
|
||||
### internet-ssid
|
||||
|
||||
|
||||
|
||||
The question is *What is the network name for the wireless internet access?*
|
||||
|
||||
This rendering asks information about the property [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid)
|
||||
|
||||
This is rendered with `The network name is <b>{internet_access:ssid}</b>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Telekom* corresponds with `internet_access:ssid=Telekom`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `internet_access=wlan`
|
||||
|
||||
|
||||
|
||||
### reviews
|
||||
|
||||
|
||||
|
||||
Shows the reviews module (including the possibility to leave a review)
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
open_now.0 | Open now | _isOpen=yes
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
reservation.0 | Reservation not required | reservation=no\|reservation=optional|
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
vegetarian.0 | Has a vegetarian menu | diet:vegetarian=yes\|diet:vegetarian=only|diet:vegan=yes|diet:vegan=only
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
vegan.0 | Has a vegan menu | diet:vegan=yes\|diet:vegan=only
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
halal.0 | Has a halal menu | diet:halal=yes\|diet:halal=only
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
has_organic.0 | Has organic options | organic=yes\|organic=only
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
accepts_cash.0 | Accepts cash | payment:cash=yes
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
accepts_cards.0 | Accepts payment cards | payment:cards=yes
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/pets/pets.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/pets/pets.json)
|
200
Docs/Layers/dogpark.md
Normal file
200
Docs/Layers/dogpark.md
Normal file
|
@ -0,0 +1,200 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
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)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### dogpark-fenced
|
||||
|
||||
|
||||
|
||||
The question is *It this dog park fenced in?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This dogpark is fenced all around* corresponds with `barrier=fence`
|
||||
- *This dogpark is not fenced all around* corresponds with `barrier=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 `small_dog=separate`
|
||||
- *Does <strong>not</strong> have a separate area for puppies and small dogs* corresponds with `small_dog=shared`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
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)
|
464
Docs/Layers/dogshop.md
Normal file
464
Docs/Layers/dogshop.md
Normal file
|
@ -0,0 +1,464 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
dogshop
|
||||
=========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/pets/dogshop.svg' height="100px">
|
||||
|
||||
A shop
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **12** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [pets](https://mapcomplete.osm.be/pets)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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/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/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/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access:ssid#values) [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/organic#values) [organic](https://wiki.openstreetmap.org/wiki/Key:organic) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:organic%3Donly) [no](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dno)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### shops-name
|
||||
|
||||
|
||||
|
||||
The question is *What is the name of this shop?*
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
|
||||
This is rendered with `This shop is called <i>{name}</i>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### 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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### payment-options
|
||||
|
||||
|
||||
|
||||
The question is *Which methods of payment are accepted here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Cash is accepted here* corresponds with `payment:cash=yes`
|
||||
- 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 `payment:cards=yes`
|
||||
- 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 by QR-code is possible here* corresponds with `payment:qr_code=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:qr_code' target='_blank'>payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:qr_code%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 `location=underground`
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the ground floor* corresponds with `level=0`
|
||||
- *Located on the ground floor* corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the first floor* corresponds with `level=1`
|
||||
- *Located on the first basement level* corresponds with `level=-1`
|
||||
|
||||
|
||||
|
||||
|
||||
### copyshop-print-sizes
|
||||
|
||||
|
||||
|
||||
The question is *What paper formats does this shop offer?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This shop can print on papers of size A4* corresponds with `service:print:A4=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:service:print:A4' target='_blank'>service:print:A4</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:print:A4%3Dno' target='_blank'>no</a>
|
||||
- *This shop can print on papers of size A3* corresponds with `service:print:A3=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:service:print:A3' target='_blank'>service:print:A3</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:print:A3%3Dno' target='_blank'>no</a>
|
||||
- *This shop can print on papers of size A2* corresponds with `service:print:A2=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:service:print:A2' target='_blank'>service:print:A2</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:print:A2%3Dno' target='_blank'>no</a>
|
||||
- *This shop can print on papers of size A1* corresponds with `service:print:A1=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:service:print:A1' target='_blank'>service:print:A1</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:print:A1%3Dno' target='_blank'>no</a>
|
||||
- *This shop can print on papers of size A0* corresponds with `service:print:A0=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:service:print:A0' target='_blank'>service:print:A0</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:print:A0%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `shop~^(.*copyshop.*)$|shop~^(.*stationery.*)$|service:print=yes`
|
||||
|
||||
|
||||
|
||||
### internet
|
||||
|
||||
|
||||
|
||||
The question is *Does this place offer internet access?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This place offers wireless internet access* corresponds with `internet_access=wlan`
|
||||
- *This place <b>does not</b> offer internet access* corresponds with `internet_access=no`
|
||||
- *This place offers internet access* corresponds with `internet_access=yes`
|
||||
- This option cannot be chosen as answer
|
||||
- *This place offers internet access via a terminal or computer* corresponds with `internet_access=terminal`
|
||||
- *This place offers wired internet access* corresponds with `internet_access=wired`
|
||||
|
||||
|
||||
|
||||
|
||||
### internet-fee
|
||||
|
||||
|
||||
|
||||
The question is *Is there a fee for internet access?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *There is a fee for the internet access at this place* corresponds with `internet_access:fee=yes`
|
||||
- *Internet access is free at this place* corresponds with `internet_access:fee=no`
|
||||
- *Internet access is free at this place, for customers only* corresponds with `internet_access:fee=customers`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `internet_access!=no&internet_access~.+`
|
||||
|
||||
|
||||
|
||||
### internet-ssid
|
||||
|
||||
|
||||
|
||||
The question is *What is the network name for the wireless internet access?*
|
||||
|
||||
This rendering asks information about the property [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid)
|
||||
|
||||
This is rendered with `The network name is <b>{internet_access:ssid}</b>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Telekom* corresponds with `internet_access:ssid=Telekom`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `internet_access=wlan`
|
||||
|
||||
|
||||
|
||||
### organic
|
||||
|
||||
|
||||
|
||||
The question is *Does this shop offer organic products?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This shop offers organic products* corresponds with `organic=yes`
|
||||
- *This shop only offers organic products* corresponds with `organic=only`
|
||||
- *This shop does not offer organic products* corresponds with `organic=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `shop=supermarket|shop=convenience|shop=farm|shop=greengrocer|shop=health_food|shop=clothes|shop=shoes|shop=butcher|shop=cosmetics|shop=deli|shop=bakery|shop=alcohol|shop=seafood|shop=beverages|shop=florist`
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
Show the images block at this location
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### minimap
|
||||
|
||||
|
||||
|
||||
Shows a small map with the feature. Added by default to every popup
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
open_now.0 | Open now | _isOpen=yes
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags | fields
|
||||
---- | ---------- | --------- | --------
|
||||
shop-type.0 | Only show shops selling {search} | | search (string)
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags | fields
|
||||
---- | ---------- | --------- | --------
|
||||
shop-name.0 | Only show shops with name {search} | | search (string)
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
accepts_cash.0 | Accepts cash | payment:cash=yes
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
accepts_cards.0 | Accepts payment cards | payment:cards=yes
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
has_organic.0 | Has organic options | organic=yes\|organic=only
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/pets/pets.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/pets/pets.json)
|
204
Docs/Layers/drinking_water.md
Normal file
204
Docs/Layers/drinking_water.md
Normal file
|
@ -0,0 +1,204 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
drinking_water
|
||||
================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/pin:#6BC4F7;./assets/layers/drinking_water/drips.svg' height="100px">
|
||||
|
||||
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 is needed as dependency for layer [drinking_water](#drinking_water)
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||
- [drinking_water](https://mapcomplete.osm.be/drinking_water)
|
||||
- [nature](https://mapcomplete.osm.be/nature)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3D) [broken](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dbroken) [closed](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dclosed)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/bottle#values) [bottle](https://wiki.openstreetmap.org/wiki/Key:bottle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bottle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:bottle%3Dno)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Still in use?
|
||||
|
||||
|
||||
|
||||
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 drinking water works* corresponds with ``
|
||||
- *This drinking water is broken* corresponds with `operational_status=broken`
|
||||
- *This drinking water is closed* corresponds with `operational_status=closed`
|
||||
|
||||
|
||||
|
||||
|
||||
### Bottle refill
|
||||
|
||||
|
||||
|
||||
The question is *How easy is it to fill water bottles?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *It is easy to refill water bottles* corresponds with `bottle=yes`
|
||||
- *Water bottles may not fit* corresponds with `bottle=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### render-closest-drinking-water
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_closest_other_drinking_water_id~.+`
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/drinking_water/drinking_water.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/drinking_water/drinking_water.json)
|
280
Docs/Layers/dumpstations.md
Normal file
280
Docs/Layers/dumpstations.md
Normal file
|
@ -0,0 +1,280 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
dumpstations
|
||||
==============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/themes/campersite/sanitary_dump_station.svg' height="100px">
|
||||
|
||||
Sanitary dump stations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **10** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [campersite](https://mapcomplete.osm.be/campersite)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/fee#values) [fee](https://wiki.openstreetmap.org/wiki/Key:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno)
|
||||
[<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) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/water_point#values) [water_point](https://wiki.openstreetmap.org/wiki/Key:water_point) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:water_point%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:water_point%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/sanitary_dump_station:grey_water#values) [sanitary_dump_station:grey_water](https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:grey_water) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:grey_water%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:grey_water%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/sanitary_dump_station:chemical_toilet#values) [sanitary_dump_station:chemical_toilet](https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:chemical_toilet) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:chemical_toilet%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:chemical_toilet%3Dno)
|
||||
[<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 | [network](https://wiki.openstreetmap.org/wiki/Tag:access%3Dnetwork) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/network#values) [network](https://wiki.openstreetmap.org/wiki/Key:network) | [string](../SpecialInputElements.md#string) |
|
||||
[<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) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/power_supply#values) [power_supply](https://wiki.openstreetmap.org/wiki/Key:power_supply) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:power_supply%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:power_supply%3Dno)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### dumpstations-fee
|
||||
|
||||
|
||||
|
||||
The question is *Does this place charge a fee?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You need to pay for use* corresponds with `fee=yes`
|
||||
- *Can be used for free* corresponds with `fee=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### dumpstations-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}`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `fee=yes`
|
||||
|
||||
|
||||
|
||||
### dumpstations-waterpoint
|
||||
|
||||
|
||||
|
||||
The question is *Does this place have a water point?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This place has a water point* corresponds with `water_point=yes`
|
||||
- *This place does not have a water point* corresponds with `water_point=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### dumpstations-grey-water
|
||||
|
||||
|
||||
|
||||
The question is *Can you dispose of grey water here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You can dispose of grey water here* corresponds with `sanitary_dump_station:grey_water=yes`
|
||||
- *You cannot dispose of gray water here* corresponds with `sanitary_dump_station:grey_water=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### dumpstations-chemical-waste
|
||||
|
||||
|
||||
|
||||
The question is *Can you dispose of chemical toilet waste here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You can dispose of chemical toilet waste here* corresponds with `sanitary_dump_station:chemical_toilet=yes`
|
||||
- *You cannot dispose of chemical toilet waste here* corresponds with `sanitary_dump_station:chemical_toilet=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### dumpstations-access
|
||||
|
||||
|
||||
|
||||
The question is *Who can use this dump station?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You need a network key/code to use this* corresponds with `access=network`
|
||||
- *You need to be a customer of camping/campersite to use this place* corresponds with `access=customers`
|
||||
- *Anyone can use this dump station* corresponds with `access=public`
|
||||
- This option cannot be chosen as answer
|
||||
- *Anyone can use this dump station* corresponds with `access=yes`
|
||||
|
||||
|
||||
|
||||
|
||||
### dumpstations-network
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### operator
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### power_supply
|
||||
|
||||
|
||||
|
||||
The question is *Does this place have a power supply?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This place has a power supply* corresponds with `power_supply=yes`
|
||||
- *This place does not have power supply* corresponds with `power_supply=no`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/campersite/campersite.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/campersite/campersite.json)
|
205
Docs/Layers/education_institutions_without_etymology.md
Normal file
205
Docs/Layers/education_institutions_without_etymology.md
Normal file
|
@ -0,0 +1,205 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
education_institutions_without_etymology
|
||||
==========================================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/pin:#05d7fcaa' height="100px">
|
||||
|
||||
All objects which have an etymology known
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **18** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [etymology](https://mapcomplete.osm.be/etymology)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name:etymology:wikidata#values) [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name:etymology#values) [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology) | [string](../SpecialInputElements.md#string) | [unknown](https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### etymology-images-from-wikipedia
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### wikipedia-etymology
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### zoeken op inventaris onroerend erfgoed
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_country=be`
|
||||
|
||||
|
||||
|
||||
### simple etymology
|
||||
|
||||
|
||||
|
||||
The question is *What is this object named after?*
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *The origin of this name is unknown in all literature* corresponds with `name:etymology=unknown`
|
||||
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
Show the images block at this location
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### street-name-sign-image
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### minimap
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### etymology_multi_apply
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### wikipedia
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `wikidata~.+`
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/etymology/etymology.json)
|
261
Docs/Layers/elevator.md
Normal file
261
Docs/Layers/elevator.md
Normal file
|
@ -0,0 +1,261 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [blind_osm](https://mapcomplete.osm.be/blind_osm)
|
||||
- [indoors](https://mapcomplete.osm.be/indoors)
|
||||
- [onwheels](https://mapcomplete.osm.be/onwheels)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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 `location=underground`
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the ground floor* corresponds with `level=0`
|
||||
- *Located on the ground floor* corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the first floor* corresponds with `level=1`
|
||||
- *Located on the first basement level* corresponds with `level=-1`
|
||||
|
||||
|
||||
|
||||
|
||||
### operational_status
|
||||
|
||||
|
||||
|
||||
The question is *Does this elevator work?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This elevator is broken* corresponds with `operational_status=broken`
|
||||
- *This elevator is closed <span class='subtle'>e.g. because renovation works are going on</span>* corresponds with `operational_status=closed`
|
||||
- *This elevator works* corresponds with `operational_status=ok`
|
||||
- *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 `hearing_loop=yes`
|
||||
- *This place <b>does not</b> have an audio induction loop* corresponds with `hearing_loop=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### tactile_writing_language
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### speech_output
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/elevator/elevator.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/elevator/elevator.json)
|
320
Docs/Layers/elongated_coin.md
Normal file
320
Docs/Layers/elongated_coin.md
Normal file
|
@ -0,0 +1,320 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
elongated_coin
|
||||
================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:#FFFFFF00;./assets/themes/elongated_coin/penny.svg' height="100px">
|
||||
|
||||
Layer showing penny presses.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **0** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [elongated_coin](https://mapcomplete.osm.be/elongated_coin)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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/coin:design_count#values) [coin:design_count](https://wiki.openstreetmap.org/wiki/Key:coin:design_count) | [pnat](../SpecialInputElements.md#pnat) | [1](https://wiki.openstreetmap.org/wiki/Tag:coin:design_count%3D1) [2](https://wiki.openstreetmap.org/wiki/Tag:coin:design_count%3D2) [3](https://wiki.openstreetmap.org/wiki/Tag:coin:design_count%3D3) [4](https://wiki.openstreetmap.org/wiki/Tag:coin:design_count%3D4)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/coin:type#values) [coin:type](https://wiki.openstreetmap.org/wiki/Key:coin:type) | [string](../SpecialInputElements.md#string) | [2cent](https://wiki.openstreetmap.org/wiki/Tag:coin:type%3D2cent) [5cent](https://wiki.openstreetmap.org/wiki/Tag:coin:type%3D5cent) [10cent](https://wiki.openstreetmap.org/wiki/Tag:coin:type%3D10cent) [25cent](https://wiki.openstreetmap.org/wiki/Tag:coin:type%3D25cent) [50cent](https://wiki.openstreetmap.org/wiki/Tag:coin:type%3D50cent)
|
||||
[<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/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [1 EUR](https://wiki.openstreetmap.org/wiki/Tag:charge%3D1 EUR) [2 EUR](https://wiki.openstreetmap.org/wiki/Tag:charge%3D2 EUR)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/payment:coins:denominations#values) [payment:coins:denominations](https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations) | Multiple choice | [0.01 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.01 EUR) [0.02 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.02 EUR) [0.05 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 EUR) [0.10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 EUR) [0.20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 EUR) [0.50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 EUR) [1 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 EUR) [2 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 EUR)
|
||||
[<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/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### opening_hours_24_7
|
||||
|
||||
|
||||
|
||||
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)}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *24/7 opened (including holidays)* corresponds with `opening_hours=24/7`
|
||||
|
||||
|
||||
|
||||
|
||||
### designs
|
||||
|
||||
|
||||
|
||||
The question is *How many designs are available?*
|
||||
|
||||
This rendering asks information about the property [coin:design_count](https://wiki.openstreetmap.org/wiki/Key:coin:design_count)
|
||||
|
||||
This is rendered with `This penny press has {coin:design_count} designs available.`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This penny press has one design available.* corresponds with `coin:design_count=1`
|
||||
- *This penny press has two designs available.* corresponds with `coin:design_count=2`
|
||||
- *This penny press has three designs available.* corresponds with `coin:design_count=3`
|
||||
- *This penny press has four designs available.* corresponds with `coin:design_count=4`
|
||||
|
||||
|
||||
|
||||
|
||||
### coin
|
||||
|
||||
|
||||
|
||||
The question is *What coin is used for pressing?*
|
||||
|
||||
This rendering asks information about the property [coin:type](https://wiki.openstreetmap.org/wiki/Key:coin:type)
|
||||
|
||||
This is rendered with `This penny press uses a {coin:type} coin for pressing.`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This penny press uses a 2 cent coin for pressing.* corresponds with `coin:type=2cent`
|
||||
- *This penny press uses a 5 cent coin for pressing.* corresponds with `coin:type=5cent`
|
||||
- *This penny press uses a 10 cent coin for pressing.* corresponds with `coin:type=10cent`
|
||||
- *This penny press uses a 25 cent coin for pressing.* corresponds with `coin:type=25cent`
|
||||
- *This penny press uses a 50 cent coin for pressing.* corresponds with `coin:type=50cent`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### charge
|
||||
|
||||
|
||||
|
||||
The question is *How much does it cost to press a penny?*
|
||||
|
||||
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
||||
|
||||
This is rendered with `It costs {charge} to press a penny.`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *It costs 1 euro to press a penny.* corresponds with `charge=1 EUR`
|
||||
- *It costs 2 euros to press a penny.* corresponds with `charge=2 EUR`
|
||||
|
||||
|
||||
|
||||
|
||||
### denominations-coins
|
||||
|
||||
|
||||
|
||||
The question is *What coins can you use to pay here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *1 cent coins are accepted* corresponds with `payment:coins:denominations=0.01 EUR`
|
||||
- *2 cent coins are accepted* corresponds with `payment:coins:denominations=0.02 EUR`
|
||||
- *5 cent coins are accepted* corresponds with `payment:coins:denominations=0.05 EUR`
|
||||
- *10 cent coins are accepted* corresponds with `payment:coins:denominations=0.10 EUR`
|
||||
- *20 cent coins are accepted* corresponds with `payment:coins:denominations=0.20 EUR`
|
||||
- *50 cent coins are accepted* corresponds with `payment:coins:denominations=0.50 EUR`
|
||||
- *1 euro coins are accepted* corresponds with `payment:coins:denominations=1 EUR`
|
||||
- *2 euro coins are accepted* corresponds with `payment:coins:denominations=2 EUR`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `payment:coins=yes|payment:cash=yes&_currency=EUR`
|
||||
|
||||
|
||||
|
||||
### indoor
|
||||
|
||||
|
||||
|
||||
The question is *Is the penny press indoors?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This penny press is located indoors.* corresponds with `indoor=yes`
|
||||
- *This penny press is located outdoors.* corresponds with `indoor=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 `location=underground`
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the ground floor* corresponds with `level=0`
|
||||
- *Located on the ground floor* corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the first floor* corresponds with `level=1`
|
||||
- *Located on the first basement level* corresponds with `level=-1`
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
open_now.0 | Open now | _isOpen=yes
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/elongated_coin/elongated_coin.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/elongated_coin/elongated_coin.json)
|
267
Docs/Layers/entrance.md
Normal file
267
Docs/Layers/entrance.md
Normal file
|
@ -0,0 +1,267 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
entrance
|
||||
==========
|
||||
|
||||
|
||||
|
||||
<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, …)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- 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)
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [indoors](https://mapcomplete.osm.be/indoors)
|
||||
- [onwheels](https://mapcomplete.osm.be/onwheels)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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) | [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)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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 `location=underground`
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the ground floor* corresponds with `level=0`
|
||||
- *Located on the ground floor* corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the first floor* corresponds with `level=1`
|
||||
- *Located on the first basement level* corresponds with `level=-1`
|
||||
|
||||
|
||||
|
||||
|
||||
### Entrance type
|
||||
|
||||
|
||||
|
||||
The question is *What type of entrance is this?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *No specific entrance type is known* corresponds with `entrance=yes`
|
||||
- This option cannot be chosen as answer
|
||||
- *This is an indoor door, separating a room or a corridor within a single building* corresponds with `indoor=door`
|
||||
- *This is the main entrance* corresponds with `entrance=main`
|
||||
- *This is a secondary entrance* corresponds with `entrance=secondary`
|
||||
- *This is a service entrance - normally only used for employees, delivery, …* corresponds with `entrance=service`
|
||||
- *This is an exit where one can not enter* corresponds with `entrance=exit`
|
||||
- *This is an entrance where one can only enter (but not exit)* corresponds with `entrance=entrance`
|
||||
- *This is emergency exit* corresponds with `entrance=emergency`
|
||||
- *This is the entrance to a private home* corresponds with `entrance=home`
|
||||
|
||||
|
||||
|
||||
|
||||
### Door_type
|
||||
|
||||
|
||||
|
||||
The question is *What is the type of this door?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *The door type is not known* corresponds with `door=yes`
|
||||
- This option cannot be chosen as answer
|
||||
- *A classical, hinged door supported by joints* corresponds with `door=hinged`
|
||||
- *A revolving door which hangs on a central shaft, rotating within a cylindrical enclosure* corresponds with `door=revolving`
|
||||
- *A sliding door where the door slides sidewards, typically parallel with a wall* corresponds with `door=sliding`
|
||||
- *A door which rolls from overhead, typically seen for garages* corresponds with `door=overhead`
|
||||
- *This is an entrance without a physical door* corresponds with `door=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### automatic_door
|
||||
|
||||
|
||||
|
||||
The question is *Is this door automated?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This is an automatic door* corresponds with `automatic_door=yes`
|
||||
- This option cannot be chosen as answer
|
||||
- *This door is <b>not</b> automated* corresponds with `automatic_door=no`
|
||||
- *This door will open automatically when <b>motion</b> is detected* corresponds with `automatic_door=motion`
|
||||
- *This door will open automatically when a <b>sensor in the floor</b> is triggered* corresponds with `automatic_door=floor`
|
||||
- *This door will open automatically when a <b>button is pressed</b>* corresponds with `automatic_door=button`
|
||||
- *This door revolves automatically all the time, but has a <b>button to slow it down</b>, e.g. for wheelchair users* corresponds with `automatic_door=slowdown_button`
|
||||
- *This door revolves automatically all the time* corresponds with `automatic_door=continuous`
|
||||
- *This door will be opened by staff when requested by <b>pressing a button</b>* corresponds with `automatic_door=serviced_on_button_press`
|
||||
- *This door will be opened by staff when requested* corresponds with `automatic_door=serviced_on_request`
|
||||
|
||||
|
||||
|
||||
|
||||
### width
|
||||
|
||||
|
||||
|
||||
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)}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 `kerb:height=0`
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/entrance/entrance.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/entrance/entrance.json)
|
206
Docs/Layers/etymology.md
Normal file
206
Docs/Layers/etymology.md
Normal file
|
@ -0,0 +1,206 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
etymology
|
||||
===========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/pin:#05d7fcaa' height="100px">
|
||||
|
||||
All objects which have an etymology known
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **12** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [etymology](https://mapcomplete.osm.be/etymology)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name:etymology:wikidata#values) [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name:etymology#values) [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology) | [string](../SpecialInputElements.md#string) | [unknown](https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### etymology-images-from-wikipedia
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### wikipedia-etymology
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### zoeken op inventaris onroerend erfgoed
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_country=be`
|
||||
|
||||
|
||||
|
||||
### simple etymology
|
||||
|
||||
|
||||
|
||||
The question is *What is this object named after?*
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *The origin of this name is unknown in all literature* corresponds with `name:etymology=unknown`
|
||||
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
Show the images block at this location
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### street-name-sign-image
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### minimap
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### etymology_multi_apply
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### wikipedia
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `wikidata~.+`
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/etymology/etymology.json)
|
150
Docs/Layers/extinguisher.md
Normal file
150
Docs/Layers/extinguisher.md
Normal file
|
@ -0,0 +1,150 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
extinguisher
|
||||
==============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/hailhydrant/Twemoji12_1f9ef.svg' height="100px">
|
||||
|
||||
Map layer to show fire extinguishers.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **14** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [hailhydrant](https://mapcomplete.osm.be/hailhydrant)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/location#values) [location](https://wiki.openstreetmap.org/wiki/Key:location) | [string](../SpecialInputElements.md#string) | [indoor](https://wiki.openstreetmap.org/wiki/Tag:location%3Dindoor) [outdoor](https://wiki.openstreetmap.org/wiki/Tag:location%3Doutdoor)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### extinguisher-location
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Found indoors.* corresponds with `location=indoor`
|
||||
- *Found outdoors.* corresponds with `location=outdoor`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/extinguisher/extinguisher.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/extinguisher/extinguisher.json)
|
264
Docs/Layers/facadegardens.md
Normal file
264
Docs/Layers/facadegardens.md
Normal file
|
@ -0,0 +1,264 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
facadegardens
|
||||
===============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/themes/facadegardens/geveltuin.svg' height="100px">
|
||||
|
||||
Facade gardens
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **12** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [facadegardens](https://mapcomplete.osm.be/facadegardens)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/direction#values) [direction](https://wiki.openstreetmap.org/wiki/Key:direction) | [direction](../SpecialInputElements.md#direction) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/direct_sunlight#values) [direct_sunlight](https://wiki.openstreetmap.org/wiki/Key:direct_sunlight) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dyes) [partial](https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dpartial) [no](https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/rain_barrel#values) [rain_barrel](https://wiki.openstreetmap.org/wiki/Key:rain_barrel) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:rain_barrel%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:rain_barrel%3Dno)
|
||||
[<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) | [text](../SpecialInputElements.md#text) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/edible#values) [edible](https://wiki.openstreetmap.org/wiki/Key:edible) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:edible%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:edible%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/plant#values) [plant](https://wiki.openstreetmap.org/wiki/Key:plant) | Multiple choice | [vine](https://wiki.openstreetmap.org/wiki/Tag:plant%3Dvine) [flower](https://wiki.openstreetmap.org/wiki/Tag:plant%3Dflower) [shrub](https://wiki.openstreetmap.org/wiki/Tag:plant%3Dshrub) [groundcover](https://wiki.openstreetmap.org/wiki/Tag:plant%3Dgroundcover)
|
||||
[<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) | [text](../SpecialInputElements.md#text) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### facadegardens-direction
|
||||
|
||||
|
||||
|
||||
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)`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### facadegardens-sunshine
|
||||
|
||||
|
||||
|
||||
The question is *Is the garden shaded or sunny?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *The garden is in full sun* corresponds with `direct_sunlight=yes`
|
||||
- *The garden is in partial shade* corresponds with `direct_sunlight=partial`
|
||||
- *The garden is in the shade* corresponds with `direct_sunlight=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### facadegardens-rainbarrel
|
||||
|
||||
|
||||
|
||||
The question is *Is there a water barrel installed for the garden?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *There is a rain barrel* corresponds with `rain_barrel=yes`
|
||||
- *There is no rain barrel* corresponds with `rain_barrel=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### facadegardens-start_date
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### facadegardens-edible
|
||||
|
||||
|
||||
|
||||
The question is *Are there any edible plants?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *There are edible plants* corresponds with `edible=yes`
|
||||
- *There are no edible plants* corresponds with `edible=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### facadegardens-plants
|
||||
|
||||
|
||||
|
||||
The question is *What kinds of plants grow here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *There are vines* corresponds with `plant=vine`
|
||||
- *There are flowering plants* corresponds with `plant=flower`
|
||||
- *There are shrubs* corresponds with `plant=shrub`
|
||||
- *There are groundcovering plants* corresponds with `plant=groundcover`
|
||||
|
||||
|
||||
|
||||
|
||||
### facadegardens-description
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/facadegardens/facadegardens.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/facadegardens/facadegardens.json)
|
199
Docs/Layers/fietsstraat.md
Normal file
199
Docs/Layers/fietsstraat.md
Normal file
|
@ -0,0 +1,199 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
fietsstraat
|
||||
=============
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
A cyclestreet is a street where motorized traffic is not allowed to overtake a cyclist
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **7** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [cyclestreets](https://mapcomplete.osm.be/cyclestreets)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/traffic_sign#values) [traffic_sign](https://wiki.openstreetmap.org/wiki/Key:traffic_sign) | Multiple choice | [DE:244.1,1020-30](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1020-30) [DE:244.1,1022-12,1024-10](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1022-12,1024-10) [DE:244.1,1022-12](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1022-12) [DE:244.1,1024-10](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1024-10) [DE:244.1](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cyclestreet:start_date#values) [cyclestreet:start_date](https://wiki.openstreetmap.org/wiki/Key:cyclestreet:start_date) | [date](../SpecialInputElements.md#date) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
|
||||
|
||||
|
||||
|
||||
### is_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 `cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no`
|
||||
- *This street is a bicycle road* corresponds with `bicycle_road=yes`
|
||||
- This option cannot be chosen as answer
|
||||
- *This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)* corresponds with `bicycle_road=yes&maxspeed=30&source:maxspeed=DE:bicycle_road&vehicle=no&bicycle=designated`
|
||||
- *This street is a cyclestreet* corresponds with `cyclestreet=yes`
|
||||
- *This street will become a cyclestreet soon* corresponds with `proposed:cyclestreet=yes`
|
||||
- *This street will become a bicycle road soon* corresponds with `proposed:bicycle_road=yes`
|
||||
- *This street is not a cyclestreet* corresponds with ``
|
||||
|
||||
|
||||
|
||||
|
||||
### supplementary_sign
|
||||
|
||||
|
||||
|
||||
The question is *What sign does this bicycle road have?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Residents allowed* corresponds with `traffic_sign=DE:244.1,1020-30`
|
||||
- *Motor vehicles allowed* corresponds with `traffic_sign=DE:244.1,1022-12,1024-10`
|
||||
- *Motorcycles allowed* corresponds with `traffic_sign=DE:244.1,1022-12`
|
||||
- *Cars allowed* corresponds with `traffic_sign=DE:244.1,1024-10`
|
||||
- *There are no supplementary signs at this bicycle road.* corresponds with `traffic_sign=DE:244.1`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `bicycle_road=yes&_country=de`
|
||||
|
||||
|
||||
|
||||
### future_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}`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `proposed:cyclestreet=yes`
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### split-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/cyclestreets/cyclestreets.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/cyclestreets/cyclestreets.json)
|
217
Docs/Layers/fire_station.md
Normal file
217
Docs/Layers/fire_station.md
Normal file
|
@ -0,0 +1,217 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
fire_station
|
||||
==============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/hailhydrant/Twemoji12_1f692.svg' height="100px">
|
||||
|
||||
Map layer to show fire stations.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **12** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [hailhydrant](https://mapcomplete.osm.be/hailhydrant)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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/addr:street#values) [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:place#values) [addr:place](https://wiki.openstreetmap.org/wiki/Key:addr:place) | [string](../SpecialInputElements.md#string) |
|
||||
[<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) | [Bureau of Fire Protection](https://wiki.openstreetmap.org/wiki/Tag:operator%3DBureau of Fire Protection)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator:type#values) [operator:type](https://wiki.openstreetmap.org/wiki/Key:operator:type) | [string](../SpecialInputElements.md#string) | [government](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment) [community](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity) [ngo](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dngo) [private](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dprivate)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### station-name
|
||||
|
||||
|
||||
|
||||
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}.`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### station-street
|
||||
|
||||
|
||||
|
||||
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}.`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### station-place
|
||||
|
||||
|
||||
|
||||
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}.`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### station-agency
|
||||
|
||||
|
||||
|
||||
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}.`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Bureau of Fire Protection* corresponds with `operator=Bureau of Fire Protection&operator:type=government`
|
||||
|
||||
|
||||
|
||||
|
||||
### station-operator
|
||||
|
||||
|
||||
|
||||
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.`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *The station is operated by the government.* corresponds with `operator:type=government`
|
||||
- *The station is operated by a community-based, or informal organization.* corresponds with `operator:type=community`
|
||||
- *The station is operated by a formal group of volunteers.* corresponds with `operator:type=ngo`
|
||||
- *The station is privately operated.* corresponds with `operator:type=private`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/fire_station/fire_station.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/fire_station/fire_station.json)
|
303
Docs/Layers/fitness_centre.md
Normal file
303
Docs/Layers/fitness_centre.md
Normal file
|
@ -0,0 +1,303 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
fitness_centre
|
||||
================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/fitness_centre/gym.svg' height="100px">
|
||||
|
||||
Layer showing fitness centres
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **12** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
- [sports](https://mapcomplete.osm.be/sports)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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/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/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/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### name
|
||||
|
||||
|
||||
|
||||
The question is *What is the name of this fitness centre?*
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
|
||||
This is rendered with `This fitness centre is called {name}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This fitness centre has no name* corresponds with `noname=yes`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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)}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### wheelchair-access
|
||||
|
||||
|
||||
|
||||
The question is *Is this place accessible with a wheelchair?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This place is specially adapted for wheelchair users* corresponds with `wheelchair=designated`
|
||||
- *This place is easily reachable with a wheelchair* corresponds with `wheelchair=yes`
|
||||
- *It is possible to reach this place in a wheelchair, but it is not easy* corresponds with `wheelchair=limited`
|
||||
- *This place is not reachable with a wheelchair* corresponds with `wheelchair=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 `location=underground`
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the ground floor* corresponds with `level=0`
|
||||
- *Located on the ground floor* corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the first floor* corresponds with `level=1`
|
||||
- *Located on the first basement level* corresponds with `level=-1`
|
||||
|
||||
|
||||
|
||||
|
||||
### reviews
|
||||
|
||||
|
||||
|
||||
Shows the reviews module (including the possibility to leave a review)
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
open_now.0 | Open now | _isOpen=yes
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/fitness_centre/fitness_centre.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/fitness_centre/fitness_centre.json)
|
247
Docs/Layers/fitness_station.md
Normal file
247
Docs/Layers/fitness_station.md
Normal file
|
@ -0,0 +1,247 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
fitness_station
|
||||
=================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/fitness_station/fitness.svg' height="100px">
|
||||
|
||||
Find a fitness station near you, and add missing ones.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **12** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
- [sports](https://mapcomplete.osm.be/sports)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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/fitness_station#values) [fitness_station](https://wiki.openstreetmap.org/wiki/Key:fitness_station) | Multiple choice | [horizontal_bar](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dhorizontal_bar) [sign](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dsign) [sit-up](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dsit-up) [push-up](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dpush-up) [stretch_bars](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dstretch_bars) [hyperextension](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dhyperextension) [rings](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Drings) [horizontal_ladder](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dhorizontal_ladder) [wall_bars](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dwall_bars) [slalom](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dslalom) [stepping_stones](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dstepping_stones) [leapfrog](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dleapfrog) [beam_jump](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dbeam_jump) [hurdling](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dhurdling) [wall](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dwall) [balance_beam](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dbalance_beam) [log_lifting](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dlog_lifting) [captains_chair](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dcaptains_chair) [box](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dbox) [battling_ropes](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dbattling_ropes) [excercise_bike](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dexcercise_bike) [elliptical_trainer](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Delliptical_trainer) [air_walker](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dair_walker) [rower](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Drower) [slackline](https://wiki.openstreetmap.org/wiki/Tag:fitness_station%3Dslackline)
|
||||
[<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) |
|
||||
[<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)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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 this fitness station?*
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
|
||||
This is rendered with `This fitness station is called {name}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This fitness station doesn't have a name* corresponds with `noname=yes`
|
||||
|
||||
|
||||
|
||||
|
||||
### type
|
||||
|
||||
|
||||
|
||||
The question is *What kind of equipment does this fitness station have?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This fitness station has a horizontal bar, high enough for pull-ups.* corresponds with `fitness_station=horizontal_bar`
|
||||
- *This fitness station has a sign with instructions for a specific exercise.* corresponds with `fitness_station=sign`
|
||||
- *This fitness station has a facility for sit-ups.* corresponds with `fitness_station=sit-up`
|
||||
- *This fitness station has a facility for push-ups. Usually consists of one or more low horizontal bars.* corresponds with `fitness_station=push-up`
|
||||
- *This fitness station has bars for stretching.* corresponds with `fitness_station=stretch_bars`
|
||||
- *This fitness station has a station for making hyperextensions.* corresponds with `fitness_station=hyperextension`
|
||||
- *This fitness station has rings for gymnastic exercises.* corresponds with `fitness_station=rings`
|
||||
- *This fitness station has a horizontal ladder, also known as monkey bars.* corresponds with `fitness_station=horizontal_ladder`
|
||||
- *This fitness station has wall bars to climb on.* corresponds with `fitness_station=wall_bars`
|
||||
- *This fitness station has posts for performing slalom exercises.* corresponds with `fitness_station=slalom`
|
||||
- *This fitness station has stepping stones.* corresponds with `fitness_station=stepping_stones`
|
||||
- *This fitness station has cones for performing leapfrog jumps.* corresponds with `fitness_station=leapfrog`
|
||||
- *This fitness station has beams to jump over.* corresponds with `fitness_station=beam_jump`
|
||||
- *This fitness station has hurdles to cross.* corresponds with `fitness_station=hurdling`
|
||||
- *This fitness station has a wall to climb on.* corresponds with `fitness_station=wall`
|
||||
- *This fitness station has a balance beam.* corresponds with `fitness_station=balance_beam`
|
||||
- *This fitness station has a log with a handle on the end to lift.* corresponds with `fitness_station=log_lifting`
|
||||
- *This fitness station has a chair with only elbow supports and a rear (without seat), for performing leg raises.* corresponds with `fitness_station=captains_chair`
|
||||
- *This fitness station has a box that can be used for jumping.* corresponds with `fitness_station=box`
|
||||
- *This fitness station has battling ropes.* corresponds with `fitness_station=battling_ropes`
|
||||
- *This fitness station has a stationary bicycle.* corresponds with `fitness_station=excercise_bike`
|
||||
- *This fitness station has a cross-trainer.* corresponds with `fitness_station=elliptical_trainer`
|
||||
- *This fitness station has an air walker.* corresponds with `fitness_station=air_walker`
|
||||
- *This fitness station has a rower.* corresponds with `fitness_station=rower`
|
||||
- *This fitness station has a slackline.* corresponds with `fitness_station=slackline`
|
||||
|
||||
|
||||
|
||||
|
||||
### operator
|
||||
|
||||
|
||||
|
||||
The question is *Who maintains this fitness station?*
|
||||
|
||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||
|
||||
This is rendered with `The fitness station is maintained by {operator}.`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### opening_hours_24_7
|
||||
|
||||
|
||||
|
||||
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)}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *24/7 opened (including holidays)* corresponds with `opening_hours=24/7`
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
open_now.0 | Open now | _isOpen=yes
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/fitness_station/fitness_station.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/fitness_station/fitness_station.json)
|
151
Docs/Layers/fixme.md
Normal file
151
Docs/Layers/fixme.md
Normal file
|
@ -0,0 +1,151 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
fixme
|
||||
=======
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/svg/bug.svg' height="100px">
|
||||
|
||||
OSM objects that likely need to be fixed, based on a FIXME tag.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **16** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [notes](https://mapcomplete.osm.be/notes)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/fixme#values) [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme) | [text](../SpecialInputElements.md#text) | [](https://wiki.openstreetmap.org/wiki/Tag:fixme%3D)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### fixme
|
||||
|
||||
|
||||
|
||||
The question is *What is wrong with this feature?*
|
||||
|
||||
This rendering asks information about the property [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme)
|
||||
|
||||
This is rendered with `Fixme Text: {fixme}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This issue has been resolved* corresponds with ``
|
||||
|
||||
|
||||
|
||||
|
||||
### note
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `note~.+`
|
||||
|
||||
|
||||
|
||||
### all_tags
|
||||
|
||||
|
||||
|
||||
Shows a table with all the tags of the feature
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
This document is autogenerated from [assets/layers/fixme/fixme.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/fixme/fixme.json)
|
772
Docs/Layers/food.md
Normal file
772
Docs/Layers/food.md
Normal file
|
@ -0,0 +1,772 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
food
|
||||
======
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/food/restaurant.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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [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)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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/reservation#values) [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno)
|
||||
[<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/organic#values) [organic](https://wiki.openstreetmap.org/wiki/Key:organic) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:organic%3Donly)
|
||||
[<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/organic#values) [organic](https://wiki.openstreetmap.org/wiki/Key:organic) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:organic%3Donly)
|
||||
[<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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access:ssid#values) [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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 `location=underground`
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the ground floor* corresponds with `level=0`
|
||||
- *Located on the ground floor* corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the first floor* corresponds with `level=1`
|
||||
- *Located on the first basement level* corresponds with `level=-1`
|
||||
|
||||
|
||||
|
||||
|
||||
### Name
|
||||
|
||||
|
||||
|
||||
The question is *What is the name of this business?*
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
|
||||
This is rendered with `The name of this business 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 `amenity=fast_food`
|
||||
- *A <b>restaurant</b>, focused on creating a nice experience where one is served at the table* corresponds with `amenity=restaurant`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### payment-options
|
||||
|
||||
|
||||
|
||||
The question is *Which methods of payment are accepted here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Cash is accepted here* corresponds with `payment:cash=yes`
|
||||
- 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 `payment:cards=yes`
|
||||
- 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 by QR-code is possible here* corresponds with `payment:qr_code=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:qr_code' target='_blank'>payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:qr_code%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 `wheelchair=designated`
|
||||
- *This place is easily reachable with a wheelchair* corresponds with `wheelchair=yes`
|
||||
- *It is possible to reach this place in a wheelchair, but it is not easy* corresponds with `wheelchair=limited`
|
||||
- *This place is not reachable with a wheelchair* corresponds with `wheelchair=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 `cuisine=pizza`
|
||||
- *This is a friture* corresponds with `cuisine=friture`
|
||||
- *Mainly serves pasta* corresponds with `cuisine=pasta`
|
||||
- *This is kebab shop* corresponds with `cuisine=kebab`
|
||||
- *This is a sandwichbar* corresponds with `cuisine=sandwich`
|
||||
- *Burgers are served here* corresponds with `cuisine=burger`
|
||||
- *Sushi is served here* corresponds with `cuisine=sushi`
|
||||
- *Coffee is served here* corresponds with `cuisine=coffee`
|
||||
- *This is an italian restaurant (which serves more then pasta and pizza)* corresponds with `cuisine=italian`
|
||||
- *French dishes are served here* corresponds with `cuisine=french`
|
||||
- *Chinese dishes are served here* corresponds with `cuisine=chinese`
|
||||
- *Greek dishes are served here* corresponds with `cuisine=greek`
|
||||
- *Indian dishes are served here* corresponds with `cuisine=indian`
|
||||
- *Turkish dishes are served here* corresponds with `cuisine=turkish`
|
||||
- *Thai dishes are served here* corresponds with `cuisine=thai`
|
||||
|
||||
|
||||
|
||||
|
||||
### Reservation
|
||||
|
||||
|
||||
|
||||
The question is *Is a reservation required for this place?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *A reservation is required at this place* corresponds with `reservation=required`
|
||||
- *A reservation is not required, but still recommended to make sure you get a table* corresponds with `reservation=recommended`
|
||||
- *Reservation is possible at this place* corresponds with `reservation=yes`
|
||||
- *Reservation is not possible at this place* corresponds with `reservation=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `amenity=restaurant`
|
||||
|
||||
|
||||
|
||||
### Takeaway
|
||||
|
||||
|
||||
|
||||
The question is *Does this place offer take-away?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This is a take-away only business* corresponds with `takeaway=only`
|
||||
- *Take-away is possible here* corresponds with `takeaway=yes`
|
||||
- *Take-away is not possible here* corresponds with `takeaway=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### delivery
|
||||
|
||||
|
||||
|
||||
The question is *Delivers {title()} their food at home?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This business does home delivery (eventually via a third party)* corresponds with `delivery=yes`
|
||||
- *This business does not deliver at home* corresponds with `delivery=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### Vegetarian (no friture)
|
||||
|
||||
|
||||
|
||||
The question is *Does this restaurant have a vegetarian option?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *No vegetarian options are available* corresponds with `diet:vegetarian=no`
|
||||
- *Some vegetarian options are available* corresponds with `diet:vegetarian=limited`
|
||||
- *Vegetarian options are available* corresponds with `diet:vegetarian=yes`
|
||||
- *All dishes are vegetarian* corresponds with `diet:vegetarian=only`
|
||||
|
||||
|
||||
|
||||
|
||||
### Vegan (no friture)
|
||||
|
||||
|
||||
|
||||
The question is *Does this business serve vegan meals?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *No vegan options available* corresponds with `diet:vegan=no`
|
||||
- *Some vegan options are available* corresponds with `diet:vegan=limited`
|
||||
- *Vegan options are available* corresponds with `diet:vegan=yes`
|
||||
- *All dishes are vegan* corresponds with `diet:vegan=only`
|
||||
|
||||
|
||||
|
||||
|
||||
### halal (no friture)
|
||||
|
||||
|
||||
|
||||
The question is *Does this restaurant offer a halal menu?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *There are no halal options available* corresponds with `diet:halal=no`
|
||||
- *There is a small halal menu* corresponds with `diet:halal=limited`
|
||||
- *There is a halal menu* corresponds with `diet:halal=yes`
|
||||
- *Only halal options are available* corresponds with `diet:halal=only`
|
||||
|
||||
|
||||
|
||||
|
||||
### organic (no friture)
|
||||
|
||||
|
||||
|
||||
The question is *Does this restaurant offer organic food?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *There are no organic options available* corresponds with `organic=no`
|
||||
- *There is an organic menu* corresponds with `organic=yes`
|
||||
- *Only organic options are available* corresponds with `organic=only`
|
||||
|
||||
|
||||
|
||||
|
||||
### friture-vegetarian
|
||||
|
||||
|
||||
|
||||
The question is *Does this fries shop have vegetarian snacks?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Vegetarian snacks are available* corresponds with `diet:vegetarian=yes`
|
||||
- *Only a small selection of snacks are vegetarian* corresponds with `diet:vegetarian=limited`
|
||||
- *No vegetarian snacks are available* corresponds with `diet:vegetarian=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `cuisine=friture`
|
||||
|
||||
|
||||
|
||||
### friture-vegan
|
||||
|
||||
|
||||
|
||||
The question is *Does this fries shop have vegan snacks?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Vegan snacks are available* corresponds with `diet:vegan=yes`
|
||||
- *A small selection of vegan snacks are available* corresponds with `diet:vegan=limited`
|
||||
- *No vegan snacks are available* corresponds with `diet:vegan=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `cuisine=friture`
|
||||
|
||||
|
||||
|
||||
### friture-organic
|
||||
|
||||
|
||||
|
||||
The question is *Does this fries shop offer organic snacks?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Organic snacks are available* corresponds with `organic=yes`
|
||||
- *No organic snacks are available* corresponds with `organic=no`
|
||||
- *Only organic snacks are available* corresponds with `organic=only`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `cuisine=friture`
|
||||
|
||||
|
||||
|
||||
### 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 `friture:oil=vegetable`
|
||||
- *The frying is done with animal oil* corresponds with `friture:oil=animal`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `cuisine=friture`
|
||||
|
||||
|
||||
|
||||
### 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?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You can bring <b>your own containers</b> to get your order, saving on single-use packaging material and thus waste* corresponds with `reusable_packaging:accept=yes`
|
||||
- *Bringing your own container is <b>not allowed</b>* corresponds with `reusable_packaging:accept=no`
|
||||
- *You <b>must</b> bring your own container to order here.* corresponds with `reusable_packaging:accept=only`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `cuisine=friture`
|
||||
|
||||
|
||||
|
||||
### 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 `service:electricity=yes`
|
||||
- *There are a few domestic sockets available to customers seated indoors, where they can charge their electronics* corresponds with `service:electricity=limited`
|
||||
- *There are no sockets available indoors to customers, but charging might be possible if the staff is asked* corresponds with `service:electricity=ask`
|
||||
- *There are a no domestic sockets available to customers seated indoors* corresponds with `service:electricity=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### dog-access
|
||||
|
||||
|
||||
|
||||
The question is *Are dogs allowed in this business?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Dogs are allowed* corresponds with `dog=yes`
|
||||
- *Dogs are <b>not</b> allowed* corresponds with `dog=no`
|
||||
- *Dogs are allowed, but they have to be leashed* corresponds with `dog=leashed`
|
||||
- *Dogs are allowed and can run around freely* corresponds with `dog=unleashed`
|
||||
|
||||
|
||||
|
||||
|
||||
### internet
|
||||
|
||||
|
||||
|
||||
The question is *Does this place offer internet access?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This place offers wireless internet access* corresponds with `internet_access=wlan`
|
||||
- *This place <b>does not</b> offer internet access* corresponds with `internet_access=no`
|
||||
- *This place offers internet access* corresponds with `internet_access=yes`
|
||||
- This option cannot be chosen as answer
|
||||
- *This place offers internet access via a terminal or computer* corresponds with `internet_access=terminal`
|
||||
- *This place offers wired internet access* corresponds with `internet_access=wired`
|
||||
|
||||
|
||||
|
||||
|
||||
### internet-fee
|
||||
|
||||
|
||||
|
||||
The question is *Is there a fee for internet access?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *There is a fee for the internet access at this place* corresponds with `internet_access:fee=yes`
|
||||
- *Internet access is free at this place* corresponds with `internet_access:fee=no`
|
||||
- *Internet access is free at this place, for customers only* corresponds with `internet_access:fee=customers`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `internet_access!=no&internet_access~.+`
|
||||
|
||||
|
||||
|
||||
### internet-ssid
|
||||
|
||||
|
||||
|
||||
The question is *What is the network name for the wireless internet access?*
|
||||
|
||||
This rendering asks information about the property [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid)
|
||||
|
||||
This is rendered with `The network name is <b>{internet_access:ssid}</b>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Telekom* corresponds with `internet_access:ssid=Telekom`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `internet_access=wlan`
|
||||
|
||||
|
||||
|
||||
### reviews
|
||||
|
||||
|
||||
|
||||
Shows the reviews module (including the possibility to leave a review)
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
open_now.0 | Open now | _isOpen=yes
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
reservation.0 | Reservation not required | reservation=no\|reservation=optional|
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
vegetarian.0 | Has a vegetarian menu | diet:vegetarian=yes\|diet:vegetarian=only|diet:vegan=yes|diet:vegan=only
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
vegan.0 | Has a vegan menu | diet:vegan=yes\|diet:vegan=only
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
halal.0 | Has a halal menu | diet:halal=yes\|diet:halal=only
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
has_organic.0 | Has organic options | organic=yes\|organic=only
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
accepts_cash.0 | Accepts cash | payment:cash=yes
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
accepts_cards.0 | Accepts payment cards | payment:cards=yes
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/food/food.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/food/food.json)
|
768
Docs/Layers/friture.md
Normal file
768
Docs/Layers/friture.md
Normal file
|
@ -0,0 +1,768 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
friture
|
||||
=========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/food/restaurant.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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [fritures](https://mapcomplete.osm.be/fritures)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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/reservation#values) [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno)
|
||||
[<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/organic#values) [organic](https://wiki.openstreetmap.org/wiki/Key:organic) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:organic%3Donly)
|
||||
[<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/organic#values) [organic](https://wiki.openstreetmap.org/wiki/Key:organic) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:organic%3Donly)
|
||||
[<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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access:ssid#values) [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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 `location=underground`
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the ground floor* corresponds with `level=0`
|
||||
- *Located on the ground floor* corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the first floor* corresponds with `level=1`
|
||||
- *Located on the first basement level* corresponds with `level=-1`
|
||||
|
||||
|
||||
|
||||
|
||||
### Name
|
||||
|
||||
|
||||
|
||||
The question is *What is the name of this business?*
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
|
||||
This is rendered with `The name of this business 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 `amenity=fast_food`
|
||||
- *A <b>restaurant</b>, focused on creating a nice experience where one is served at the table* corresponds with `amenity=restaurant`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### payment-options
|
||||
|
||||
|
||||
|
||||
The question is *Which methods of payment are accepted here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Cash is accepted here* corresponds with `payment:cash=yes`
|
||||
- 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 `payment:cards=yes`
|
||||
- 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 by QR-code is possible here* corresponds with `payment:qr_code=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:qr_code' target='_blank'>payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:qr_code%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 `wheelchair=designated`
|
||||
- *This place is easily reachable with a wheelchair* corresponds with `wheelchair=yes`
|
||||
- *It is possible to reach this place in a wheelchair, but it is not easy* corresponds with `wheelchair=limited`
|
||||
- *This place is not reachable with a wheelchair* corresponds with `wheelchair=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 `cuisine=pizza`
|
||||
- *This is a friture* corresponds with `cuisine=friture`
|
||||
- *Mainly serves pasta* corresponds with `cuisine=pasta`
|
||||
- *This is kebab shop* corresponds with `cuisine=kebab`
|
||||
- *This is a sandwichbar* corresponds with `cuisine=sandwich`
|
||||
- *Burgers are served here* corresponds with `cuisine=burger`
|
||||
- *Sushi is served here* corresponds with `cuisine=sushi`
|
||||
- *Coffee is served here* corresponds with `cuisine=coffee`
|
||||
- *This is an italian restaurant (which serves more then pasta and pizza)* corresponds with `cuisine=italian`
|
||||
- *French dishes are served here* corresponds with `cuisine=french`
|
||||
- *Chinese dishes are served here* corresponds with `cuisine=chinese`
|
||||
- *Greek dishes are served here* corresponds with `cuisine=greek`
|
||||
- *Indian dishes are served here* corresponds with `cuisine=indian`
|
||||
- *Turkish dishes are served here* corresponds with `cuisine=turkish`
|
||||
- *Thai dishes are served here* corresponds with `cuisine=thai`
|
||||
|
||||
|
||||
|
||||
|
||||
### Reservation
|
||||
|
||||
|
||||
|
||||
The question is *Is a reservation required for this place?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *A reservation is required at this place* corresponds with `reservation=required`
|
||||
- *A reservation is not required, but still recommended to make sure you get a table* corresponds with `reservation=recommended`
|
||||
- *Reservation is possible at this place* corresponds with `reservation=yes`
|
||||
- *Reservation is not possible at this place* corresponds with `reservation=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `amenity=restaurant`
|
||||
|
||||
|
||||
|
||||
### Takeaway
|
||||
|
||||
|
||||
|
||||
The question is *Does this place offer take-away?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This is a take-away only business* corresponds with `takeaway=only`
|
||||
- *Take-away is possible here* corresponds with `takeaway=yes`
|
||||
- *Take-away is not possible here* corresponds with `takeaway=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### delivery
|
||||
|
||||
|
||||
|
||||
The question is *Delivers {title()} their food at home?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This business does home delivery (eventually via a third party)* corresponds with `delivery=yes`
|
||||
- *This business does not deliver at home* corresponds with `delivery=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### Vegetarian (no friture)
|
||||
|
||||
|
||||
|
||||
The question is *Does this restaurant have a vegetarian option?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *No vegetarian options are available* corresponds with `diet:vegetarian=no`
|
||||
- *Some vegetarian options are available* corresponds with `diet:vegetarian=limited`
|
||||
- *Vegetarian options are available* corresponds with `diet:vegetarian=yes`
|
||||
- *All dishes are vegetarian* corresponds with `diet:vegetarian=only`
|
||||
|
||||
|
||||
|
||||
|
||||
### Vegan (no friture)
|
||||
|
||||
|
||||
|
||||
The question is *Does this business serve vegan meals?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *No vegan options available* corresponds with `diet:vegan=no`
|
||||
- *Some vegan options are available* corresponds with `diet:vegan=limited`
|
||||
- *Vegan options are available* corresponds with `diet:vegan=yes`
|
||||
- *All dishes are vegan* corresponds with `diet:vegan=only`
|
||||
|
||||
|
||||
|
||||
|
||||
### halal (no friture)
|
||||
|
||||
|
||||
|
||||
The question is *Does this restaurant offer a halal menu?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *There are no halal options available* corresponds with `diet:halal=no`
|
||||
- *There is a small halal menu* corresponds with `diet:halal=limited`
|
||||
- *There is a halal menu* corresponds with `diet:halal=yes`
|
||||
- *Only halal options are available* corresponds with `diet:halal=only`
|
||||
|
||||
|
||||
|
||||
|
||||
### organic (no friture)
|
||||
|
||||
|
||||
|
||||
The question is *Does this restaurant offer organic food?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *There are no organic options available* corresponds with `organic=no`
|
||||
- *There is an organic menu* corresponds with `organic=yes`
|
||||
- *Only organic options are available* corresponds with `organic=only`
|
||||
|
||||
|
||||
|
||||
|
||||
### friture-vegetarian
|
||||
|
||||
|
||||
|
||||
The question is *Does this fries shop have vegetarian snacks?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Vegetarian snacks are available* corresponds with `diet:vegetarian=yes`
|
||||
- *Only a small selection of snacks are vegetarian* corresponds with `diet:vegetarian=limited`
|
||||
- *No vegetarian snacks are available* corresponds with `diet:vegetarian=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `cuisine=friture`
|
||||
|
||||
|
||||
|
||||
### friture-vegan
|
||||
|
||||
|
||||
|
||||
The question is *Does this fries shop have vegan snacks?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Vegan snacks are available* corresponds with `diet:vegan=yes`
|
||||
- *A small selection of vegan snacks are available* corresponds with `diet:vegan=limited`
|
||||
- *No vegan snacks are available* corresponds with `diet:vegan=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `cuisine=friture`
|
||||
|
||||
|
||||
|
||||
### friture-organic
|
||||
|
||||
|
||||
|
||||
The question is *Does this fries shop offer organic snacks?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Organic snacks are available* corresponds with `organic=yes`
|
||||
- *No organic snacks are available* corresponds with `organic=no`
|
||||
- *Only organic snacks are available* corresponds with `organic=only`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `cuisine=friture`
|
||||
|
||||
|
||||
|
||||
### 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 `friture:oil=vegetable`
|
||||
- *The frying is done with animal oil* corresponds with `friture:oil=animal`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `cuisine=friture`
|
||||
|
||||
|
||||
|
||||
### 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?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You can bring <b>your own containers</b> to get your order, saving on single-use packaging material and thus waste* corresponds with `reusable_packaging:accept=yes`
|
||||
- *Bringing your own container is <b>not allowed</b>* corresponds with `reusable_packaging:accept=no`
|
||||
- *You <b>must</b> bring your own container to order here.* corresponds with `reusable_packaging:accept=only`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `cuisine=friture`
|
||||
|
||||
|
||||
|
||||
### 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 `service:electricity=yes`
|
||||
- *There are a few domestic sockets available to customers seated indoors, where they can charge their electronics* corresponds with `service:electricity=limited`
|
||||
- *There are no sockets available indoors to customers, but charging might be possible if the staff is asked* corresponds with `service:electricity=ask`
|
||||
- *There are a no domestic sockets available to customers seated indoors* corresponds with `service:electricity=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### dog-access
|
||||
|
||||
|
||||
|
||||
The question is *Are dogs allowed in this business?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Dogs are allowed* corresponds with `dog=yes`
|
||||
- *Dogs are <b>not</b> allowed* corresponds with `dog=no`
|
||||
- *Dogs are allowed, but they have to be leashed* corresponds with `dog=leashed`
|
||||
- *Dogs are allowed and can run around freely* corresponds with `dog=unleashed`
|
||||
|
||||
|
||||
|
||||
|
||||
### internet
|
||||
|
||||
|
||||
|
||||
The question is *Does this place offer internet access?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This place offers wireless internet access* corresponds with `internet_access=wlan`
|
||||
- *This place <b>does not</b> offer internet access* corresponds with `internet_access=no`
|
||||
- *This place offers internet access* corresponds with `internet_access=yes`
|
||||
- This option cannot be chosen as answer
|
||||
- *This place offers internet access via a terminal or computer* corresponds with `internet_access=terminal`
|
||||
- *This place offers wired internet access* corresponds with `internet_access=wired`
|
||||
|
||||
|
||||
|
||||
|
||||
### internet-fee
|
||||
|
||||
|
||||
|
||||
The question is *Is there a fee for internet access?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *There is a fee for the internet access at this place* corresponds with `internet_access:fee=yes`
|
||||
- *Internet access is free at this place* corresponds with `internet_access:fee=no`
|
||||
- *Internet access is free at this place, for customers only* corresponds with `internet_access:fee=customers`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `internet_access!=no&internet_access~.+`
|
||||
|
||||
|
||||
|
||||
### internet-ssid
|
||||
|
||||
|
||||
|
||||
The question is *What is the network name for the wireless internet access?*
|
||||
|
||||
This rendering asks information about the property [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid)
|
||||
|
||||
This is rendered with `The network name is <b>{internet_access:ssid}</b>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Telekom* corresponds with `internet_access:ssid=Telekom`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `internet_access=wlan`
|
||||
|
||||
|
||||
|
||||
### reviews
|
||||
|
||||
|
||||
|
||||
Shows the reviews module (including the possibility to leave a review)
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
open_now.0 | Open now | _isOpen=yes
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
reservation.0 | Reservation not required | reservation=no\|reservation=optional|
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
vegetarian.0 | Has a vegetarian menu | diet:vegetarian=yes\|diet:vegetarian=only|diet:vegan=yes|diet:vegan=only
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
vegan.0 | Has a vegan menu | diet:vegan=yes\|diet:vegan=only
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
halal.0 | Has a halal menu | diet:halal=yes\|diet:halal=only
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
has_organic.0 | Has organic options | organic=yes\|organic=only
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
accepts_cash.0 | Accepts cash | payment:cash=yes
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
accepts_cards.0 | Accepts payment cards | payment:cards=yes
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/fritures/fritures.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/fritures/fritures.json)
|
224
Docs/Layers/ghost_bike.md
Normal file
224
Docs/Layers/ghost_bike.md
Normal file
|
@ -0,0 +1,224 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
ghost_bike
|
||||
============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/ghost_bike/ghost_bike.svg' height="100px">
|
||||
|
||||
A layer showing memorials for cyclists, killed in road accidents
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **0** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [ghostbikes](https://mapcomplete.osm.be/ghostbikes)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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/source#values) [source](https://wiki.openstreetmap.org/wiki/Key:source) | [url](../SpecialInputElements.md#url) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/inscription#values) [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [string](../SpecialInputElements.md#string) |
|
||||
[<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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### ghost-bike-explanation
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### ghost_bike-name
|
||||
|
||||
|
||||
|
||||
The question is *Whom is remembered by this ghost bike?*
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
|
||||
This is rendered with `In remembrance of {name}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *No name is marked on the bike* corresponds with `noname=yes`
|
||||
|
||||
|
||||
|
||||
|
||||
### ghost_bike-source
|
||||
|
||||
|
||||
|
||||
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 info available</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### ghost_bike-inscription
|
||||
|
||||
|
||||
|
||||
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>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### ghost_bike-start_date
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/ghost_bike/ghost_bike.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/ghost_bike/ghost_bike.json)
|
213
Docs/Layers/governments.md
Normal file
213
Docs/Layers/governments.md
Normal file
|
@ -0,0 +1,213 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
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)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/governments/governments.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/governments/governments.json)
|
412
Docs/Layers/hackerspace.md
Normal file
412
Docs/Layers/hackerspace.md
Normal file
|
@ -0,0 +1,412 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
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)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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/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/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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### is_makerspace
|
||||
|
||||
|
||||
|
||||
The question is *Is this a hackerspace or a makerspace?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This is a makerspace* corresponds with `hackerspace=makerspace`
|
||||
- *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>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 `location=underground`
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the ground floor* corresponds with `level=0`
|
||||
- *Located on the ground floor* corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the first floor* corresponds with `level=1`
|
||||
- *Located on the first basement level* corresponds with `level=-1`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### opening_hours_24_7
|
||||
|
||||
|
||||
|
||||
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 `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *24/7 opened (including holidays)* corresponds with `opening_hours=24/7`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 `service:3dprinter=yes`
|
||||
- *There is no 3D-printer available at this hackerspace* corresponds with `service:3dprinter=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 `service:lasercutter=yes`
|
||||
- *There is no laser cutter available at this hackerspace* corresponds with `service:lasercutter=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 `service:cnc_drilling_machine=yes`
|
||||
- *There is no CNC drill available at this hackerspace* corresponds with `service:cnc_drilling_machine=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### wheelchair-access
|
||||
|
||||
|
||||
|
||||
The question is *Is this place accessible with a wheelchair?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This place is specially adapted for wheelchair users* corresponds with `wheelchair=designated`
|
||||
- *This place is easily reachable with a wheelchair* corresponds with `wheelchair=yes`
|
||||
- *It is possible to reach this place in a wheelchair, but it is not easy* corresponds with `wheelchair=limited`
|
||||
- *This place is not reachable with a wheelchair* corresponds with `wheelchair=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### hs-club-mate
|
||||
|
||||
|
||||
|
||||
The question is *Does this hackerspace serve Club Mate?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This hackerspace serves club mate* corresponds with `drink:club-mate=yes`
|
||||
- *This hackerspace does not serve club mate* corresponds with `drink:club-mate=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
Show the images block at this location
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### minimap
|
||||
|
||||
|
||||
|
||||
Shows a small map with the feature. Added by default to every popup
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/hackerspace/hackerspace.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/hackerspace/hackerspace.json)
|
205
Docs/Layers/health_and_social_places_without_etymology.md
Normal file
205
Docs/Layers/health_and_social_places_without_etymology.md
Normal file
|
@ -0,0 +1,205 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
health_and_social_places_without_etymology
|
||||
============================================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/pin:#05d7fcaa' height="100px">
|
||||
|
||||
All objects which have an etymology known
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **18** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [etymology](https://mapcomplete.osm.be/etymology)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name:etymology:wikidata#values) [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name:etymology#values) [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology) | [string](../SpecialInputElements.md#string) | [unknown](https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### etymology-images-from-wikipedia
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### wikipedia-etymology
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### zoeken op inventaris onroerend erfgoed
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_country=be`
|
||||
|
||||
|
||||
|
||||
### simple etymology
|
||||
|
||||
|
||||
|
||||
The question is *What is this object named after?*
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *The origin of this name is unknown in all literature* corresponds with `name:etymology=unknown`
|
||||
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
Show the images block at this location
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### street-name-sign-image
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### minimap
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### etymology_multi_apply
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### wikipedia
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `wikidata~.+`
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/etymology/etymology.json)
|
234
Docs/Layers/hospital.md
Normal file
234
Docs/Layers/hospital.md
Normal file
|
@ -0,0 +1,234 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
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)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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 | [clinic](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dclinic) [hospital](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dhospital)
|
||||
[<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/opening_hours:visitors#values) [opening_hours:visitors](https://wiki.openstreetmap.org/wiki/Key:opening_hours:visitors) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### inpatient
|
||||
|
||||
|
||||
|
||||
The question is *Does this facility admit inpatients?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This is a clinic - patients can not stay overnight* corresponds with `amenity=clinic`
|
||||
- *This is a hospital - patients can be admitted here for multiple days* corresponds with `amenity=hospital`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### oh-visitor
|
||||
|
||||
|
||||
|
||||
The question is *When are visitors allowed to visit?*
|
||||
|
||||
This rendering asks information about the property [opening_hours:visitors](https://wiki.openstreetmap.org/wiki/Key:opening_hours:visitors)
|
||||
|
||||
This is rendered with `<h3>Opening hours for visitors</h3>Regular visitors are allowed at the following moments: {opening_hours_table(opening_hours:visitors)}<p class='subtle'>Some wands might have different opening hours. Many hospitals allow visits during emergencies too.</p>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/hospital/hospital.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/hospital/hospital.json)
|
318
Docs/Layers/hotel.md
Normal file
318
Docs/Layers/hotel.md
Normal file
|
@ -0,0 +1,318 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [hotels](https://mapcomplete.osm.be/hotels)
|
||||
- [onwheels](https://mapcomplete.osm.be/onwheels)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access:ssid#values) [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### wheelchair-access
|
||||
|
||||
|
||||
|
||||
The question is *Is this place accessible with a wheelchair?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This place is specially adapted for wheelchair users* corresponds with `wheelchair=designated`
|
||||
- *This place is easily reachable with a wheelchair* corresponds with `wheelchair=yes`
|
||||
- *It is possible to reach this place in a wheelchair, but it is not easy* corresponds with `wheelchair=limited`
|
||||
- *This place is not reachable with a wheelchair* corresponds with `wheelchair=no`
|
||||
|
||||
|
||||
|
||||
|
||||
### internet
|
||||
|
||||
|
||||
|
||||
The question is *Does this place offer internet access?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This place offers wireless internet access* corresponds with `internet_access=wlan`
|
||||
- *This place <b>does not</b> offer internet access* corresponds with `internet_access=no`
|
||||
- *This place offers internet access* corresponds with `internet_access=yes`
|
||||
- This option cannot be chosen as answer
|
||||
- *This place offers internet access via a terminal or computer* corresponds with `internet_access=terminal`
|
||||
- *This place offers wired internet access* corresponds with `internet_access=wired`
|
||||
|
||||
|
||||
|
||||
|
||||
### internet-fee
|
||||
|
||||
|
||||
|
||||
The question is *Is there a fee for internet access?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *There is a fee for the internet access at this place* corresponds with `internet_access:fee=yes`
|
||||
- *Internet access is free at this place* corresponds with `internet_access:fee=no`
|
||||
- *Internet access is free at this place, for customers only* corresponds with `internet_access:fee=customers`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `internet_access!=no&internet_access~.+`
|
||||
|
||||
|
||||
|
||||
### internet-ssid
|
||||
|
||||
|
||||
|
||||
The question is *What is the network name for the wireless internet access?*
|
||||
|
||||
This rendering asks information about the property [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid)
|
||||
|
||||
This is rendered with `The network name is <b>{internet_access:ssid}</b>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Telekom* corresponds with `internet_access:ssid=Telekom`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `internet_access=wlan`
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/hotel/hotel.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/hotel/hotel.json)
|
258
Docs/Layers/hydrant.md
Normal file
258
Docs/Layers/hydrant.md
Normal file
|
@ -0,0 +1,258 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
hydrant
|
||||
=========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/hailhydrant/hydrant.svg' height="100px">
|
||||
|
||||
Map layer to show fire hydrants.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **14** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [hailhydrant](https://mapcomplete.osm.be/hailhydrant)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/colour#values) [colour](https://wiki.openstreetmap.org/wiki/Key:colour) | [string](../SpecialInputElements.md#string) | [yellow](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow) [red](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/fire_hydrant:type#values) [fire_hydrant:type](https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type) | [string](../SpecialInputElements.md#string) | [pillar](https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dpillar) [pipe](https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dpipe) [wall](https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dwall) [underground](https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dunderground)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/emergency#values) [emergency](https://wiki.openstreetmap.org/wiki/Key:emergency) | Multiple choice | [fire_hydrant](https://wiki.openstreetmap.org/wiki/Tag:emergency%3Dfire_hydrant) [](https://wiki.openstreetmap.org/wiki/Tag:emergency%3D) [](https://wiki.openstreetmap.org/wiki/Tag:emergency%3D)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/fire_hydrant:diameter#values) [fire_hydrant:diameter](https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:diameter) | [int](../SpecialInputElements.md#int) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/couplings#values) [couplings](https://wiki.openstreetmap.org/wiki/Key:couplings) | [int](../SpecialInputElements.md#int) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/couplings:type#values) [couplings:type](https://wiki.openstreetmap.org/wiki/Key:couplings:type) | [string](../SpecialInputElements.md#string) | [Storz](https://wiki.openstreetmap.org/wiki/Tag:couplings:type%3DStorz) [UNI](https://wiki.openstreetmap.org/wiki/Tag:couplings:type%3DUNI) [Barcelona](https://wiki.openstreetmap.org/wiki/Tag:couplings:type%3DBarcelona)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/couplings:diameters#values) [couplings:diameters](https://wiki.openstreetmap.org/wiki/Key:couplings:diameters) | [string](../SpecialInputElements.md#string) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### hydrant-color
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *The hydrant color is yellow.* corresponds with `colour=yellow`
|
||||
- *The hydrant color is red.* corresponds with `colour=red`
|
||||
|
||||
|
||||
|
||||
|
||||
### hydrant-type
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Pillar type.* corresponds with `fire_hydrant:type=pillar`
|
||||
- *Pipe type.* corresponds with `fire_hydrant:type=pipe`
|
||||
- *Wall type.* corresponds with `fire_hydrant:type=wall`
|
||||
- *Underground type.* corresponds with `fire_hydrant:type=underground`
|
||||
|
||||
|
||||
|
||||
|
||||
### hydrant-state
|
||||
|
||||
|
||||
|
||||
The question is *Is this hydrant still working?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *The hydrant is (fully or partially) working* corresponds with `emergency=fire_hydrant`
|
||||
- *The hydrant is unavailable* corresponds with `disused:emergency=fire_hydrant`
|
||||
- *The hydrant has been removed* corresponds with `removed:emergency=fire_hydrant`
|
||||
|
||||
|
||||
|
||||
|
||||
### hydrant-diameter
|
||||
|
||||
|
||||
|
||||
The question is *What is the pipe diameter of this hydrant?*
|
||||
|
||||
This rendering asks information about the property [fire_hydrant:diameter](https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:diameter)
|
||||
|
||||
This is rendered with `Pipe diameter: {canonical(fire_hydrant:diameter)}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### hydrant-number-of-couplings
|
||||
|
||||
|
||||
|
||||
The question is *How many couplings does this fire hydrant have?*
|
||||
|
||||
This rendering asks information about the property [couplings](https://wiki.openstreetmap.org/wiki/Key:couplings)
|
||||
|
||||
This is rendered with `Number of couplings: {couplings}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### hydrant-couplings
|
||||
|
||||
|
||||
|
||||
The question is *What kind of couplings does this hydrant have?*
|
||||
|
||||
This rendering asks information about the property [couplings:type](https://wiki.openstreetmap.org/wiki/Key:couplings:type)
|
||||
|
||||
This is rendered with `Couplings: {couplings:type}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Storz coupling* corresponds with `couplings:type=Storz`
|
||||
- *UNI coupling* corresponds with `couplings:type=UNI`
|
||||
- *Barcelona coupling* corresponds with `couplings:type=Barcelona`
|
||||
|
||||
|
||||
|
||||
|
||||
### hydrant-couplings-diameters
|
||||
|
||||
|
||||
|
||||
The question is *What diameter are the couplings of this hydrant?*
|
||||
|
||||
This rendering asks information about the property [couplings:diameters](https://wiki.openstreetmap.org/wiki/Key:couplings:diameters)
|
||||
|
||||
This is rendered with `Coupling diameters: {couplings:diameters}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/hydrant/hydrant.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/hydrant/hydrant.json)
|
165
Docs/Layers/indoors.md
Normal file
165
Docs/Layers/indoors.md
Normal file
|
@ -0,0 +1,165 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
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)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) |
|
||||
[<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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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 reference number of this room?*
|
||||
|
||||
This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref)
|
||||
|
||||
This is rendered with `This room has the reference number {ref}`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `indoor=room|indoor=area|indoor=corridor`
|
||||
|
||||
|
||||
|
||||
### name
|
||||
|
||||
|
||||
|
||||
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 tagrendering is only visible in the popup if the following condition is met: `indoor=room|indoor=area|indoor=corridor`
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/indoors/indoors.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/indoors/indoors.json)
|
149
Docs/Layers/information_board.md
Normal file
149
Docs/Layers/information_board.md
Normal file
|
@ -0,0 +1,149 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
information_board
|
||||
===================
|
||||
|
||||
|
||||
|
||||
<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, …)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **12** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [nature](https://mapcomplete.osm.be/nature)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/information_board/information_board.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/information_board/information_board.json)
|
227
Docs/Layers/kerbs.md
Normal file
227
Docs/Layers/kerbs.md
Normal file
|
@ -0,0 +1,227 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [blind_osm](https://mapcomplete.osm.be/blind_osm)
|
||||
- [kerbs_and_crossings](https://mapcomplete.osm.be/kerbs_and_crossings)
|
||||
- [onwheels](https://mapcomplete.osm.be/onwheels)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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) | [0](https://wiki.openstreetmap.org/wiki/Tag:kerb:height%3D0)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### kerb-type
|
||||
|
||||
|
||||
|
||||
The question is *What is the height of this kerb?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This kerb is raised (>3 cm)* corresponds with `kerb=raised`
|
||||
- *This kerb is lowered (~3 cm)* corresponds with `kerb=lowered`
|
||||
- *This kerb is flush (~0cm)* corresponds with `kerb=flush`
|
||||
- *There is no kerb here* corresponds with `kerb=no`
|
||||
- This option cannot be chosen as answer
|
||||
- *There is a kerb of unknown height* corresponds with `kerb=yes`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_geometry:type=Point`
|
||||
|
||||
|
||||
|
||||
### tactile-paving
|
||||
|
||||
|
||||
|
||||
The question is *Is there tactile paving at this kerb?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This kerb has tactile paving.* corresponds with `tactile_paving=yes`
|
||||
- *This kerb does not have tactile paving.* corresponds with `tactile_paving=no`
|
||||
- *This kerb has tactile paving, but it is incorrect.* corresponds with `tactile_paving=incorrect`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_geometry:type=Point`
|
||||
|
||||
|
||||
|
||||
### 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 kerb is flush and is lower than 1cm.* corresponds with `kerb:height=0`
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
kerb-type.0 | All types of kerbs (default) |
|
||||
kerb-type.1 | Raised kerb (>3 cm) | kerb=raised
|
||||
kerb-type.2 | Lowered kerb (~3 cm) | kerb=lowered
|
||||
kerb-type.3 | Flush kerb (~0cm) | kerb=flush
|
||||
kerb-type.4 | No kerb | kerb=no
|
||||
kerb-type.5 | Kerb with unknown height |
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
tactile_paving_advanced.0 | With or without tactile paving (default) |
|
||||
tactile_paving_advanced.1 | With tactile paving | tactile_paving=yes
|
||||
tactile_paving_advanced.2 | Without tactile paving | tactile_paving=no
|
||||
tactile_paving_advanced.3 | No information about tactile paving |
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/kerbs/kerbs.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/kerbs/kerbs.json)
|
270
Docs/Layers/kindergarten_childcare.md
Normal file
270
Docs/Layers/kindergarten_childcare.md
Normal file
|
@ -0,0 +1,270 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
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)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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 `amenity=kindergarten`
|
||||
- *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 `amenity=childcare`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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)}`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `amenity=childcare`
|
||||
|
||||
|
||||
|
||||
### 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`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/kindergarten_childcare/kindergarten_childcare.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/kindergarten_childcare/kindergarten_childcare.json)
|
157
Docs/Layers/lit_streets.md
Normal file
157
Docs/Layers/lit_streets.md
Normal file
|
@ -0,0 +1,157 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
lit_streets
|
||||
=============
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- 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`
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [street_lighting](https://mapcomplete.osm.be/street_lighting)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/lit#values) [lit](https://wiki.openstreetmap.org/wiki/Key:lit) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno) [24/7](https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This street is lit* corresponds with `lit=yes`
|
||||
- *This street is not lit* corresponds with `lit=no`
|
||||
- *This street is lit at night* corresponds with `lit=sunset-sunrise`
|
||||
- This option cannot be chosen as answer
|
||||
- *This street is lit 24/7* corresponds with `lit=24/7`
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### split-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/street_lighting/street_lighting.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/street_lighting/street_lighting.json)
|
197
Docs/Layers/map.md
Normal file
197
Docs/Layers/map.md
Normal file
|
@ -0,0 +1,197 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
map
|
||||
=====
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/map/map.svg' height="100px">
|
||||
|
||||
A map, meant for tourists which is permanently installed in the public space
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **12** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [maps](https://mapcomplete.osm.be/maps)
|
||||
- [nature](https://mapcomplete.osm.be/nature)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/map_source#values) [map_source](https://wiki.openstreetmap.org/wiki/Key:map_source) | [string](../SpecialInputElements.md#string) | [OpenStreetMap](https://wiki.openstreetmap.org/wiki/Tag:map_source%3DOpenStreetMap)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/map_source:attribution#values) [map_source:attribution](https://wiki.openstreetmap.org/wiki/Key:map_source:attribution) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dyes) [incomplete](https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dincomplete) [sticker](https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dsticker) [none](https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dnone)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### map-map_source
|
||||
|
||||
|
||||
|
||||
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 map is based on OpenStreetMap* corresponds with `map_source=OpenStreetMap`
|
||||
|
||||
|
||||
This tagrendering has labels `map`
|
||||
|
||||
|
||||
|
||||
### map-attribution
|
||||
|
||||
|
||||
|
||||
The question is *Is the OpenStreetMap-attribution given?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *OpenStreetMap is clearly attributed, including the ODBL-license* corresponds with `map_source:attribution=yes`
|
||||
- *OpenStreetMap is clearly attributed, but the license is not mentioned* corresponds with `map_source:attribution=incomplete`
|
||||
- *OpenStreetMap wasn't mentioned, but someone put an OpenStreetMap-sticker on it* corresponds with `map_source:attribution=sticker`
|
||||
- *There is no attribution at all* corresponds with `map_source:attribution=none`
|
||||
- *There is no attribution at all* corresponds with `map_source:attribution=no`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `map_source~^((O|)pen(S|s)treet(M|m)ap)$|map_source=osm|map_source=OSM`
|
||||
|
||||
This tagrendering has labels `map`
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/map/map.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/map/map.json)
|
200
Docs/Layers/maproulette.md
Normal file
200
Docs/Layers/maproulette.md
Normal file
|
@ -0,0 +1,200 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### status
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Task is created* corresponds with `status=0`
|
||||
- *Task is fixed* corresponds with `status=1`
|
||||
- *Task is a false positive* corresponds with `status=2`
|
||||
- *Task is skipped* corresponds with `status=3`
|
||||
- *Task is deleted* corresponds with `status=4`
|
||||
- *Task is already fixed* corresponds with `status=5`
|
||||
- *Task is marked as too hard* corresponds with `status=6`
|
||||
- *Task is disabled* corresponds with `status=9`
|
||||
|
||||
|
||||
|
||||
|
||||
### mark_fixed
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering has labels `controls`
|
||||
|
||||
|
||||
|
||||
### mark_duplicate
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering has labels `controls`
|
||||
|
||||
|
||||
|
||||
### mark_too_hard
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering has labels `controls`
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
status.0 | Show tasks with all statuses (default) |
|
||||
status.1 | Show tasks that are created | status=0
|
||||
status.2 | Show tasks that are fixed | status=1
|
||||
status.3 | Show tasks that are false positives | status=2
|
||||
status.4 | Show tasks that are skipped | status=3
|
||||
status.5 | Show tasks that are deleted | status=4
|
||||
status.6 | Show tasks that are already fixed | status=5
|
||||
status.7 | Show tasks that are marked as too hard | status=6
|
||||
status.8 | Show tasks that are disabled | status=9
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags | fields
|
||||
---- | ---------- | --------- | --------
|
||||
parent-name.0 | Challenge name contains {search} | | search (string)
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags | fields
|
||||
---- | ---------- | --------- | --------
|
||||
parent-id.0 | Challenge ID matches {search} | | search (string)
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/maproulette/maproulette.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/maproulette/maproulette.json)
|
174
Docs/Layers/maproulette_challenge.md
Normal file
174
Docs/Layers/maproulette_challenge.md
Normal file
|
@ -0,0 +1,174 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
maproulette_challenge
|
||||
=======================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/maproulette/logomark.svg' height="100px">
|
||||
|
||||
Layer showing tasks of a single MapRoulette challenge. This layer is intended to be reused and extended in themes; refer to [the documentation](https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Integrating_Maproulette.md) on how to do this.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **0** and higher
|
||||
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
||||
- <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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [atm](https://mapcomplete.osm.be/atm)
|
||||
- [onwheels](https://mapcomplete.osm.be/onwheels)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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 `mr_taskStatus=Created`
|
||||
- *Task is fixed* corresponds with `mr_taskStatus=Fixed`
|
||||
- *Task is a false positive* corresponds with `mr_taskStatus=False positive`
|
||||
- *Task is skipped* corresponds with `mr_taskStatus=Skipped`
|
||||
- *Task is deleted* corresponds with `mr_taskStatus=Deleted`
|
||||
- *Task is already fixed* corresponds with `mr_taskStatus=Already fixed`
|
||||
- *Task is marked as too hard* corresponds with `mr_taskStatus=Too hard`
|
||||
- *Task is disabled* corresponds with `mr_taskStatus=Disabled`
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
status.0 | Show tasks with all statuses (default) |
|
||||
status.1 | Show tasks that are created | mr_taskStatus=Created
|
||||
status.2 | Show tasks that are fixed | mr_taskStatus=Fixed
|
||||
status.3 | Show tasks that are false positives | mr_taskStatus=False positive
|
||||
status.4 | Show tasks that are skipped | mr_taskStatus=Skipped
|
||||
status.5 | Show tasks that are deleted | mr_taskStatus=Deleted
|
||||
status.6 | Show tasks that are already fixed | mr_taskStatus=Already fixed
|
||||
status.7 | Show tasks that are marked as too hard | mr_taskStatus=Too hard
|
||||
status.8 | Show tasks that are disabled | mr_taskStatus=Disabled
|
||||
|
||||
|
||||
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)
|
150
Docs/Layers/maxspeed.md
Normal file
150
Docs/Layers/maxspeed.md
Normal file
|
@ -0,0 +1,150 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
maxspeed
|
||||
==========
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Shows the allowed speed for every road
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **16** and higher
|
||||
- This layer is needed as dependency for layer [speed_camera](#speed_camera)
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [maxspeed](https://mapcomplete.osm.be/maxspeed)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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 {canonical(maxspeed)}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This is a living street, which has a maxspeed of 20km/h* corresponds with `highway=living_street&_country!=be`
|
||||
- This option cannot be chosen as answer
|
||||
- *This is a living street, which has a maxspeed of 20km/h* corresponds with `highway=living_street`
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### split-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/maxspeed/maxspeed.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/maxspeed/maxspeed.json)
|
443
Docs/Layers/medical-shops.md
Normal file
443
Docs/Layers/medical-shops.md
Normal file
|
@ -0,0 +1,443 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
medical-shops
|
||||
===============
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
A shop
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **13** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [healthcare](https://mapcomplete.osm.be/healthcare)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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/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/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/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access:ssid#values) [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/organic#values) [organic](https://wiki.openstreetmap.org/wiki/Key:organic) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:organic%3Donly) [no](https://wiki.openstreetmap.org/wiki/Tag:organic%3Dno)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### shops-name
|
||||
|
||||
|
||||
|
||||
The question is *What is the name of this shop?*
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
|
||||
This is rendered with `This shop is called <i>{name}</i>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### 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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### payment-options
|
||||
|
||||
|
||||
|
||||
The question is *Which methods of payment are accepted here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Cash is accepted here* corresponds with `payment:cash=yes`
|
||||
- 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 `payment:cards=yes`
|
||||
- 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 by QR-code is possible here* corresponds with `payment:qr_code=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:qr_code' target='_blank'>payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:qr_code%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 `location=underground`
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the ground floor* corresponds with `level=0`
|
||||
- *Located on the ground floor* corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the first floor* corresponds with `level=1`
|
||||
- *Located on the first basement level* corresponds with `level=-1`
|
||||
|
||||
|
||||
|
||||
|
||||
### copyshop-print-sizes
|
||||
|
||||
|
||||
|
||||
The question is *What paper formats does this shop offer?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This shop can print on papers of size A4* corresponds with `service:print:A4=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:service:print:A4' target='_blank'>service:print:A4</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:print:A4%3Dno' target='_blank'>no</a>
|
||||
- *This shop can print on papers of size A3* corresponds with `service:print:A3=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:service:print:A3' target='_blank'>service:print:A3</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:print:A3%3Dno' target='_blank'>no</a>
|
||||
- *This shop can print on papers of size A2* corresponds with `service:print:A2=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:service:print:A2' target='_blank'>service:print:A2</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:print:A2%3Dno' target='_blank'>no</a>
|
||||
- *This shop can print on papers of size A1* corresponds with `service:print:A1=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:service:print:A1' target='_blank'>service:print:A1</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:print:A1%3Dno' target='_blank'>no</a>
|
||||
- *This shop can print on papers of size A0* corresponds with `service:print:A0=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:service:print:A0' target='_blank'>service:print:A0</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:print:A0%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `shop~^(.*copyshop.*)$|shop~^(.*stationery.*)$|service:print=yes`
|
||||
|
||||
|
||||
|
||||
### internet
|
||||
|
||||
|
||||
|
||||
The question is *Does this place offer internet access?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This place offers wireless internet access* corresponds with `internet_access=wlan`
|
||||
- *This place <b>does not</b> offer internet access* corresponds with `internet_access=no`
|
||||
- *This place offers internet access* corresponds with `internet_access=yes`
|
||||
- This option cannot be chosen as answer
|
||||
- *This place offers internet access via a terminal or computer* corresponds with `internet_access=terminal`
|
||||
- *This place offers wired internet access* corresponds with `internet_access=wired`
|
||||
|
||||
|
||||
|
||||
|
||||
### internet-fee
|
||||
|
||||
|
||||
|
||||
The question is *Is there a fee for internet access?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *There is a fee for the internet access at this place* corresponds with `internet_access:fee=yes`
|
||||
- *Internet access is free at this place* corresponds with `internet_access:fee=no`
|
||||
- *Internet access is free at this place, for customers only* corresponds with `internet_access:fee=customers`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `internet_access!=no&internet_access~.+`
|
||||
|
||||
|
||||
|
||||
### internet-ssid
|
||||
|
||||
|
||||
|
||||
The question is *What is the network name for the wireless internet access?*
|
||||
|
||||
This rendering asks information about the property [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid)
|
||||
|
||||
This is rendered with `The network name is <b>{internet_access:ssid}</b>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Telekom* corresponds with `internet_access:ssid=Telekom`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `internet_access=wlan`
|
||||
|
||||
|
||||
|
||||
### organic
|
||||
|
||||
|
||||
|
||||
The question is *Does this shop offer organic products?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This shop offers organic products* corresponds with `organic=yes`
|
||||
- *This shop only offers organic products* corresponds with `organic=only`
|
||||
- *This shop does not offer organic products* corresponds with `organic=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `shop=supermarket|shop=convenience|shop=farm|shop=greengrocer|shop=health_food|shop=clothes|shop=shoes|shop=butcher|shop=cosmetics|shop=deli|shop=bakery|shop=alcohol|shop=seafood|shop=beverages|shop=florist`
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
Show the images block at this location
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### minimap
|
||||
|
||||
|
||||
|
||||
Shows a small map with the feature. Added by default to every popup
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
open_now.0 | Open now | _isOpen=yes
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
accepts_cash.0 | Accepts cash | payment:cash=yes
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
accepts_cards.0 | Accepts payment cards | payment:cards=yes
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/healthcare/healthcare.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/healthcare/healthcare.json)
|
141
Docs/Layers/memorial.md
Normal file
141
Docs/Layers/memorial.md
Normal file
|
@ -0,0 +1,141 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
memorial
|
||||
==========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/memorial/plaque.svg' height="100px">
|
||||
|
||||
Layer showing memorial plaques, based upon a unofficial theme. Can be expanded to have multiple types of memorials later on
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **0** and higher
|
||||
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/inscription#values) [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [text](../SpecialInputElements.md#text) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### inscription
|
||||
|
||||
|
||||
|
||||
The question is *What is the inscription of this plaque?*
|
||||
|
||||
This rendering asks information about the property [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription)
|
||||
|
||||
This is rendered with `The inscription on this plaque reads: <p><i>{inscription}<i></p>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/memorial/memorial.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/memorial/memorial.json)
|
35
Docs/Layers/named_streets.md
Normal file
35
Docs/Layers/named_streets.md
Normal file
|
@ -0,0 +1,35 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
named_streets
|
||||
===============
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Hidden layer with all streets which have a name. Useful to detect addresses
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **18** and higher
|
||||
- This layer is not visible by default and must be enabled in the filter by the user.
|
||||
- Elements don't have a title set and cannot be toggled nor will they show up in the dashboard. If you import this layer in your theme, override `title` to make this toggleable.
|
||||
- This layer is not visible by default and the visibility cannot be toggled, effectively resulting in a fully hidden layer. This can be useful, e.g. to calculate some metatags. If you want to render this layer (e.g. for debugging), enable it by setting the URL-parameter layer-<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`
|
||||
- This layer is needed as dependency for layer [address](#address)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/named_streets/named_streets.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/named_streets/named_streets.json)
|
372
Docs/Layers/nature_reserve.md
Normal file
372
Docs/Layers/nature_reserve.md
Normal file
|
@ -0,0 +1,372 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
nature_reserve
|
||||
================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/nature_reserve/nature_reserve.svg' height="100px">
|
||||
|
||||
A nature reserve is an area where nature can take its course
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **12** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [nature](https://mapcomplete.osm.be/nature)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Natuurpunt](https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt) [Agentschap Natuur en Bos](https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgentschap Natuur en Bos)
|
||||
[<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/dog#values) [dog](https://wiki.openstreetmap.org/wiki/Key:dog) | Multiple choice | [leashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed) [no](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes)
|
||||
[<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/curator#values) [curator](https://wiki.openstreetmap.org/wiki/Key:curator) | [string](../SpecialInputElements.md#string) |
|
||||
[<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/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/description:0#values) [description:0](https://wiki.openstreetmap.org/wiki/Key:description:0) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/wikidata#values) [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Access tag
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Publicly accessible* corresponds with `access=yes`
|
||||
- *Not accessible* corresponds with `access=no`
|
||||
- *Not accessible as this is a private area* corresponds with `access=private`
|
||||
- *Accessible despite being a privately owned area* corresponds with `access=permissive`
|
||||
- *Only accessible with a guide or during organised activities* corresponds with `access=guided`
|
||||
- *Accessible with fee* corresponds with `access=yes&fee=yes`
|
||||
|
||||
|
||||
|
||||
|
||||
### Operator tag
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Operated by Natuurpunt* corresponds with `operator=Natuurpunt`
|
||||
- *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 `operator=Agentschap Natuur en Bos`
|
||||
|
||||
|
||||
|
||||
|
||||
### Name tag
|
||||
|
||||
|
||||
|
||||
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 area doesn't have a name* corresponds with `noname=yes`
|
||||
|
||||
|
||||
|
||||
|
||||
### Dogs?
|
||||
|
||||
|
||||
|
||||
The question is *Are dogs allowed in this nature reserve?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Dogs have to be leashed* corresponds with `dog=leashed`
|
||||
- *No dogs allowed* corresponds with `dog=no`
|
||||
- *Dogs are allowed to roam freely* corresponds with `dog=yes`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `access=yes|access=permissive|access=guided`
|
||||
|
||||
|
||||
|
||||
### 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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### Curator
|
||||
|
||||
|
||||
|
||||
The question is *Whom is the curator of this nature reserve?*
|
||||
|
||||
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`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Email
|
||||
|
||||
|
||||
|
||||
The question is *What email adress can one send to with questions and problems with this nature reserve?*
|
||||
|
||||
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>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### phone
|
||||
|
||||
|
||||
|
||||
The question is *What phone number can one call to with questions and problems with this nature reserve?*
|
||||
|
||||
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>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Non-editable description
|
||||
|
||||
|
||||
|
||||
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>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Editable description
|
||||
|
||||
|
||||
|
||||
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>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Surface area
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### wikipedia
|
||||
|
||||
|
||||
|
||||
Shows a wikipedia box with the corresponding wikipedia article; the wikidata-item link can be changed by a contributor
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *{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
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
access.0 | Freely accesible | access=yes
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
dogs.0 | All nature reserves (default) |
|
||||
dogs.1 | Dogs are allowed to roam freely | dog=yes
|
||||
dogs.2 | Dogs are allowed if they are leashed | dog=yes\|dog=leashed
|
||||
|
||||
|
||||
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)
|
265
Docs/Layers/note.md
Normal file
265
Docs/Layers/note.md
Normal file
|
@ -0,0 +1,265 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
note
|
||||
======
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/note' height="100px">
|
||||
|
||||
This layer shows notes on OpenStreetMap. Having this layer in your theme will trigger the 'add new note' functionality in the 'addNewPoint'-popup (or if your theme has no presets, it'll enable adding notes)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **10** and higher
|
||||
- <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}`
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [notes](https://mapcomplete.osm.be/notes)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### conversation
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### add_image
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### comment
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### nearby-images
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### report-contributor
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_opened_by_anonymous_user=false`
|
||||
|
||||
|
||||
|
||||
### report-note
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags | fields
|
||||
---- | ---------- | --------- | --------
|
||||
search.0 | Should mention {search} in the first comment | | search (string)
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags | fields
|
||||
---- | ---------- | --------- | --------
|
||||
not.0 | Should <b>not</b> mention {search} in the first comment | | search (string)
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags | fields
|
||||
---- | ---------- | --------- | --------
|
||||
opened_by.0 | Opened by contributor {search} | | search (string)
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags | fields
|
||||
---- | ---------- | --------- | --------
|
||||
not_opened_by.0 | <b>Not</b> opened by contributor {search} | | search (string)
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags | fields
|
||||
---- | ---------- | --------- | --------
|
||||
edited_by.0 | Last edited by contributor {search} | | search (string)
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags | fields
|
||||
---- | ---------- | --------- | --------
|
||||
not_edited_by.0 | Opened after {search} | | search (string)
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags | fields
|
||||
---- | ---------- | --------- | --------
|
||||
opened_before.0 | Created before {search} | | search (date)
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags | fields
|
||||
---- | ---------- | --------- | --------
|
||||
opened_after.0 | Created after {search} | | search (date)
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
anonymous.0 | Only show notes opened by an anonymous contributor | _opened_by_anonymous_user=true
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
is_open.0 | Only show open notes |
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
no_imports.0 | All Notes (default) |
|
||||
no_imports.1 | Hide import notes |
|
||||
no_imports.2 | Show only import Notes | _is_import_note~.+
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/note/note.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/note/note.json)
|
355
Docs/Layers/observation_tower.md
Normal file
355
Docs/Layers/observation_tower.md
Normal file
|
@ -0,0 +1,355 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
observation_tower
|
||||
===================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/observation_tower/Tower_observation.svg' height="100px">
|
||||
|
||||
Towers with a panoramic view
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **8** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [observation_towers](https://mapcomplete.osm.be/observation_towers)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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/height#values) [height](https://wiki.openstreetmap.org/wiki/Key:height) | [pfloat](../SpecialInputElements.md#pfloat) |
|
||||
[<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) [guided](https://wiki.openstreetmap.org/wiki/Tag:access%3Dguided)
|
||||
[<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/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/step_count#values) [step_count](https://wiki.openstreetmap.org/wiki/Key:step_count) | [pnat](../SpecialInputElements.md#pnat) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/elevator#values) [elevator](https://wiki.openstreetmap.org/wiki/Key:elevator) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:elevator%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:elevator%3Dno)
|
||||
[<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) |
|
||||
[<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/wikidata#values) [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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 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 tower doesn't have a specific name* corresponds with `noname=yes`
|
||||
|
||||
|
||||
|
||||
|
||||
### Height
|
||||
|
||||
|
||||
|
||||
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`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### access
|
||||
|
||||
|
||||
|
||||
The question is *Can this tower be visited?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This tower is publicly accessible* corresponds with `access=yes`
|
||||
- *This tower can only be visited with a guide* corresponds with `access=guided`
|
||||
|
||||
|
||||
|
||||
|
||||
### Fee
|
||||
|
||||
|
||||
|
||||
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>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Free to visit* corresponds with `fee=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `access=yes|access=guided`
|
||||
|
||||
|
||||
|
||||
### payment-options
|
||||
|
||||
|
||||
|
||||
The question is *Which methods of payment are accepted here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Cash is accepted here* corresponds with `payment:cash=yes`
|
||||
- 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 `payment:cards=yes`
|
||||
- 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 by QR-code is possible here* corresponds with `payment:qr_code=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:qr_code' target='_blank'>payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:qr_code%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `fee=yes|charge~.+`
|
||||
|
||||
|
||||
|
||||
### 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}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||
- This option cannot be chosen as answer
|
||||
|
||||
|
||||
This tagrendering has labels `contact`
|
||||
|
||||
|
||||
|
||||
### step_count
|
||||
|
||||
|
||||
|
||||
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`
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `access=yes|access=guided`
|
||||
|
||||
|
||||
|
||||
### elevator
|
||||
|
||||
|
||||
|
||||
The question is *Does this tower have an elevator?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This tower has an elevator which takes visitors to the top* corresponds with `elevator=yes`
|
||||
- *This tower does not have an elevator* corresponds with `elevator=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `access=yes|access=guided`
|
||||
|
||||
|
||||
|
||||
### Operator
|
||||
|
||||
|
||||
|
||||
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>`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### wheelchair-access
|
||||
|
||||
|
||||
|
||||
The question is *Is this place accessible with a wheelchair?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This place is specially adapted for wheelchair users* corresponds with `wheelchair=designated`
|
||||
- *This place is easily reachable with a wheelchair* corresponds with `wheelchair=yes`
|
||||
- *It is possible to reach this place in a wheelchair, but it is not easy* corresponds with `wheelchair=limited`
|
||||
- *This place is not reachable with a wheelchair* corresponds with `wheelchair=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `elevator=yes&access=yes|access=guided`
|
||||
|
||||
|
||||
|
||||
### wikipedia
|
||||
|
||||
|
||||
|
||||
Shows a wikipedia box with the corresponding wikipedia article; the wikidata-item link can be changed by a contributor
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *{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
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/observation_tower/observation_tower.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/observation_tower/observation_tower.json)
|
201
Docs/Layers/osm_community_index.md
Normal file
201
Docs/Layers/osm_community_index.md
Normal file
|
@ -0,0 +1,201 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
osm_community_index
|
||||
=====================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/pin:#6BC4F7;./assets/layers/osm_community_index/osm.svg' height="100px">
|
||||
|
||||
A layer showing the OpenStreetMap Communities
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- 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/community_index/tile_{z}_{x}_{y}.geojson`
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [osm_community_index](https://mapcomplete.osm.be/osm_community_index)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### country_name
|
||||
|
||||
|
||||
|
||||
The name of the country
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `level=country`
|
||||
|
||||
|
||||
|
||||
### community_links
|
||||
|
||||
|
||||
|
||||
Community Links (Discord, meetups, Slack groups, IRC channels, mailing lists etc...)
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_community_links~.+`
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
country.0 | Country | level=country
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
sub_country.0 | Sub Country Group | level=subcountryGroup
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
region.0 | Region | level=region
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
intermediate_region.0 | Intermediate Region | level=intermediateRegion
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
territory.0 | Territory | level=territory
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
world.0 | World | level=world
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
other.0 | Other Communities |
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/osm_community_index/osm_community_index.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/osm_community_index/osm_community_index.json)
|
273
Docs/Layers/parcel_lockers.md
Normal file
273
Docs/Layers/parcel_lockers.md
Normal file
|
@ -0,0 +1,273 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
parcel_lockers
|
||||
================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/square:white;./assets/layers/parcel_lockers/parcel_lockers.svg' height="100px">
|
||||
|
||||
Layer showing parcel lockers for collecting and sending parcels.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **12** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
- [postboxes](https://mapcomplete.osm.be/postboxes)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/brand#values) [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [string](../SpecialInputElements.md#string) | [Amazon Locker](https://wiki.openstreetmap.org/wiki/Tag:brand%3DAmazon Locker) [DHL Packstation](https://wiki.openstreetmap.org/wiki/Tag:brand%3DDHL Packstation) [Pickup Station](https://wiki.openstreetmap.org/wiki/Tag:brand%3DPickup Station) [PostNL](https://wiki.openstreetmap.org/wiki/Tag:brand%3DPostNL)
|
||||
[<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) |
|
||||
[<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/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/parcel_mail_in#values) [parcel_mail_in](https://wiki.openstreetmap.org/wiki/Key:parcel_mail_in) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:parcel_mail_in%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:parcel_mail_in%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/parcel_pickup#values) [parcel_pickup](https://wiki.openstreetmap.org/wiki/Key:parcel_pickup) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:parcel_pickup%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:parcel_pickup%3Dno)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### brand
|
||||
|
||||
|
||||
|
||||
The question is *What is the brand of the parcel locker?*
|
||||
|
||||
This rendering asks information about the property [brand](https://wiki.openstreetmap.org/wiki/Key:brand)
|
||||
|
||||
This is rendered with `This is a {brand} parcel locker`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This is an Amazon Locker* corresponds with `brand=Amazon Locker`
|
||||
- *This is a DHL Packstation* corresponds with `brand=DHL Packstation`
|
||||
- *This is a DPD Pickup Station* corresponds with `brand=Pickup Station`
|
||||
- *This is a PostNL Parcel Locker* corresponds with `brand=PostNL`
|
||||
|
||||
|
||||
|
||||
|
||||
### operator
|
||||
|
||||
|
||||
|
||||
The question is *What is the operator of the parcel locker?*
|
||||
|
||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||
|
||||
This is rendered with `This parcel locker is operated by {operator}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### opening_hours_24_7
|
||||
|
||||
|
||||
|
||||
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)}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *24/7 opened (including holidays)* corresponds with `opening_hours=24/7`
|
||||
|
||||
|
||||
|
||||
|
||||
### ref
|
||||
|
||||
|
||||
|
||||
The question is *What is the reference number/identifier of this parcel locker?*
|
||||
|
||||
This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref)
|
||||
|
||||
This is rendered with `This parcel locker has the reference {ref}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### mail-in
|
||||
|
||||
|
||||
|
||||
The question is *Can you send packages from this parcel locker?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You can send packages from this parcel locker* corresponds with `parcel_mail_in=yes`
|
||||
- *You <b>can't</b> send packages from this parcel locker* corresponds with `parcel_mail_in=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `amenity=parcel_locker`
|
||||
|
||||
|
||||
|
||||
### pickup
|
||||
|
||||
|
||||
|
||||
The question is *Can you pick up packages from this parcel locker?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You can pick up packages from this parcel locker* corresponds with `parcel_pickup=yes`
|
||||
- *You <b>can't</b> pick up packages from this parcel locker* corresponds with `parcel_pickup=no`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `amenity=parcel_locker`
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Filters
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
id | question | osmTags
|
||||
---- | ---------- | ---------
|
||||
open_now.0 | Open now | _isOpen=yes
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/parcel_lockers/parcel_lockers.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/parcel_lockers/parcel_lockers.json)
|
241
Docs/Layers/parking.md
Normal file
241
Docs/Layers/parking.md
Normal file
|
@ -0,0 +1,241 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
parking
|
||||
=========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/parking/parking.svg' height="100px">
|
||||
|
||||
A layer showing car parkings
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **12** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [onwheels](https://mapcomplete.osm.be/onwheels)
|
||||
- [parkings](https://mapcomplete.osm.be/parkings)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
- [transit](https://mapcomplete.osm.be/transit)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<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) | [0](https://wiki.openstreetmap.org/wiki/Tag:capacity:disabled%3D0)
|
||||
[<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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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 `location=underground`
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the ground floor* corresponds with `level=0`
|
||||
- *Located on the ground floor* corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- *Located on the first floor* corresponds with `level=1`
|
||||
- *Located on the first basement level* corresponds with `level=-1`
|
||||
|
||||
|
||||
|
||||
|
||||
### parking-type
|
||||
|
||||
|
||||
|
||||
The question is *What kind of parking is this?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This is a surface parking lot* corresponds with `parking=surface`
|
||||
- *This is a parking bay next to a street* corresponds with `parking=street_side`
|
||||
- *This is an underground parking garage* corresponds with `parking=underground`
|
||||
- *This is a multi-storey parking garage* corresponds with `parking=multi-storey`
|
||||
- *This is a rooftop parking deck* corresponds with `parking=rooftop`
|
||||
- *This is a lane for parking on the road* corresponds with `parking=lane`
|
||||
- *This is parking covered by carports* corresponds with `parking=carports`
|
||||
- *This a parking consisting of garage boxes* corresponds with `parking=garage_boxes`
|
||||
- *This is a parking on a layby* corresponds with `parking=layby`
|
||||
- *This is a parking consisting of sheds* corresponds with `parking=sheds`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 `capacity:disabled=yes`
|
||||
- This option cannot be chosen as answer
|
||||
- *There are no disabled parking spots* corresponds with `capacity:disabled=no`
|
||||
- This option cannot be chosen as answer
|
||||
- *There are no disabled parking spots* corresponds with `capacity:disabled=0`
|
||||
|
||||
|
||||
|
||||
|
||||
### 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`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### move-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete-button
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/parking/parking.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/parking/parking.json)
|
177
Docs/Layers/parking_spaces.md
Normal file
177
Docs/Layers/parking_spaces.md
Normal file
|
@ -0,0 +1,177 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
parking_spaces
|
||||
================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/parking_spaces/parking_space.svg' height="100px">
|
||||
|
||||
Layer showing individual parking spaces.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **19** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [onwheels](https://mapcomplete.osm.be/onwheels)
|
||||
- [parkings](https://mapcomplete.osm.be/parkings)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/parking_space#values) [parking_space](https://wiki.openstreetmap.org/wiki/Key:parking_space) | Multiple choice | [normal](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Dnormal) [disabled](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Ddisabled) [private](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Dprivate) [charging](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Dcharging) [delivery](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Ddelivery) [hgv](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Dhgv) [caravan](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Dcaravan) [bus](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Dbus) [motorcycle](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Dmotorcycle) [parent](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Dparent) [staff](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Dstaff) [taxi](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Dtaxi) [trailer](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Dtrailer) [car_sharing](https://wiki.openstreetmap.org/wiki/Tag:parking_space%3Dcar_sharing)
|
||||
[<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) | Multiple choice | [1](https://wiki.openstreetmap.org/wiki/Tag:capacity%3D1)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### type
|
||||
|
||||
|
||||
|
||||
The question is *What kind of parking space is this?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This is a normal parking space.* corresponds with ``
|
||||
- This option cannot be chosen as answer
|
||||
- *This is a normal parking space.* corresponds with `parking_space=normal`
|
||||
- *This is a disabled parking space.* corresponds with `parking_space=disabled`
|
||||
- *This is a private parking space.* corresponds with `parking_space=private`
|
||||
- *This is parking space reserved for charging vehicles.* corresponds with `parking_space=charging`
|
||||
- *This is parking space reserved for deliveries.* corresponds with `parking_space=delivery`
|
||||
- *This is parking space reserved for heavy goods vehicles.* corresponds with `parking_space=hgv`
|
||||
- *This is parking space reserved for caravans or RVs.* corresponds with `parking_space=caravan`
|
||||
- *This is parking space reserved for buses.* corresponds with `parking_space=bus`
|
||||
- *This is parking space reserved for motorcycles.* corresponds with `parking_space=motorcycle`
|
||||
- *This is a parking space reserved for parents with children.* corresponds with `parking_space=parent`
|
||||
- *This is a parking space reserved for staff.* corresponds with `parking_space=staff`
|
||||
- *This is a parking space reserved for taxis.* corresponds with `parking_space=taxi`
|
||||
- *This is a parking space reserved for vehicles towing a trailer.* corresponds with `parking_space=trailer`
|
||||
- *This is a parking space reserved for car sharing.* corresponds with `parking_space=car_sharing`
|
||||
|
||||
|
||||
|
||||
|
||||
### capacity
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This parking space has 1 space.* corresponds with `capacity=1`
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/parking_spaces/parking_spaces.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/parking_spaces/parking_spaces.json)
|
228
Docs/Layers/parking_ticket_machine.md
Normal file
228
Docs/Layers/parking_ticket_machine.md
Normal file
|
@ -0,0 +1,228 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
parking_ticket_machine
|
||||
========================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/square:white;./assets/layers/parking_ticket_machine/parking_tickets.svg' height="100px">
|
||||
|
||||
Layer with parking ticket machines to pay for parking.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **16** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [parkings](https://mapcomplete.osm.be/parkings)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/payment:coins:denominations#values) [payment:coins:denominations](https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations) | Multiple choice | [0.01 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.01 EUR) [0.02 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.02 EUR) [0.05 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 EUR) [0.10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 EUR) [0.20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 EUR) [0.50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 EUR) [1 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 EUR) [2 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 EUR)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/payment:notes:denominations#values) [payment:notes:denominations](https://wiki.openstreetmap.org/wiki/Key:payment:notes:denominations) | Multiple choice | [5 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D5 EUR) [10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D10 EUR) [20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D20 EUR) [50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D50 EUR) [100 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D100 EUR) [200 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D200 EUR) [500 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D500 EUR)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) |
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### payment-options-split
|
||||
|
||||
|
||||
|
||||
The question is *Which methods of payment are accepted here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *Cash is accepted here* corresponds with `payment:cash=yes`
|
||||
- This option cannot be chosen as answer
|
||||
- Unselecting this answer will add
|
||||
- *Payment cards are accepted here* corresponds with `payment:cards=yes`
|
||||
- This option cannot be chosen as answer
|
||||
- Unselecting this answer will add
|
||||
- *Payment by QR-code is possible here* corresponds with `payment:qr_code=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:qr_code' target='_blank'>payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:qr_code%3Dno' target='_blank'>no</a>
|
||||
- *Coins are accepted here* corresponds with `payment:coins=yes`
|
||||
- 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>
|
||||
- *Bank notes are accepted here* corresponds with `payment:notes=yes`
|
||||
- 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>
|
||||
- *Debit cards are accepted here* corresponds with `payment:debit_cards=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:debit_cards' target='_blank'>payment:debit_cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:debit_cards%3Dno' target='_blank'>no</a>
|
||||
- *Credit cards are accepted here* corresponds with `payment:credit_cards=yes`
|
||||
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:credit_cards' target='_blank'>payment:credit_cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:credit_cards%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### denominations-coins
|
||||
|
||||
|
||||
|
||||
The question is *What coins can you use to pay here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *1 cent coins are accepted* corresponds with `payment:coins:denominations=0.01 EUR`
|
||||
- *2 cent coins are accepted* corresponds with `payment:coins:denominations=0.02 EUR`
|
||||
- *5 cent coins are accepted* corresponds with `payment:coins:denominations=0.05 EUR`
|
||||
- *10 cent coins are accepted* corresponds with `payment:coins:denominations=0.10 EUR`
|
||||
- *20 cent coins are accepted* corresponds with `payment:coins:denominations=0.20 EUR`
|
||||
- *50 cent coins are accepted* corresponds with `payment:coins:denominations=0.50 EUR`
|
||||
- *1 euro coins are accepted* corresponds with `payment:coins:denominations=1 EUR`
|
||||
- *2 euro coins are accepted* corresponds with `payment:coins:denominations=2 EUR`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `payment:coins=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk`
|
||||
|
||||
|
||||
|
||||
### denominations-notes
|
||||
|
||||
|
||||
|
||||
The question is *what notes can you use to pay here?*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *5 euro notes are accepted* corresponds with `payment:notes:denominations=5 EUR`
|
||||
- *10 euro notes are accepted* corresponds with `payment:notes:denominations=10 EUR`
|
||||
- *20 euro notes are accepted* corresponds with `payment:notes:denominations=20 EUR`
|
||||
- *50 euro notes are accepted* corresponds with `payment:notes:denominations=50 EUR`
|
||||
- *100 euro notes are accepted* corresponds with `payment:notes:denominations=100 EUR`
|
||||
- *200 euro notes are accepted* corresponds with `payment:notes:denominations=200 EUR`
|
||||
- *500 euro notes are accepted* corresponds with `payment:notes:denominations=500 EUR`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `payment:notes=yes|payment:cash=yes&_country=at|_country=be|_country=cy|_country=de|_country=ee|_country=es|_country=fi|_country=fr|_country=gr|_country=hr|_country=ie|_country=it|_country=lt|_country=lu|_country=lv|_country=mt|_country=nl|_country=pt|_country=si|_country=sk`
|
||||
|
||||
|
||||
|
||||
### ref
|
||||
|
||||
|
||||
|
||||
The question is *What is the reference number of this parking ticket machine?*
|
||||
|
||||
This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref)
|
||||
|
||||
This is rendered with `This parking ticket machine has the reference number {ref}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *This parking ticket machine has no reference number* corresponds with `noref=yes`
|
||||
|
||||
|
||||
|
||||
|
||||
### leftover-questions
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/parking_ticket_machine/parking_ticket_machine.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/parking_ticket_machine/parking_ticket_machine.json)
|
205
Docs/Layers/parks_and_forests_without_etymology.md
Normal file
205
Docs/Layers/parks_and_forests_without_etymology.md
Normal file
|
@ -0,0 +1,205 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
parks_and_forests_without_etymology
|
||||
=====================================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/pin:#05d7fcaa' height="100px">
|
||||
|
||||
All objects which have an etymology known
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is shown at zoomlevel **18** and higher
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [etymology](https://mapcomplete.osm.be/etymology)
|
||||
|
||||
|
||||
This is a special layer - data is not sourced from OpenStreetMap
|
||||
|
||||
|
||||
|
||||
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/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name:etymology:wikidata#values) [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name:etymology#values) [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology) | [string](../SpecialInputElements.md#string) | [unknown](https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown)
|
||||
|
||||
|
||||
|
||||
|
||||
### just_created
|
||||
|
||||
|
||||
|
||||
This element shows a 'thank you' that the contributor has recently created this element
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||
|
||||
|
||||
|
||||
### etymology-images-from-wikipedia
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### wikipedia-etymology
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### zoeken op inventaris onroerend erfgoed
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_country=be`
|
||||
|
||||
|
||||
|
||||
### simple etymology
|
||||
|
||||
|
||||
|
||||
The question is *What is this object named after?*
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- *The origin of this name is unknown in all literature* corresponds with `name:etymology=unknown`
|
||||
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
Show the images block at this location
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### street-name-sign-image
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### minimap
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### etymology_multi_apply
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### wikipedia
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `wikidata~.+`
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||
|
||||
|
||||
|
||||
### all-tags
|
||||
|
||||
|
||||
|
||||
This tagrendering has no question and is thus read-only
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/etymology/etymology.json)
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue