forked from MapComplete/MapComplete
Merge branch 'develop' into post-partner
This commit is contained in:
commit
dcb44ce864
1189 changed files with 544569 additions and 114908 deletions
|
@ -1,16 +0,0 @@
|
|||
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.187.0/containers/typescript-node/.devcontainer/base.Dockerfile
|
||||
|
||||
# [Choice] Node.js version: 16, 14, 12
|
||||
ARG VARIANT="16-buster"
|
||||
FROM mcr.microsoft.com/vscode/devcontainers/typescript-node:0-${VARIANT}
|
||||
|
||||
# [Optional] Uncomment this section to install additional OS packages.
|
||||
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
||||
# && apt-get -y install --no-install-recommends <your-package-list-here>
|
||||
|
||||
# [Optional] Uncomment if you want to install an additional version of node using nvm
|
||||
# ARG EXTRA_NODE_VERSION=10
|
||||
# RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}"
|
||||
|
||||
# [Optional] Uncomment if you want to install more global node packages
|
||||
# RUN su node -c "npm install -g <your-package-list -here>"
|
|
@ -1,25 +0,0 @@
|
|||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
|
||||
// https://github.com/microsoft/vscode-dev-containers/tree/v0.187.0/containers/typescript-node
|
||||
{
|
||||
"name": "MapComplete",
|
||||
"build": {
|
||||
"dockerfile": "Dockerfile",
|
||||
// Update 'VARIANT' to pick a Node version: 12, 14, 16
|
||||
"args": {
|
||||
"VARIANT": "14"
|
||||
}
|
||||
},
|
||||
// Set *default* container specific settings.json values on container create.
|
||||
"settings": {},
|
||||
// Add the IDs of extensions you want installed when the container is created.
|
||||
"extensions": [],
|
||||
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
||||
"forwardPorts": [
|
||||
1234
|
||||
],
|
||||
// Use 'postCreateCommand' to run commands after the container is created.
|
||||
//"postCreateCommand": "npm run init",
|
||||
|
||||
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
|
||||
"remoteUser": "node"
|
||||
}
|
1
.gitattributes
vendored
1
.gitattributes
vendored
|
@ -1 +0,0 @@
|
|||
*.json merge=json
|
21
.github/actions/setup-and-validate/action.yml
vendored
Normal file
21
.github/actions/setup-and-validate/action.yml
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
name: "Theme Validation"
|
||||
description: "Validate the themes"
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v1.4.6
|
||||
with:
|
||||
node-version: '16'
|
||||
|
||||
- name: install deps
|
||||
run: npm ci
|
||||
shell: bash
|
||||
|
||||
- name: create generated dir
|
||||
run: mkdir ./assets/generated
|
||||
shell: bash
|
||||
|
||||
- name: Prepare deploy
|
||||
run: npm run prepare-deploy
|
||||
shell: bash
|
5
.github/pull_request_template.md
vendored
5
.github/pull_request_template.md
vendored
|
@ -13,6 +13,5 @@ To making merging smooth, please make sure that each of the following conditions
|
|||
|
||||
- [ ] The codebase is GPL-licensed. By opening a pull request, the new theme will be GPL too
|
||||
- [ ] All images are included in the pull request and no images are loaded from an external service (e.g. Wikipedia)
|
||||
- [ ]
|
||||
The [guidelines on how to make your own theme](https://github.com/pietervdvn/MapComplete/blob/master/Docs/Making_Your_Own_Theme.md)
|
||||
are read and followed
|
||||
- [ ] The [guidelines on how to make your own theme](https://github.com/pietervdvn/MapComplete/blob/master/Docs/Making_Your_Own_Theme.md)
|
||||
are read and followed
|
||||
|
|
20
.github/workflows/deploy_pietervdvn.yml
vendored
20
.github/workflows/deploy_pietervdvn.yml
vendored
|
@ -8,24 +8,8 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v1.2.0
|
||||
with:
|
||||
node-version: '16'
|
||||
env:
|
||||
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
|
||||
|
||||
- name: install deps
|
||||
run: npm ci
|
||||
|
||||
- name: create generated dir
|
||||
run: mkdir ./assets/generated
|
||||
|
||||
- name: create stub themes
|
||||
run: "echo '{\"layers\": [], \"themes\": []}' > ./assets/generated/known_layers_and_themes.json"
|
||||
|
||||
- name: Prepare deploy
|
||||
run: npm run prepare-deploy
|
||||
- name: Setup and validate themes
|
||||
uses: ./.github/actions/setup-and-validate
|
||||
|
||||
- name: Clone deployment repo
|
||||
env:
|
||||
|
|
|
@ -10,21 +10,8 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v1.2.0
|
||||
with:
|
||||
node-version: '16'
|
||||
env:
|
||||
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
|
||||
|
||||
- name: install deps
|
||||
run: npm ci
|
||||
|
||||
- name: create generated dir
|
||||
run: mkdir ./assets/generated
|
||||
|
||||
- name: Prepare deploy
|
||||
run: npm run prepare-deploy
|
||||
- name: Setup and validate themes
|
||||
uses: ./.github/actions/setup-and-validate
|
||||
|
||||
- name: Clone deployment repo
|
||||
env:
|
||||
|
|
12
.github/workflows/validate-pr.yml
vendored
Normal file
12
.github/workflows/validate-pr.yml
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
name: Build and validate PR
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Setup and validate themes
|
||||
uses: ./.github/actions/setup-and-validate
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -18,3 +18,4 @@ missing_translations.txt
|
|||
Svg.ts
|
||||
data/
|
||||
Folder.DotSettings.user
|
||||
index_*.ts
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"trailingComma": "es5",
|
||||
"tabWidth": 4,
|
||||
"semi": true,
|
||||
"singleQuote": false
|
||||
}
|
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"files.eol": "\n"
|
||||
}
|
56
404.html
Normal file
56
404.html
Normal file
|
@ -0,0 +1,56 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta content="width=device-width, initial-scale=1.0, user-scalable=no" name="viewport">
|
||||
<link href="./css/mobile.css" rel="stylesheet"/>
|
||||
<link href="./css/tagrendering.css" rel="stylesheet"/>
|
||||
<link href="./css/index-tailwind-output.css" rel="stylesheet"/>
|
||||
<meta content="website" property="og:type">
|
||||
|
||||
<title>MapComplete - page not found</title>
|
||||
<link href="./index.manifest" rel="manifest">
|
||||
<link href="./assets/svg/add.svg" rel="icon" sizes="any" type="image/svg+xml">
|
||||
<meta content="MapComplete - Page not found" property="og:title">
|
||||
<meta content="MapComplete is a platform to visualize OpenStreetMap on a specific topic and to easily contribute data back to it."
|
||||
property="og:description">
|
||||
|
||||
<link href="./assets/generated/svg_mapcomplete_logo512.png" rel="apple-touch-icon" sizes="512x512">
|
||||
<link href="./assets/generated/svg_mapcomplete_logo384.png" rel="apple-touch-icon" sizes="384x384">
|
||||
<link href="./assets/generated/svg_mapcomplete_logo192.png" rel="apple-touch-icon" sizes="192x192">
|
||||
<link href="./assets/generated/svg_mapcomplete_logo180.png" rel="apple-touch-icon" sizes="180x180">
|
||||
<link href="./assets/generated/svg_mapcomplete_logo152.png" rel="apple-touch-icon" sizes="152x152">
|
||||
<link href="./assets/generated/svg_mapcomplete_logo144.png" rel="apple-touch-icon" sizes="144x144">
|
||||
<link href="./assets/generated/svg_mapcomplete_logo128.png" rel="apple-touch-icon" sizes="128x128">
|
||||
<link href="./assets/generated/svg_mapcomplete_logo120.png" rel="apple-touch-icon" sizes="120x120">
|
||||
<link href="./assets/generated/svg_mapcomplete_logo96.png" rel="apple-touch-icon" sizes="96x96">
|
||||
<link href="./assets/generated/svg_mapcomplete_logo72.png" rel="apple-touch-icon" sizes="72x72">
|
||||
|
||||
|
||||
<style>
|
||||
#decoration-desktop img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="decoration-desktop" style="position: fixed; left: 1em; bottom: 1em; width:35vh; height:35vh;">
|
||||
<!-- A nice decoration while loading or on errors -->
|
||||
<!-- DECORATION 0 START -->
|
||||
<img src="./assets/svg/add.svg"/>
|
||||
<!-- DECORATION 0 END -->
|
||||
</div>
|
||||
|
||||
<div class="clutter absolute h-24 left-24 right-24 top-56 text-xl text-center"
|
||||
id="maindiv" style="z-index: 4000">
|
||||
Not found...
|
||||
</div>
|
||||
|
||||
<script src="./notfound.ts"></script>
|
||||
<script async data-goatcounter="https://pietervdvn.goatcounter.com/count" src="//gc.zgo.at/count.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,6 +0,0 @@
|
|||
import CompiledTranslations from "./assets/generated/CompiledTranslations";
|
||||
|
||||
export default class AllTranslationAssets {
|
||||
|
||||
public static t = CompiledTranslations.t;
|
||||
}
|
|
@ -1,10 +1,23 @@
|
|||
Contributing to MapComplete
|
||||
===========================
|
||||
|
||||
Hi! Thanks for checking out how to contribute to MapComplete!
|
||||
|
||||
There are multiple ways to contribute:
|
||||
|
||||
- Translating MapComplete to your own language can be done
|
||||
on [this website](https://hosted.weblate.org/projects/mapcomplete/)
|
||||
- If you encounter a bug, the [issue tracker](https://github.com/pietervdvn/MapComplete/issues) is the place to be
|
||||
- If you want to improve a theme, create a new theme, spot a typo in the repo... the best way is to open a pull request.
|
||||
|
||||
People who stick around and contribute in a meaningful way, _might_ be granted write access to the repository. This is
|
||||
done on a purely subjective basis, e.g. after a few pull requests and if you are a member of the OSM community.
|
||||
|
||||
Rights of contributors
|
||||
======================
|
||||
-----------------------
|
||||
|
||||
If a contributor is quite active within MapComplete, this contributor might be granted access to the main repository.
|
||||
|
||||
If you have access to the repository, you can make a fork of an already existing branch and push this new branch to
|
||||
github. This means that this branch will be _automatically built_ and be **deployed**
|
||||
If you have write access to the repository, you can make a fork of an already existing branch and push this new branch
|
||||
to github. This means that this branch will be _automatically built_ and be **deployed**
|
||||
to `https://pietervdvn.github.io/mc/<branchname>`. You can see the deploy process
|
||||
on [Github Actions](https://github.com/pietervdvn/MapComplete/actions). Don't worry about pushing too much. These
|
||||
deploys are free and totally automatic. They might fail if something is wrong, but this will hinder no-one.
|
||||
|
@ -19,9 +32,9 @@ As a non-admin contributor, you can _not_ make changes to the `master` nor to th
|
|||
soon as master is changed, this is built and deployed on `mapcomplete.osm.be`, which a lot of people use. An error there
|
||||
will cause a lot of grieve.
|
||||
|
||||
A push on `develop` is automatically deployed to [pietervdvn.github.io/mc/develop] and is used by quite some people to.
|
||||
People using this version should know that this is a testing ground for new features and might contain a bug every now
|
||||
and then.
|
||||
A push on `develop` is automatically deployed to [pietervdvn.github.io/mc/develop] which is used by quite some
|
||||
contributors. However, people using this version should know that this is a testing ground for new features and might
|
||||
contain a bug every now and then.
|
||||
|
||||
In other words, to get your theme deployed on the main instances, you'll still have to create a pull request. The
|
||||
maintainers will then doublecheck and pull it in.
|
||||
|
@ -39,4 +52,4 @@ To do this:
|
|||
push to your fork.
|
||||
|
||||
Alternatively, if you don't have any unmerged changes, you can remove your local copy and clone `pietervdvn/MapComplete`
|
||||
again to start fresh.
|
||||
again to start fresh.
|
|
@ -1,115 +0,0 @@
|
|||
import * as known_layers from "../assets/generated/known_layers_and_themes.json"
|
||||
import {Utils} from "../Utils";
|
||||
import LayerConfig from "../Models/ThemeConfig/LayerConfig";
|
||||
import {TagRenderingConfigJson} from "../Models/ThemeConfig/Json/TagRenderingConfigJson";
|
||||
import SharedTagRenderings from "./SharedTagRenderings";
|
||||
import {LayerConfigJson} from "../Models/ThemeConfig/Json/LayerConfigJson";
|
||||
import WithContextLoader from "../Models/ThemeConfig/WithContextLoader";
|
||||
|
||||
export default class AllKnownLayers {
|
||||
|
||||
public static inited = (_ => {
|
||||
WithContextLoader.getKnownTagRenderings = (id => AllKnownLayers.getTagRendering(id))
|
||||
return true
|
||||
})()
|
||||
|
||||
|
||||
// Must be below the list...
|
||||
public static sharedLayers: Map<string, LayerConfig> = AllKnownLayers.getSharedLayers();
|
||||
public static sharedLayersJson: Map<string, any> = AllKnownLayers.getSharedLayersJson();
|
||||
|
||||
|
||||
public static added_by_default: string[] = ["gps_location","gps_location_history", "home_location", "gps_track",]
|
||||
public static no_include: string[] = [ "conflation", "left_right_style"]
|
||||
/**
|
||||
* Layer IDs of layers which have special properties through built-in hooks
|
||||
*/
|
||||
public static priviliged_layers: string[] = [...AllKnownLayers.added_by_default, "type_node",...AllKnownLayers.no_include]
|
||||
|
||||
|
||||
|
||||
private static getSharedLayers(): Map<string, LayerConfig> {
|
||||
const sharedLayers = new Map<string, LayerConfig>();
|
||||
for (const layer of known_layers.layers) {
|
||||
try {
|
||||
// @ts-ignore
|
||||
const parsed = new LayerConfig(layer, "shared_layers")
|
||||
sharedLayers.set(layer.id, parsed);
|
||||
} catch (e) {
|
||||
if (!Utils.runningFromConsole) {
|
||||
console.error("CRITICAL: Could not parse a layer configuration!", layer.id, " due to", e)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for (const layout of known_layers.themes) {
|
||||
for (const layer of layout.layers) {
|
||||
if (typeof layer === "string") {
|
||||
continue;
|
||||
}
|
||||
if (layer.builtin !== undefined) {
|
||||
// This is a builtin layer of which stuff is overridden - skip
|
||||
continue;
|
||||
}
|
||||
try {
|
||||
const parsed = new LayerConfig(layer, "shared_layer_in_theme")
|
||||
sharedLayers.set(layer.id, parsed);
|
||||
sharedLayers[layer.id] = parsed;
|
||||
} catch (e) {
|
||||
if (!Utils.runningFromConsole) {
|
||||
console.error("Could not parse a layer in theme ", layout.id, "due to", e)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return sharedLayers;
|
||||
}
|
||||
|
||||
private static getSharedLayersJson(): Map<string, LayerConfigJson> {
|
||||
const sharedLayers = new Map<string, any>();
|
||||
for (const layer of known_layers.layers) {
|
||||
sharedLayers.set(layer.id, layer);
|
||||
sharedLayers[layer.id] = layer;
|
||||
}
|
||||
return sharedLayers;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the appropriate tagRenderingJSON
|
||||
* Allows to steal them from other layers.
|
||||
* This will add the tags of the layer to the configuration though!
|
||||
* @param renderingId
|
||||
*/
|
||||
static getTagRendering(renderingId: string): TagRenderingConfigJson {
|
||||
if(renderingId.indexOf(".") < 0){
|
||||
return SharedTagRenderings.SharedTagRenderingJson.get(renderingId)
|
||||
}
|
||||
|
||||
const [layerId, id] = renderingId.split(".")
|
||||
const layer = AllKnownLayers.getSharedLayersJson().get(layerId)
|
||||
if(layer === undefined){
|
||||
if(Utils.runningFromConsole){
|
||||
// Probably generating the layer overview
|
||||
return <TagRenderingConfigJson> {
|
||||
id: "dummy"
|
||||
}
|
||||
}
|
||||
throw "Builtin layer "+layerId+" not found"
|
||||
}
|
||||
const renderings = layer?.tagRenderings ?? []
|
||||
for (const rendering of renderings) {
|
||||
if(rendering["id"] === id){
|
||||
const found = <TagRenderingConfigJson> JSON.parse(JSON.stringify(rendering))
|
||||
if(found.condition === undefined){
|
||||
found.condition = layer.source.osmTags
|
||||
}else{
|
||||
found.condition = {and: [found.condition, layer.source.osmTags]}
|
||||
}
|
||||
return found
|
||||
}
|
||||
}
|
||||
throw `The rendering with id ${id} was not found in the builtin layer ${layerId}. Try one of ${Utils.NoNull(renderings.map(r => r["id"])).join(", ")}`
|
||||
}
|
||||
|
||||
}
|
|
@ -1,4 +1,3 @@
|
|||
import AllKnownLayers from "./AllKnownLayers";
|
||||
import * as known_themes from "../assets/generated/known_layers_and_themes.json"
|
||||
import LayoutConfig from "../Models/ThemeConfig/LayoutConfig";
|
||||
import LayerConfig from "../Models/ThemeConfig/LayerConfig";
|
||||
|
@ -6,12 +5,17 @@ import BaseUIElement from "../UI/BaseUIElement";
|
|||
import Combine from "../UI/Base/Combine";
|
||||
import Title from "../UI/Base/Title";
|
||||
import List from "../UI/Base/List";
|
||||
import DependencyCalculator from "../Models/ThemeConfig/DependencyCalculator";
|
||||
import Constants from "../Models/Constants";
|
||||
import {Utils} from "../Utils";
|
||||
import Link from "../UI/Base/Link";
|
||||
import {LayoutConfigJson} from "../Models/ThemeConfig/Json/LayoutConfigJson";
|
||||
|
||||
export class AllKnownLayouts {
|
||||
|
||||
|
||||
public static allKnownLayouts: Map<string, LayoutConfig> = AllKnownLayouts.AllLayouts();
|
||||
public static layoutsList: LayoutConfig[] = AllKnownLayouts.GenerateOrderedList(AllKnownLayouts.allKnownLayouts);
|
||||
// Must be below the list...
|
||||
private static sharedLayers: Map<string, LayerConfig> = AllKnownLayouts.getSharedLayers();
|
||||
|
||||
public static AllPublicLayers() {
|
||||
const allLayers: LayerConfig[] = []
|
||||
|
@ -33,21 +37,23 @@ export class AllKnownLayouts {
|
|||
return allLayers
|
||||
}
|
||||
|
||||
public static GenLayerOverviewText(): BaseUIElement {
|
||||
for (const id of AllKnownLayers.priviliged_layers) {
|
||||
if (!AllKnownLayers.sharedLayers.has(id)) {
|
||||
throw "Priviliged layer definition not found: " + id
|
||||
}
|
||||
}
|
||||
const allLayers: LayerConfig[] = Array.from(AllKnownLayers.sharedLayers.values())
|
||||
public static GenOverviewsForSingleLayer(callback: (layer: LayerConfig, element: BaseUIElement) => void): void {
|
||||
const allLayers: LayerConfig[] = Array.from(AllKnownLayouts.sharedLayers.values())
|
||||
.filter(layer => Constants.priviliged_layers.indexOf(layer.id) < 0)
|
||||
|
||||
const builtinLayerIds: Set<string> = new Set<string>()
|
||||
allLayers.forEach(l => builtinLayerIds.add(l.id))
|
||||
|
||||
const themesPerLayer = new Map<string, string[]>()
|
||||
|
||||
for (const layout of Array.from(AllKnownLayouts.allKnownLayouts.values())) {
|
||||
if(layout.hideFromOverview){
|
||||
if (layout.hideFromOverview) {
|
||||
continue
|
||||
}
|
||||
for (const layer of layout.layers) {
|
||||
if (!builtinLayerIds.has(layer.id)) {
|
||||
continue
|
||||
}
|
||||
if (!themesPerLayer.has(layer.id)) {
|
||||
themesPerLayer.set(layer.id, [])
|
||||
}
|
||||
|
@ -56,75 +62,124 @@ export class AllKnownLayouts {
|
|||
}
|
||||
|
||||
|
||||
let popularLayerCutoff = 2;
|
||||
const popupalLayers = allLayers.filter((layer) => themesPerLayer.get(layer.id)?.length >= 2)
|
||||
.filter(layer => AllKnownLayers.priviliged_layers.indexOf(layer.id) < 0)
|
||||
// Determine the cross-dependencies
|
||||
const layerIsNeededBy: Map<string, string[]> = new Map<string, string[]>()
|
||||
|
||||
for (const layer of allLayers) {
|
||||
for (const dep of DependencyCalculator.getLayerDependencies(layer)) {
|
||||
const dependency = dep.neededLayer
|
||||
if (!layerIsNeededBy.has(dependency)) {
|
||||
layerIsNeededBy.set(dependency, [])
|
||||
}
|
||||
layerIsNeededBy.get(dependency).push(layer.id)
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
allLayers.forEach((layer) => {
|
||||
const element = layer.GenerateDocumentation(themesPerLayer.get(layer.id), layerIsNeededBy, DependencyCalculator.getLayerDependencies(layer))
|
||||
callback(layer, element)
|
||||
})
|
||||
}
|
||||
|
||||
public static GenLayerOverviewText(): BaseUIElement {
|
||||
for (const id of Constants.priviliged_layers) {
|
||||
if (!AllKnownLayouts.sharedLayers.has(id)) {
|
||||
throw "Priviliged layer definition not found: " + id
|
||||
}
|
||||
}
|
||||
|
||||
const allLayers: LayerConfig[] = Array.from(AllKnownLayouts.sharedLayers.values())
|
||||
.filter(layer => Constants.priviliged_layers.indexOf(layer.id) < 0)
|
||||
|
||||
const builtinLayerIds: Set<string> = new Set<string>()
|
||||
allLayers.forEach(l => builtinLayerIds.add(l.id))
|
||||
|
||||
const themesPerLayer = new Map<string, string[]>()
|
||||
|
||||
for (const layout of Array.from(AllKnownLayouts.allKnownLayouts.values())) {
|
||||
for (const layer of layout.layers) {
|
||||
if (!builtinLayerIds.has(layer.id)) {
|
||||
continue
|
||||
}
|
||||
if (!themesPerLayer.has(layer.id)) {
|
||||
themesPerLayer.set(layer.id, [])
|
||||
}
|
||||
themesPerLayer.get(layer.id).push(layout.id)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Determine the cross-dependencies
|
||||
const layerIsNeededBy: Map<string, string[]> = new Map<string, string[]>()
|
||||
|
||||
for (const layer of allLayers) {
|
||||
for (const dep of DependencyCalculator.getLayerDependencies(layer)) {
|
||||
const dependency = dep.neededLayer
|
||||
if (!layerIsNeededBy.has(dependency)) {
|
||||
layerIsNeededBy.set(dependency, [])
|
||||
}
|
||||
layerIsNeededBy.get(dependency).push(layer.id)
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
return new Combine([
|
||||
new Title("Special and other useful layers", 1),
|
||||
"MapComplete has a few data layers available in the theme which have special properties through builtin-hooks. Furthermore, there are some normal layers (which are built from normal Theme-config files) but are so general that they get a mention here.",
|
||||
new Title("Priviliged layers", 1),
|
||||
new List(AllKnownLayers.priviliged_layers.map(id => "[" + id + "](#" + id + ")")),
|
||||
...AllKnownLayers.priviliged_layers
|
||||
.map(id => AllKnownLayers.sharedLayers.get(id))
|
||||
.map((l) => l.GenerateDocumentation(themesPerLayer.get(l.id), AllKnownLayers.added_by_default.indexOf(l.id) >= 0, AllKnownLayers.no_include.indexOf(l.id) < 0)),
|
||||
new Title("Frequently reused layers", 1),
|
||||
"The following layers are used by at least "+popularLayerCutoff+" mapcomplete themes and might be interesting for your custom theme too",
|
||||
new List(popupalLayers.map(layer => "[" + layer.id + "](#" + layer.id + ")")),
|
||||
...popupalLayers.map((layer) => layer.GenerateDocumentation(themesPerLayer.get(layer.id)))
|
||||
new List(Constants.priviliged_layers.map(id => "[" + id + "](#" + id + ")")),
|
||||
...Constants.priviliged_layers
|
||||
.map(id => AllKnownLayouts.sharedLayers.get(id))
|
||||
.map((l) => l.GenerateDocumentation(themesPerLayer.get(l.id), layerIsNeededBy, DependencyCalculator.getLayerDependencies(l), Constants.added_by_default.indexOf(l.id) >= 0, Constants.no_include.indexOf(l.id) < 0)),
|
||||
new Title("Normal layers", 1),
|
||||
"The following layers are included in MapComplete:",
|
||||
new List(Array.from(AllKnownLayouts.sharedLayers.keys()).map(id => new Link(id, "./Layers/" + id + ".md")))
|
||||
])
|
||||
|
||||
|
||||
}
|
||||
|
||||
private static GenerateOrderedList(allKnownLayouts: Map<string, LayoutConfig>): LayoutConfig[] {
|
||||
const keys = ["personal", "cyclofix", "hailhydrant", "bookcases", "toilets", "aed"]
|
||||
const list = []
|
||||
for (const key of keys) {
|
||||
list.push(allKnownLayouts.get(key))
|
||||
}
|
||||
allKnownLayouts.forEach((layout, key) => {
|
||||
if (keys.indexOf(key) < 0) {
|
||||
list.push(layout)
|
||||
private static getSharedLayers(): Map<string, LayerConfig> {
|
||||
const sharedLayers = new Map<string, LayerConfig>();
|
||||
for (const layer of known_themes.layers) {
|
||||
try {
|
||||
// @ts-ignore
|
||||
const parsed = new LayerConfig(layer, "shared_layers")
|
||||
sharedLayers.set(layer.id, parsed);
|
||||
} catch (e) {
|
||||
if (!Utils.runningFromConsole) {
|
||||
console.error("CRITICAL: Could not parse a layer configuration!", layer.id, " due to", e)
|
||||
}
|
||||
}
|
||||
})
|
||||
return list;
|
||||
}
|
||||
|
||||
return sharedLayers;
|
||||
}
|
||||
|
||||
private static AddGhostBikes(layout: LayoutConfig): LayoutConfig {
|
||||
const now = new Date();
|
||||
const m = now.getMonth() + 1;
|
||||
const day = new Date().getDate() + 1;
|
||||
const date = day + "/" + m;
|
||||
if (date === "31/10" || date === "1/11" || date === "2/11") {
|
||||
console.log("The current date is ", date, ", which means we remember our dead")
|
||||
// Around Halloween/Fiesta de muerte/Allerzielen, we remember the dead
|
||||
layout.layers.push(
|
||||
AllKnownLayers.sharedLayers.get("ghost_bike")
|
||||
);
|
||||
|
||||
}
|
||||
return layout;
|
||||
|
||||
private static GenerateOrderedList(allKnownLayouts: Map<string, LayoutConfig>): LayoutConfig[] {
|
||||
const list = []
|
||||
allKnownLayouts.forEach((layout) => {
|
||||
list.push(layout)
|
||||
})
|
||||
return list;
|
||||
}
|
||||
|
||||
private static AllLayouts(): Map<string, LayoutConfig> {
|
||||
const dict: Map<string, LayoutConfig> = new Map();
|
||||
for (const layoutConfigJson of known_themes.themes) {
|
||||
// @ts-ignore
|
||||
const layout = new LayoutConfig(layoutConfigJson, true)
|
||||
|
||||
if (layout.id === "cyclofix") {
|
||||
AllKnownLayouts.AddGhostBikes(layout)
|
||||
}
|
||||
const layout = new LayoutConfig(<LayoutConfigJson> layoutConfigJson, true)
|
||||
dict.set(layout.id, layout)
|
||||
|
||||
for (let i = 0; i < layout.layers.length; i++) {
|
||||
let layer = layout.layers[i];
|
||||
if (typeof (layer) === "string") {
|
||||
layer = layout.layers[i] = AllKnownLayers.sharedLayers.get(layer);
|
||||
layer = AllKnownLayouts.sharedLayers.get(layer);
|
||||
layout.layers[i] = layer
|
||||
if (layer === undefined) {
|
||||
console.log("Defined layers are ", AllKnownLayers.sharedLayers.keys())
|
||||
console.log("Defined layers are ", AllKnownLayouts.sharedLayers.keys())
|
||||
throw `Layer ${layer} was not found or defined - probably a type was made`
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,6 +3,11 @@ import * as icons from "../assets/tagRenderings/icons.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 {
|
||||
|
||||
|
@ -31,17 +36,73 @@ export default class SharedTagRenderings {
|
|||
|
||||
if (!iconsOnly) {
|
||||
for (const key in questions) {
|
||||
if (key === "id") {
|
||||
continue
|
||||
}
|
||||
dict.set(key, <TagRenderingConfigJson>questions[key])
|
||||
}
|
||||
}
|
||||
for (const key in icons) {
|
||||
if (key === "id") {
|
||||
continue
|
||||
}
|
||||
dict.set(key, <TagRenderingConfigJson>icons[key])
|
||||
}
|
||||
|
||||
dict.forEach((value, key) => value.id = 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")
|
||||
}
|
||||
|
||||
}
|
||||
|
|
BIN
Docs/AED-import.nl.png
Normal file
BIN
Docs/AED-import.nl.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 354 KiB |
|
@ -12,7 +12,7 @@ There are no servers for MapComplete, all services are configured by third parti
|
|||
Minimal HTML - Minimal CSS
|
||||
--------------------------
|
||||
|
||||
There is quasi no HTML. Most of the components are generated by TypeScript and attached dynamically. The html is a
|
||||
There is quasi no HTML. Most of the components are generated by TypeScript and attached dynamically. The HTML is a
|
||||
barebones skeleton which serves every theme.
|
||||
|
||||
|
||||
|
@ -23,19 +23,21 @@ Most (but not all) objects in MapComplete get all the state they need as a param
|
|||
the case with most graphical applications, there are quite some dynamical values.
|
||||
|
||||
All values which change regularly are wrapped into
|
||||
a [UIEventSource](https://github.com/pietervdvn/MapComplete/blob/master/Logic/UIEventSource.ts). An UiEventSource is a
|
||||
a [`UIEventSource`](../Logic/UIEventSource.ts). A `UIEventSource` is a
|
||||
wrapper containing a value and offers the possibility to add a callback function which is called every time the value is
|
||||
changed (with setData)
|
||||
changed (with `setData`)
|
||||
|
||||
Furthermore, there are various helper functions, the most widely used one being `map` - generating a new event source
|
||||
with the new value applied. Note that 'map' will also absorb some changes,
|
||||
with the new value applied. Note that `map` will also absorb some changes,
|
||||
e.g. `const someEventSource : UIEventSource<string[]> = ... ; someEventSource.map(list = list.length)` will only trigger
|
||||
when the length of the list has changed.
|
||||
|
||||
An object which receives an UIEventSource is responsible of responding onto changes of this object. This is especially
|
||||
true for UI-components
|
||||
An object which receives a `UIEventSource` is responsible of responding to changes of this object. This is especially
|
||||
true for UI-components.
|
||||
|
||||
UI --```
|
||||
UI
|
||||
--
|
||||
```typescript
|
||||
|
||||
export default class MyComponent {
|
||||
|
||||
|
@ -47,21 +49,21 @@ export default class MyComponent {
|
|||
|
||||
```
|
||||
|
||||
The Graphical User Interface is composed of various UI-elements. For every UI-element, there is a BaseUIElement which creates the actual HTMLElement when needed.
|
||||
The Graphical User Interface is composed of various UI-elements. For every UI-element, there is a `BaseUIElement` which creates the actual `HTMLElement` when needed.
|
||||
|
||||
There are some basic elements, such as:
|
||||
|
||||
- FixedUIElement which shows a fixed, unchangeble element
|
||||
- Img to show an image
|
||||
- Combine which wrap everything given (strings and other elements) in a div
|
||||
- List
|
||||
- `FixedUIElement` which shows a fixed, unchangeble element
|
||||
- `Img` to show an image
|
||||
- `Combine` which wraps everything given (strings and other elements) in a div
|
||||
- `List`
|
||||
|
||||
There is one special component: the VariableUIElement
|
||||
The variableUIElement takes a `UIEventSource<string|BaseUIElement>` and will dynamicaly show whatever the UIEventSource contains at the moment.
|
||||
There is one special component: the `VariableUIElement`
|
||||
The `VariableUIElement` takes a `UIEventSource<string|BaseUIElement>` and will dynamicaly show whatever the `UIEventSource` contains at the moment.
|
||||
|
||||
For example:
|
||||
|
||||
```
|
||||
```typescript
|
||||
|
||||
const src : UIEventSource<string> = ... // E.g. user input, data that will be updated... new VariableUIElement(src)
|
||||
.AttachTo('some-id') // attach it to the html
|
||||
|
@ -78,13 +80,13 @@ To add a translation:
|
|||
2. Find a correct spot for your translation in the tree
|
||||
3. run `npm run generate:translations`
|
||||
4. `import Translations`
|
||||
5. Translations.t.<your-translation>.Clone() is the UIElement offering your translation
|
||||
5. `Translations.t.<your-translation>.Clone()` is the `UIElement` offering your translation
|
||||
|
||||
### Input elements`
|
||||
### Input elements
|
||||
|
||||
Input elements are a special kind of BaseElement and which offer a piece of a form to the user, e.g. a TextField, a Radio button, a dropdown, ...
|
||||
Input elements are a special kind of BaseElement which offer a piece of a form to the user, e.g. a TextField, a Radio button, a dropdown, ...
|
||||
|
||||
The constructor will ask all the parameters to configure them. The actual value can be obtained via `inputElement.GetValue()`, which is a UIEVentSource that will be triggered every time the user changes the input.
|
||||
The constructor will ask all the parameters to configure them. The actual value can be obtained via `inputElement.GetValue()`, which is a `UIEventSource` that will be triggered every time the user changes the input.
|
||||
|
||||
### Advanced elements
|
||||
|
||||
|
@ -92,16 +94,16 @@ There are some components which offer useful functionality:
|
|||
|
||||
|
||||
- The `subtleButton` which is a friendly, big button
|
||||
- The Toggle: `const t = new Toggle( componentA, componentB, source)` is a UIEventSource which shows `componentA` as long as `source` contains `true` and will show `componentB` otherwise.
|
||||
- The Toggle: `const t = new Toggle( componentA, componentB, source)` is a `UIEventSource` which shows `componentA` as long as `source` contains `true` and will show `componentB` otherwise.
|
||||
|
||||
|
||||
### Styling
|
||||
|
||||
Styling is done as much as possible with [TailwindCSS](https://tailwindcss.com/). It contains a ton of utility classes, each of them containing a few rules.
|
||||
|
||||
For exmaple: ` someBaseUIElement.SetClass("flex flex-col border border-black rounded-full")` will set the component to be a flex object, as column, with a black border and pill-shaped.
|
||||
For example: ` someBaseUIElement.SetClass("flex flex-col border border-black rounded-full")` will set the component to be a flex object, as column, with a black border and pill-shaped.
|
||||
|
||||
If tailwind is not enough, `baseUiElement.SetStyle("background: red; someOtherCssRule: abc;")`
|
||||
If Tailwind is not enough, use `baseUiElement.SetStyle("background: red; someOtherCssRule: abc;")`.
|
||||
|
||||
### An example
|
||||
|
||||
|
@ -116,7 +118,7 @@ In the case of different hours, input hours should be too.
|
|||
This can be constructed as following:
|
||||
|
||||
|
||||
```
|
||||
```typescript
|
||||
|
||||
// We construct the dropdown element with values and labelshttps://tailwindcss.com/
|
||||
const isOpened = new Dropdown<string>(Translations.t.is_this_shop_opened_during_holidays,
|
||||
|
@ -145,7 +147,7 @@ If you make a specialized class to offer a certain functionality, you can organi
|
|||
|
||||
1. Create a new class:
|
||||
|
||||
```
|
||||
```typescript
|
||||
|
||||
export default class MyComponent {
|
||||
|
||||
|
@ -160,7 +162,7 @@ export default class MyComponent {
|
|||
2. Construct the needed UI in the constructor
|
||||
|
||||
|
||||
```
|
||||
```typescript
|
||||
|
||||
export default class MyComponent {
|
||||
|
||||
|
@ -180,10 +182,10 @@ export default class MyComponent {
|
|||
|
||||
```
|
||||
|
||||
3. You'll notice that you'll end up with one certain component (in this example the combine) to wrap it all together. Change the class to extend this type of component and use super to wrap it all up:
|
||||
3. You'll notice that you'll end up with one certain component (in this example the combine) to wrap it all together. Change the class to extend this type of component and use `super()` to wrap it all up:
|
||||
|
||||
|
||||
```
|
||||
```typescript
|
||||
|
||||
export default class MyComponent extends Combine {
|
||||
|
||||
|
@ -203,17 +205,17 @@ Assets
|
|||
|
||||
### Themes
|
||||
|
||||
Theme and layer configuration files go into /assets/layers and assets/themes
|
||||
Theme and layer configuration files go into `assets/layers` and `assets/themes`.
|
||||
|
||||
### Images
|
||||
|
||||
Other files (mostly images that are part of the core of mapcomplete) go into 'assets/svg' and are usable with `Svg.image_file_ui()`. Run `npm run generate:images` if you added a new image
|
||||
Other files (mostly images that are part of the core of MapComplete) go into `assets/svg` and are usable with `Svg.image_file_ui()`. Run `npm run generate:images` if you added a new image.
|
||||
|
||||
|
||||
Logic
|
||||
-----
|
||||
|
||||
The last part is the business logic of the application, found in 'Logic'. Actors are small objects which react to UIEventSources to update other eventSources.
|
||||
The last part is the business logic of the application, found in the directory [Logic](../Logic). Actors are small objects which react to `UIEventSources` to update other eventSources.
|
||||
|
||||
State.state is a big singleton object containing a lot of the state of the entire application. That one is a bit a mess
|
||||
`State.state` is a big singleton object containing a lot of the state of the entire application. That one is a bit of a mess.
|
||||
|
||||
|
|
332
Docs/BuiltinIndex.md
Normal file
332
Docs/BuiltinIndex.md
Normal file
|
@ -0,0 +1,332 @@
|
|||
|
||||
|
||||
Index of builtin TagRendering
|
||||
===============================
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [Index of builtin TagRendering](#index-of-builtin-tagrendering)
|
||||
- [Existing builtin tagrenderings](#existing-builtin-tagrenderings)
|
||||
+ [images](#images)
|
||||
+ [website](#website)
|
||||
+ [phone](#phone)
|
||||
+ [email](#email)
|
||||
+ [opening_hours](#opening_hours)
|
||||
+ [description](#description)
|
||||
+ [payment-options](#payment-options)
|
||||
+ [payment-options-advanced](#payment-options-advanced)
|
||||
+ [level](#level)
|
||||
+ [bike_cleaning.bike_cleaning-service:bicycle:cleaning:charge](#bike_cleaningbike_cleaning-service:bicycle:cleaning:charge)
|
||||
+ [wheelchair-access](#wheelchair-access)
|
||||
+ [service:electricity](#serviceelectricity)
|
||||
+ [dog-access](#dog-access)
|
||||
+ [all_tags](#all_tags)
|
||||
+ [questions](#questions)
|
||||
+ [reviews](#reviews)
|
||||
+ [export_as_gpx](#export_as_gpx)
|
||||
+ [minimap](#minimap)
|
||||
+ [wikipedia](#wikipedia)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Existing builtin tagrenderings
|
||||
--------------------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- ambulancestation
|
||||
- artwork
|
||||
- bench
|
||||
- bench_at_pt
|
||||
- bicycle_library
|
||||
- bicycle_tube_vending_machine
|
||||
- bike_cafe
|
||||
- bike_cleaning
|
||||
- bike_parking
|
||||
- bike_repair_station
|
||||
- bike_shop
|
||||
- bike_themed_object
|
||||
- binocular
|
||||
- birdhide
|
||||
- cafe_pub
|
||||
- charging_station
|
||||
- defibrillator
|
||||
- drinking_water
|
||||
- entrance
|
||||
- extinguisher
|
||||
- fire_station
|
||||
- food
|
||||
- ghost_bike
|
||||
- grass_in_parks
|
||||
- hydrant
|
||||
- information_board
|
||||
- map
|
||||
- nature_reserve
|
||||
- observation_tower
|
||||
- parking
|
||||
- picnic_table
|
||||
- play_forest
|
||||
- playground
|
||||
- public_bookcase
|
||||
- shops
|
||||
- slow_roads
|
||||
- sport_pitch
|
||||
- surveillance_camera
|
||||
- toilet
|
||||
- trail
|
||||
- tree_node
|
||||
- viewpoint
|
||||
- village_green
|
||||
- watermill
|
||||
|
||||
|
||||
|
||||
|
||||
### website
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- bicycle_library
|
||||
- bicycle_rental
|
||||
- bike_themed_object
|
||||
- cafe_pub
|
||||
- food
|
||||
- observation_tower
|
||||
|
||||
|
||||
|
||||
|
||||
### phone
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- bicycle_library
|
||||
- bicycle_rental
|
||||
- bike_themed_object
|
||||
- cafe_pub
|
||||
- food
|
||||
|
||||
|
||||
|
||||
|
||||
### email
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- bicycle_library
|
||||
- bicycle_rental
|
||||
- bike_themed_object
|
||||
- cafe_pub
|
||||
- food
|
||||
|
||||
|
||||
|
||||
|
||||
### opening_hours
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- bicycle_library
|
||||
- bicycle_rental
|
||||
- bike_themed_object
|
||||
- cafe_pub
|
||||
- food
|
||||
|
||||
|
||||
|
||||
|
||||
### description
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- bicycle_library
|
||||
- bike_shop
|
||||
- bike_themed_object
|
||||
- toilet
|
||||
|
||||
|
||||
|
||||
|
||||
### payment-options
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- bicycle_rental
|
||||
- cafe_pub
|
||||
- food
|
||||
- observation_tower
|
||||
- shops
|
||||
- toilet
|
||||
|
||||
|
||||
|
||||
|
||||
### payment-options-advanced
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- bicycle_rental
|
||||
- charging_station
|
||||
|
||||
|
||||
|
||||
|
||||
### level
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- bike_repair_station
|
||||
- charging_station
|
||||
- toilet
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_cleaning.bike_cleaning-service:bicycle:cleaning:charge
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- bike_shop
|
||||
|
||||
|
||||
|
||||
|
||||
### wheelchair-access
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- cafe_pub
|
||||
- defibrillator
|
||||
- food
|
||||
- observation_tower
|
||||
|
||||
|
||||
|
||||
|
||||
### service:electricity
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- cafe_pub
|
||||
- food
|
||||
|
||||
|
||||
|
||||
|
||||
### dog-access
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- cafe_pub
|
||||
- food
|
||||
|
||||
|
||||
|
||||
|
||||
### all_tags
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- cluster_style
|
||||
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- etymology
|
||||
- play_forest
|
||||
- playground
|
||||
- shops
|
||||
- sport_pitch
|
||||
|
||||
|
||||
|
||||
|
||||
### reviews
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- food
|
||||
- shops
|
||||
|
||||
|
||||
|
||||
|
||||
### export_as_gpx
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- gps_track
|
||||
|
||||
|
||||
|
||||
|
||||
### minimap
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- gps_track
|
||||
|
||||
|
||||
|
||||
|
||||
### wikipedia
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- nature_reserve
|
||||
- observation_tower
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/*.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/*.json)
|
|
@ -3,234 +3,785 @@
|
|||
Special and other useful layers
|
||||
=================================
|
||||
|
||||
MapComplete has a few data layers available in the theme which have special properties through builtin-hooks. Furthermore, there are some normal layers (which are built from normal Theme-config files) but are so general that they get a mention here.
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [Special and other useful layers](#special-and-other-useful-layers)
|
||||
1. [Priviliged layers](#priviliged-layers)
|
||||
1. [gps_location](#gps_location)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
1. [gps_location_history](#gps_location_history)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
1. [home_location](#home_location)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
1. [gps_track](#gps_track)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [Privacy notice](#privacy-notice)
|
||||
+ [export_as_gpx](#export_as_gpx)
|
||||
+ [minimap](#minimap)
|
||||
+ [delete](#delete)
|
||||
1. [type_node](#type_node)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
1. [note](#note)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [conversation](#conversation)
|
||||
+ [add_image](#add_image)
|
||||
+ [comment](#comment)
|
||||
+ [report-contributor](#report-contributor)
|
||||
+ [report-note](#report-note)
|
||||
1. [import_candidate](#import_candidate)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [all_tags](#all_tags)
|
||||
1. [conflation](#conflation)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
1. [left_right_style](#left_right_style)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
1. [split_point](#split_point)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
1. [current_view](#current_view)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
1. [matchpoint](#matchpoint)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
1. [Normal layers](#normal-layers)
|
||||
|
||||
|
||||
|
||||
MapComplete has a few data layers available in the theme which have special properties through builtin-hooks. Furthermore, there are some normal layers (which are built from normal Theme-config files) but are so general that they get a mention here.
|
||||
|
||||
|
||||
|
||||
Priviliged layers
|
||||
===================
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [gps_location](#gps_location)
|
||||
- [gps_location_history](#gps_location_history)
|
||||
- [home_location](#home_location)
|
||||
- [gps_track](#gps_track)
|
||||
- [type_node](#type_node)
|
||||
- [note](#note)
|
||||
- [import_candidate](#import_candidate)
|
||||
- [conflation](#conflation)
|
||||
- [left_right_style](#left_right_style)
|
||||
|
||||
|
||||
### gps_location
|
||||
- [split_point](#split_point)
|
||||
- [current_view](#current_view)
|
||||
- [matchpoint](#matchpoint)
|
||||
|
||||
|
||||
|
||||
|
||||
gps_location
|
||||
==============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/crosshair:var(--catch-detail-color)' height="100px">
|
||||
|
||||
Meta layer showing the current location of the user. Add this to your theme and override the icon to change the appearance of the current location. The object will always have `id=gps` and will have _all_ the properties included in the [`Coordinates`-object](https://developer.mozilla.org/en-US/docs/Web/API/GeolocationCoordinates) returned by the browser.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This layer is included automatically in every theme. This layer might contain no points**
|
||||
- This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable.
|
||||
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/gps_location/gps_location.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:id' target='_blank'>id</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:id%3Dgps' target='_blank'>gps</a>
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
gps_location_history
|
||||
======================
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Meta layer which contains the previous locations of the user as single points. This is mainly for technical reasons, e.g. to keep match the distance to the modified object
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This layer is included automatically in every theme. This layer might contain no points**
|
||||
- Not clickable by default. If you import this layer in your theme, override `title` to make this clickable
|
||||
- This layer cannot be toggled in the filter view. 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`
|
||||
|
||||
|
||||
### home_location
|
||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/gps_location_history/gps_location_history.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:user:location' target='_blank'>user:location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:user:location%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
home_location
|
||||
===============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/svg/home.svg' height="100px">
|
||||
|
||||
Meta layer showing the home location of the user. The home location can be set in the [profile settings](https://www.openstreetmap.org/profile/edit) of OpenStreetMap.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This layer is included automatically in every theme. This layer might contain no points**
|
||||
- This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable.
|
||||
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/home_location/home_location.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:user:home' target='_blank'>user:home</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:user:home%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
gps_track
|
||||
===========
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Meta layer showing the previous locations of the user as single line. Add this to your theme and override the icon to change the appearance of the current location.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This layer is included automatically in every theme. This layer might contain no points**
|
||||
- Not clickable by default. If you import this layer in your theme, override `title` to make this clickable
|
||||
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
||||
|
||||
- This layer is not visible by default and must be enabled in the filter by the user.
|
||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||
|
||||
### gps_track
|
||||
|
||||
|
||||
|
||||
Meta layer showing the previou locations of the user. Add this to your theme and override the icon to change the appearance of the current location.
|
||||
|
||||
[Go to the source code](../assets/layers/gps_track/gps_track.json)
|
||||
|
||||
|
||||
|
||||
- **This layer is included automatically in every theme. This layer might contain no points**
|
||||
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:id' target='_blank'>id</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:id%3Dlocation_track' target='_blank'>location_track</a>
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Privacy notice
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### export_as_gpx
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### minimap
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### delete
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
type_node
|
||||
===========
|
||||
|
||||
|
||||
### type_node
|
||||
|
||||
|
||||
|
||||
This is a priviliged meta_layer which exports _every_ point in OSM. This only works if zoomed below the point that the full tile is loaded (and not loaded via Overpass). Note that this point will also contain a property `parent_ways` which contains all the ways this node is part of as a list. This is mainly used for extremely specialized themes, which do advanced conflations. Expert use only.
|
||||
|
||||
[Go to the source code](../assets/layers/type_node/type_node.json)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||
|
||||
|
||||
### conflation
|
||||
|
||||
[Go to the source code](../assets/layers/type_node/type_node.json)
|
||||
|
||||
|
||||
|
||||
If the import-button is set to conflate two ways, a preview is shown. This layer defines how this preview is rendered. This layer cannot be included in a theme.
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- id~^node\/.*$
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
note
|
||||
======
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/svg/note.svg' 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)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <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}`
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/note/note.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- id~^..*$
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### 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_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### report-contributor
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### report-note
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
import_candidate
|
||||
==================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/square:red;' height="100px">
|
||||
|
||||
Layer used in the importHelper
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/import_candidate/import_candidate.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### all_tags
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
conflation
|
||||
============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/addSmall:#000' height="100px">
|
||||
|
||||
If the import-button moves OSM points, the imported way points or conflates, a preview is shown. This layer defines how this preview is rendered. This layer cannot be included in a theme.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer can **not** be included in a theme. It is solely used by [special renderings](SpecialRenderings.md) showing a minimap with custom data.
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/conflation/conflation.json)
|
||||
|
||||
|
||||
|
||||
- This layer can **not** be included in a theme. It is solely used by [special renderings](SpecialRenderings.md) showing a minimap with custom data.
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:move' target='_blank'>move</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:move%3Dyes' target='_blank'>yes</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:newpoint' target='_blank'>newpoint</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:newpoint%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
left_right_style
|
||||
==================
|
||||
|
||||
|
||||
### left_right_style
|
||||
|
||||
|
||||
|
||||
Special meta-style which will show one single line, either on the left or on the right depending on the id. This is used in the small popups with left_right roads. Cannot be included in a theme
|
||||
|
||||
[Go to the source code](../assets/layers/left_right_style/left_right_style.json)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer can **not** be included in a theme. It is solely used by [special renderings](SpecialRenderings.md) showing a minimap with custom data.
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/left_right_style/left_right_style.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:id' target='_blank'>id</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:id%3Dleft' target='_blank'>left</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:id' target='_blank'>id</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:id%3Dright' target='_blank'>right</a>
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
split_point
|
||||
=============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/svg/scissors.svg' height="100px">
|
||||
|
||||
Layer rendering the little scissors for the minimap in the 'splitRoadWizard'
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer can **not** be included in a theme. It is solely used by [special renderings](SpecialRenderings.md) showing a minimap with custom data.
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/split_point/split_point.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:_split_point' target='_blank'>_split_point</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_split_point%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
current_view
|
||||
==============
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
A meta-layer which contains one single feature, namely the BBOX of the current map view. This can be used to trigger special actions. If a popup is defined for this layer, this popup will be accessible via an extra button on screen.
|
||||
|
||||
The icon on the button is the default icon of the layer, but can be customized by detecting 'button=yes'.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer can **not** be included in a theme. It is solely used by [special renderings](SpecialRenderings.md) showing a minimap with custom data.
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/current_view/current_view.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:current_view' target='_blank'>current_view</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:current_view%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
matchpoint
|
||||
============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/svg/crosshair-empty.svg' height="100px">
|
||||
|
||||
The default rendering for a locationInput which snaps onto another object
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer can **not** be included in a theme. It is solely used by [special renderings](SpecialRenderings.md) showing a minimap with custom data.
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/matchpoint/matchpoint.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Normal layers
|
||||
===============
|
||||
|
||||
|
||||
|
||||
The following layers are included in MapComplete:
|
||||
|
||||
|
||||
|
||||
- [address](./Layers/address.md)
|
||||
- [ambulancestation](./Layers/ambulancestation.md)
|
||||
- [artwork](./Layers/artwork.md)
|
||||
- [barrier](./Layers/barrier.md)
|
||||
- [bench](./Layers/bench.md)
|
||||
- [bench_at_pt](./Layers/bench_at_pt.md)
|
||||
- [bicycle_library](./Layers/bicycle_library.md)
|
||||
- [bicycle_rental](./Layers/bicycle_rental.md)
|
||||
- [bicycle_tube_vending_machine](./Layers/bicycle_tube_vending_machine.md)
|
||||
- [bike_cafe](./Layers/bike_cafe.md)
|
||||
- [bike_cleaning](./Layers/bike_cleaning.md)
|
||||
- [bike_parking](./Layers/bike_parking.md)
|
||||
- [bike_repair_station](./Layers/bike_repair_station.md)
|
||||
- [bike_shop](./Layers/bike_shop.md)
|
||||
- [bike_themed_object](./Layers/bike_themed_object.md)
|
||||
- [binocular](./Layers/binocular.md)
|
||||
- [birdhide](./Layers/birdhide.md)
|
||||
- [cafe_pub](./Layers/cafe_pub.md)
|
||||
- [charging_station](./Layers/charging_station.md)
|
||||
- [cluster_style](./Layers/cluster_style.md)
|
||||
- [conflation](./Layers/conflation.md)
|
||||
- [crab_address](./Layers/crab_address.md)
|
||||
- [crossings](./Layers/crossings.md)
|
||||
- [current_view](./Layers/current_view.md)
|
||||
- [cycleways_and_roads](./Layers/cycleways_and_roads.md)
|
||||
- [defibrillator](./Layers/defibrillator.md)
|
||||
- [direction](./Layers/direction.md)
|
||||
- [drinking_water](./Layers/drinking_water.md)
|
||||
- [entrance](./Layers/entrance.md)
|
||||
- [etymology](./Layers/etymology.md)
|
||||
- [extinguisher](./Layers/extinguisher.md)
|
||||
- [fire_station](./Layers/fire_station.md)
|
||||
- [food](./Layers/food.md)
|
||||
- [ghost_bike](./Layers/ghost_bike.md)
|
||||
- [gps_location](./Layers/gps_location.md)
|
||||
- [gps_location_history](./Layers/gps_location_history.md)
|
||||
- [gps_track](./Layers/gps_track.md)
|
||||
- [grass_in_parks](./Layers/grass_in_parks.md)
|
||||
- [home_location](./Layers/home_location.md)
|
||||
- [hydrant](./Layers/hydrant.md)
|
||||
- [import_candidate](./Layers/import_candidate.md)
|
||||
- [information_board](./Layers/information_board.md)
|
||||
- [left_right_style](./Layers/left_right_style.md)
|
||||
- [map](./Layers/map.md)
|
||||
- [matchpoint](./Layers/matchpoint.md)
|
||||
- [named_streets](./Layers/named_streets.md)
|
||||
- [nature_reserve](./Layers/nature_reserve.md)
|
||||
- [note](./Layers/note.md)
|
||||
- [note_import](./Layers/note_import.md)
|
||||
- [observation_tower](./Layers/observation_tower.md)
|
||||
- [parking](./Layers/parking.md)
|
||||
- [pedestrian_path](./Layers/pedestrian_path.md)
|
||||
- [picnic_table](./Layers/picnic_table.md)
|
||||
- [play_forest](./Layers/play_forest.md)
|
||||
- [playground](./Layers/playground.md)
|
||||
- [public_bookcase](./Layers/public_bookcase.md)
|
||||
- [shops](./Layers/shops.md)
|
||||
- [slow_roads](./Layers/slow_roads.md)
|
||||
- [split_point](./Layers/split_point.md)
|
||||
- [sport_pitch](./Layers/sport_pitch.md)
|
||||
- [street_lamps](./Layers/street_lamps.md)
|
||||
- [surveillance_camera](./Layers/surveillance_camera.md)
|
||||
- [toilet](./Layers/toilet.md)
|
||||
- [trail](./Layers/trail.md)
|
||||
- [tree_node](./Layers/tree_node.md)
|
||||
- [type_node](./Layers/type_node.md)
|
||||
- [viewpoint](./Layers/viewpoint.md)
|
||||
- [village_green](./Layers/village_green.md)
|
||||
- [visitor_information_centre](./Layers/visitor_information_centre.md)
|
||||
- [walls_and_buildings](./Layers/walls_and_buildings.md)
|
||||
- [waste_basket](./Layers/waste_basket.md)
|
||||
- [watermill](./Layers/watermill.md)
|
||||
|
||||
|
||||
Frequently reused layers
|
||||
==========================
|
||||
|
||||
The following layers are used by at least 2 mapcomplete themes and might be interesting for your custom theme too
|
||||
|
||||
- [bicycle_library](#bicycle_library)
|
||||
- [drinking_water](#drinking_water)
|
||||
- [food](#food)
|
||||
- [map](#map)
|
||||
- [all_streets](#all_streets)
|
||||
|
||||
|
||||
### bicycle_library
|
||||
|
||||
|
||||
|
||||
A facility where bicycles can be lent for longer period of times
|
||||
|
||||
[Go to the source code](../assets/layers/bicycle_library/bicycle_library.json)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [bicyclelib](https://mapcomplete.osm.be/bicyclelib)
|
||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||
|
||||
|
||||
### drinking_water
|
||||
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/drinking_water/drinking_water.json)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||
- [drinking_water](https://mapcomplete.osm.be/drinking_water)
|
||||
- [nature](https://mapcomplete.osm.be/nature)
|
||||
|
||||
|
||||
### food
|
||||
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/food/food.json)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [food](https://mapcomplete.osm.be/food)
|
||||
- [fritures](https://mapcomplete.osm.be/fritures)
|
||||
|
||||
|
||||
### map
|
||||
|
||||
|
||||
|
||||
A map, meant for tourists which is permanently installed in the public space
|
||||
|
||||
[Go to the source code](../assets/layers/map/map.json)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [maps](https://mapcomplete.osm.be/maps)
|
||||
- [nature](https://mapcomplete.osm.be/nature)
|
||||
|
||||
|
||||
### all_streets
|
||||
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/all_streets/all_streets.json)
|
||||
|
||||
|
||||
|
||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [cyclestreets](https://mapcomplete.osm.be/cyclestreets)
|
||||
- [street_lighting](https://mapcomplete.osm.be/street_lighting)
|
||||
|
||||
|
||||
This document is autogenerated from AllKnownLayers.ts
|
||||
This document is autogenerated from [Customizations/AllKnownLayouts.ts](https://github.com/pietervdvn/MapComplete/blob/develop/Customizations/AllKnownLayouts.ts)
|
381
Docs/BuiltinQuestions.md
Normal file
381
Docs/BuiltinQuestions.md
Normal file
|
@ -0,0 +1,381 @@
|
|||
|
||||
|
||||
Builtin questions
|
||||
===================
|
||||
|
||||
|
||||
|
||||
The following items can be easily reused in your layers
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [Builtin questions](#builtin-questions)
|
||||
+ [questions](#questions)
|
||||
+ [images](#images)
|
||||
+ [export_as_gpx](#export_as_gpx)
|
||||
+ [wikipedia](#wikipedia)
|
||||
+ [reviews](#reviews)
|
||||
+ [minimap](#minimap)
|
||||
+ [phone](#phone)
|
||||
+ [osmlink](#osmlink)
|
||||
+ [wikipedialink](#wikipedialink)
|
||||
+ [email](#email)
|
||||
+ [website](#website)
|
||||
+ [wheelchair-access](#wheelchair-access)
|
||||
+ [dog-access](#dog-access)
|
||||
+ [description](#description)
|
||||
+ [opening_hours](#opening_hours)
|
||||
+ [service:electricity](#serviceelectricity)
|
||||
+ [payment-options](#payment-options)
|
||||
+ [payment-options-advanced](#payment-options-advanced)
|
||||
+ [last_edit](#last_edit)
|
||||
+ [all_tags](#all_tags)
|
||||
+ [level](#level)
|
||||
+ [default](#default)
|
||||
+ [defaults](#defaults)
|
||||
+ [isOpen](#isopen)
|
||||
+ [phonelink](#phonelink)
|
||||
+ [emaillink](#emaillink)
|
||||
+ [sharelink](#sharelink)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
Read-only tagrendering
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
{image_carousel()}{image_upload()}
|
||||
|
||||
Read-only tagrendering
|
||||
|
||||
|
||||
|
||||
### export_as_gpx
|
||||
|
||||
|
||||
|
||||
{export_as_gpx()}
|
||||
|
||||
Read-only tagrendering
|
||||
|
||||
|
||||
|
||||
### wikipedia
|
||||
|
||||
|
||||
|
||||
{wikipedia():max-height:25rem}
|
||||
|
||||
What is the corresponding Wikidata entity?
|
||||
|
||||
|
||||
|
||||
- No Wikipedia page has been linked yet
|
||||
|
||||
|
||||
|
||||
|
||||
### reviews
|
||||
|
||||
|
||||
|
||||
{reviews()}
|
||||
|
||||
Read-only tagrendering
|
||||
|
||||
|
||||
|
||||
### minimap
|
||||
|
||||
|
||||
|
||||
{minimap(18, id): width:100%; height:8rem; border-radius:2rem; overflow: hidden; pointer-events: none;}
|
||||
|
||||
Read-only tagrendering
|
||||
|
||||
|
||||
|
||||
### phone
|
||||
|
||||
|
||||
|
||||
<a href='tel:{phone}'>{phone}</a>
|
||||
|
||||
What is the phone number of {name}?
|
||||
|
||||
|
||||
|
||||
- <a href='tel:{contact:phone}'>{contact:phone}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### osmlink
|
||||
|
||||
|
||||
|
||||
<a href='https://openstreetmap.org/{id}' target='_blank'><img src='./assets/svg/osm-logo-us.svg'/></a>
|
||||
|
||||
Read-only tagrendering
|
||||
|
||||
|
||||
|
||||
-
|
||||
- <a href='{_backend}/{id}' target='_blank'><img src='./assets/svg/osm-logo-us.svg'/></a>
|
||||
|
||||
|
||||
|
||||
|
||||
### wikipedialink
|
||||
|
||||
|
||||
|
||||
<a href='https://wikipedia.org/wiki/{wikipedia}' target='_blank'><img src='./assets/svg/wikipedia.svg' alt='WP'/></a>
|
||||
|
||||
Read-only tagrendering
|
||||
|
||||
|
||||
|
||||
- <a href='https://www.wikidata.org/wiki/{wikidata}' target='_blank'><img src='./assets/svg/wikidata.svg' alt='WD'/></a>
|
||||
|
||||
|
||||
|
||||
|
||||
### email
|
||||
|
||||
|
||||
|
||||
<a href='mailto:{email}' target='_blank'>{email}</a>
|
||||
|
||||
What is the email address of {name}?
|
||||
|
||||
|
||||
|
||||
- <a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### website
|
||||
|
||||
|
||||
|
||||
<a href='{website}' target='_blank'>{website}</a>
|
||||
|
||||
What is the website of {name}?
|
||||
|
||||
|
||||
|
||||
- <a href='{contact:website}' target='_blank'>{contact:website}</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### wheelchair-access
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
### dog-access
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
### description
|
||||
|
||||
|
||||
|
||||
{description}
|
||||
|
||||
Is there still something relevant you couldn't give in the previous questions? Add it here.<br/><span style='font-size: small'>Don't repeat already stated facts</span>
|
||||
|
||||
|
||||
|
||||
### opening_hours
|
||||
|
||||
|
||||
|
||||
<h3>Opening hours</h3>{opening_hours_table(opening_hours)}
|
||||
|
||||
What are the opening hours of {name}?
|
||||
|
||||
|
||||
|
||||
### service:electricity
|
||||
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
### payment-options
|
||||
|
||||
|
||||
|
||||
Which methods of payment are accepted here?
|
||||
|
||||
|
||||
|
||||
- Cash is accepted here
|
||||
- Payment cards are accepted here
|
||||
|
||||
|
||||
|
||||
|
||||
### payment-options-advanced
|
||||
|
||||
|
||||
|
||||
Which methods of payment are accepted here?
|
||||
|
||||
|
||||
|
||||
- Cash is accepted here
|
||||
- Payment cards are accepted here
|
||||
- Payment is done using a dedicated app
|
||||
- Payment is done using a membership card
|
||||
|
||||
|
||||
|
||||
|
||||
### last_edit
|
||||
|
||||
|
||||
|
||||
<div class='subtle' style='font-size: small; margin-top: 2em; margin-bottom: 0.5em;'><a href='https://www.openStreetMap.org/changeset/{_last_edit:changeset}' target='_blank'>Last edited on {_last_edit:timestamp}</a> by <a href='https://www.openStreetMap.org/user/{_last_edit:contributor}' target='_blank'>{_last_edit:contributor}</a></div>
|
||||
|
||||
Read-only tagrendering
|
||||
|
||||
|
||||
|
||||
### all_tags
|
||||
|
||||
|
||||
|
||||
{all_tags()}
|
||||
|
||||
Read-only tagrendering
|
||||
|
||||
|
||||
|
||||
### level
|
||||
|
||||
|
||||
|
||||
Located on the {level}th floor
|
||||
|
||||
On what level is this feature located?
|
||||
|
||||
|
||||
|
||||
- Located underground
|
||||
- Located on the ground floor
|
||||
- Located on the ground floor
|
||||
- Located on the first floor
|
||||
- Located on the first basement level
|
||||
|
||||
|
||||
|
||||
|
||||
### default
|
||||
|
||||
|
||||
|
||||
Read-only tagrendering
|
||||
|
||||
|
||||
|
||||
### defaults
|
||||
|
||||
|
||||
|
||||
Read-only tagrendering
|
||||
|
||||
|
||||
|
||||
### isOpen
|
||||
|
||||
|
||||
|
||||
Read-only tagrendering
|
||||
|
||||
|
||||
|
||||
- clock:#0f0;ring:#0f0
|
||||
- circle:#f00;clock:#fff
|
||||
- clock:#ff0;ring:#ff0
|
||||
- circle:#f0f;clock:#fff
|
||||
|
||||
|
||||
|
||||
|
||||
### phonelink
|
||||
|
||||
|
||||
|
||||
<a href='tel:{phone}'><img src='./assets/svg/phone.svg'/></a>
|
||||
|
||||
Read-only tagrendering
|
||||
|
||||
|
||||
|
||||
### emaillink
|
||||
|
||||
|
||||
|
||||
<a href='mailto:{email}'><img src='./assets/svg/send_email.svg'/></a>
|
||||
|
||||
Read-only tagrendering
|
||||
|
||||
|
||||
|
||||
### sharelink
|
||||
|
||||
|
||||
|
||||
{share_link()}
|
||||
|
||||
Read-only tagrendering
|
||||
|
||||
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)
|
|
@ -5,6 +5,32 @@
|
|||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [Metatags](#metatags)
|
||||
- [Metatags calculated by MapComplete](#metatags-calculated-by-mapcomplete)
|
||||
+ [_lat, _lon](#_lat,-_lon)
|
||||
+ [_layer](#_layer)
|
||||
+ [_surface, _surface:ha](#_surface,-_surfaceha)
|
||||
+ [_length, _length:km](#_length,-_lengthkm)
|
||||
+ [Theme-defined keys](#theme-defined-keys)
|
||||
+ [_country](#_country)
|
||||
+ [_isOpen](#_isopen)
|
||||
+ [_direction:numerical, _direction:leftright](#_directionnumerical,-_direction:leftright)
|
||||
+ [_now:date, _now:datetime, _loaded:date, _loaded:_datetime](#_nowdate,-_now:datetime,-_loaded:date,-_loaded:_datetime)
|
||||
+ [_last_edit:contributor, _last_edit:contributor:uid, _last_edit:changeset, _last_edit:timestamp, _version_number, _backend](#_last_editcontributor,-_last_edit:contributor:uid,-_last_edit:changeset,-_last_edit:timestamp,-_version_number,-_backend)
|
||||
+ [sidewalk:left, sidewalk:right, generic_key:left:property, generic_key:right:property](#sidewalkleft,-sidewalk:right,-generic_key:left:property,-generic_key:right:property)
|
||||
+ [_geometry:type](#_geometrytype)
|
||||
+ [distanceTo](#distanceto)
|
||||
+ [overlapWith](#overlapwith)
|
||||
+ [intersectionsWith](#intersectionswith)
|
||||
+ [closest](#closest)
|
||||
+ [closestn](#closestn)
|
||||
+ [memberships](#memberships)
|
||||
+ [get](#get)
|
||||
|
||||
|
||||
|
||||
Metatags are extra tags available, in order to display more data or to give better questions.
|
||||
|
||||
The are calculated automatically on every feature when the data arrives in the webbrowser. This document gives an overview of the available metatags.
|
||||
|
@ -82,7 +108,7 @@ The country code of the property (with latlon2country)
|
|||
|
||||
|
||||
|
||||
### _isOpen, _isOpen:description
|
||||
### _isOpen
|
||||
|
||||
|
||||
|
||||
|
@ -132,6 +158,16 @@ Rewrites tags from 'generic_key:both:property' as 'generic_key:left:property' an
|
|||
|
||||
|
||||
|
||||
### _geometry:type
|
||||
|
||||
|
||||
|
||||
Adds the geometry type as property. This is identical to the GoeJson geometry type and is one of `Point`,`LineString`, `Polygon` and exceptionally `MultiPolygon` or `MultiLineString`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Calculating tags with Javascript
|
||||
----------------------------------
|
||||
|
||||
|
@ -182,6 +218,7 @@ Some advanced functions are available on **feat** as well:
|
|||
|
||||
- [distanceTo](#distanceTo)
|
||||
- [overlapWith](#overlapWith)
|
||||
- [intersectionsWith](#intersectionsWith)
|
||||
- [closest](#closest)
|
||||
- [closestn](#closestn)
|
||||
- [memberships](#memberships)
|
||||
|
@ -190,7 +227,7 @@ Some advanced functions are available on **feat** as well:
|
|||
|
||||
### distanceTo
|
||||
|
||||
Calculates the distance between the feature and a specified point in kilometer. The input should either be a pair of coordinates, a geojson feature or the ID of an object
|
||||
Calculates the distance between the feature and a specified point in meter. The input should either be a pair of coordinates, a geojson feature or the ID of an object
|
||||
|
||||
0. feature OR featureID OR longitude
|
||||
1. undefined OR latitude
|
||||
|
@ -205,7 +242,19 @@ The resulting list is sorted in descending order by overlap. The feature with th
|
|||
|
||||
For example to get all objects which overlap or embed from a layer, use `_contained_climbing_routes_properties=feat.overlapWith('climbing_route')`
|
||||
|
||||
0. ...layerIds - one or more layer ids of the layer from which every feature is checked for overlap)
|
||||
0. ...layerIds - one or more layer ids of the layer from which every feature is checked for overlap)
|
||||
|
||||
|
||||
### intersectionsWith
|
||||
|
||||
Gives the intersection points with selected features. Only works with (Multi)Polygons and LineStrings.
|
||||
|
||||
Returns a `{feat: GeoJson, intersections: [number,number][]}` where `feat` is the full, original feature. This list is in random order.
|
||||
|
||||
If the current feature is a point, this function will return an empty list.
|
||||
Points from other layers are ignored - even if the points are parts of the current linestring.
|
||||
|
||||
0. ...layerIds - one or more layer ids of the layer from which every feature is checked for intersection)
|
||||
|
||||
|
||||
### closest
|
||||
|
@ -243,4 +292,4 @@ For example: `_part_of_walking_routes=feat.memberships().map(r => r.relation.tag
|
|||
0. key
|
||||
|
||||
|
||||
This document is autogenerated from SimpleMetaTagger, ExtraFunction
|
||||
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)
|
|
@ -33,7 +33,6 @@ To develop and build MapComplete, you
|
|||
- You can [use asdf to manage your runtime versions](https://asdf-vm.com/).
|
||||
0. Install `npm`. Linux: `sudo apt install npm` (or your favourite package manager), Windows: install
|
||||
nodeJS: https://nodejs.org/en/download/
|
||||
0. On iOS, install `wget` (`brew install wget`)
|
||||
0. Run `npm run init` which …
|
||||
- runs `npm install`
|
||||
- generates some additional dependencies and files
|
||||
|
@ -107,7 +106,8 @@ Try removing `node_modules`, `package-lock.json` and `.cache`
|
|||
Misc setup
|
||||
----------
|
||||
|
||||
~~The json-git-merger is used to quickly merge translation files, [documentation here](https://github.com/jonatanpedersen/git-json-merge#single-project--directory).~~
|
||||
~~The json-git-merger is used to quickly merge translation
|
||||
files, [documentation here](https://github.com/jonatanpedersen/git-json-merge#single-project--directory).~~
|
||||
This merge driver is broken and would sometimes drop new questions or duplicate them... Not a good idea!
|
||||
|
||||
Overview of package.json-scripts
|
||||
|
|
121
Docs/ImporteerHandleiding.nl.md
Normal file
121
Docs/ImporteerHandleiding.nl.md
Normal file
|
@ -0,0 +1,121 @@
|
|||
Data importeren in OpenStreetMap
|
||||
================================
|
||||
|
||||
Om een dataset te importeren, zijn er enkele stappen die doorlopen moeten worden:
|
||||
|
||||
0. Geschikte data
|
||||
1. Licentie nakijken
|
||||
2. Importeermethode bepalen
|
||||
3. Community inlichten en Importeren voorbereiden
|
||||
4. Importeren!
|
||||
|
||||
## 0. Geschikte data
|
||||
|
||||
Is de data die je wenst te importeren geschikt voor OpenStreetMap? Is ze dus verifieerbaar ter plaatse door een andere
|
||||
contributor? Is ze ietwat permantent?
|
||||
|
||||
## 1. Licentie nakijken
|
||||
|
||||
Voordat we een dataset in OpenStreetMap kunnen toevoegen, moeten we nagaan of dit wel mag van de oorspronkelijke maker
|
||||
van de dataset.
|
||||
|
||||
Is er een licentievermelding bij de databron? Kijk deze dan na of er toestemming is voor hergebruik (ook commercieel) en
|
||||
redistributie. Indien er een attributie voor de dataset moet zijn, dan kan de bronvermelding in de changeset (als
|
||||
source) aangeduid worden en/of kan de auteur vermeld worden op [deze wikipagina]. **Vraag na of deze bronvermelding
|
||||
voldoende is**
|
||||
|
||||
## 2. Importeermethode bepalen
|
||||
|
||||
De volgende vraag is hoe deze data geimporteerd zal worden. Ook hier moeten verschillende vragen beantwoord worden:
|
||||
|
||||
1. Wie doet de import?
|
||||
2. Is een survey nodig?
|
||||
3. Welke tools worden ingezet?
|
||||
4. Tagging bepalen
|
||||
|
||||
### Wie importeert?
|
||||
|
||||
Een ervaren contributor vergelijkt de bestaande OSM-data met de aangeleverde dataset. Duplicaten worden gefiltered en
|
||||
geupdate. Dit is vooral geschikt voor kleinere dataset (maximaal enkele honderd feaures), maar is sneller (want minder
|
||||
coordinatie is nodig).
|
||||
|
||||
Indien een grotere dataset geimporteerd dient te worden, is dit vaak niet meer haalbaar door één enkele persoon. Als dit
|
||||
het geval is, zal men contributors moeten zoeken om mee te helpen importeren. Dit kan heel passief (de data online
|
||||
plaatsen en de community er attent op maken dat deze bestaat, in de hoop dat er iemand dit oppikt), tot actief een groep
|
||||
vrijwilligers zoeken. Ten slotte kan men hier ook een betaalde kracht voor inhuren - een GIS-expert binnen de
|
||||
organisatie, een jobstudent of een OpenStreetMap-expert die men betaald
|
||||
|
||||
### Is een survey nodig?
|
||||
|
||||
Indien de dataset oud is of veel fouten bevat, is het wellicht wenslijk om ter plaatse te gaan kijken. Dit hangt sterk
|
||||
af van dataset tot dataset, of men de data op luchtfoto's kan afleiden, via mapillary of OpenStreetCam de situatie ter
|
||||
plaatse kan zien, ...
|
||||
|
||||
Vaak helpt het om terreinkennis te hebben, om de import voor te bereiden door alle data te overlopen, toe te voegen waar
|
||||
men zeker van is en enkel de twijfelgevallen over te houden voor import.
|
||||
|
||||
### Welke tools worden ingezet?
|
||||
|
||||
Indien er één ervaren gebruiker de import doet, zal die wellicht JOSM (of zijn favoriete editor gebruiken).
|
||||
|
||||
Voor extreem grote imports (meer dan 1000 objecten) zal men wellicht ook coordineren via een tasking manager (om
|
||||
werkgebieden per contributor af te bakenen).
|
||||
|
||||
Voor een import waar survey wenselijk is (ihb indien er verschillende contributors betrokken zijn), kan MapComplete
|
||||
ingezet worden waar de na te zien data ingeladen wordt. MapComplete kan:
|
||||
|
||||
- tegelijk een laag van OpenStreetMap én de te importeren data tonen .
|
||||
- de te importeren objecten verbergen indien er een OpenStreetMap-object dichtbij is
|
||||
- aanbieden om het te importeren object toe te voegen indien dit object ontbreekt (*)
|
||||
- aanbieden om gegevens van het te importeren object over te zetten op een naburig, soortgelijk object (*)
|
||||
|
||||
(*) Opties 3 en 4 vereisen een degelijke voorbereiding van de te importeren dataset en zijn niet altijd mogelijk of niet
|
||||
altijd de moeite
|
||||
|
||||
Op de screenshot hieronder is een voorbeeld te zien van het importeren van een dataset van Brugse defibrillatoren.
|
||||
|
||||
- De vierkante logo's zijn AEDs die in OpenStreetMap gekend zijn
|
||||
- Een bolletje is een AED die in de Brugse dataset gekend is
|
||||
- Een bolletje wordt groen gekleurd indien er een AED in OSM gekend is binnen een straal van 25 meter
|
||||
- In de popup wordt relevante informatie getoond uit de te importeren dataset
|
||||
|
||||

|
||||
|
||||
Een geavanceerder voorbeeld van een import is het UK-address-importproject. Hierbij wordt met een dataset van
|
||||
vermoedelijke adressen gewerkt. Indien er geen gebouw met adres dit vermoedelijke adres omsluit, wordt er gevraagd om
|
||||
dit adres toe te voegen. Door het adres via deze popup toe te voegen, wordt er meteen een INSPIRE-referentie meegegeven.
|
||||
|
||||

|
||||
|
||||
### Tagging bepalen en filteren voor duplicaten
|
||||
|
||||
Ten slotte moet de data ook nog 'vertaald' worden naar het correct OpenStreetMap-formaat.
|
||||
|
||||
De softwareprogramma's ook overweg kunnen met het dataformaat. **Geojson** is een veilige keuze, want dit open formaat
|
||||
wordt door veel editors ondersteund. Met QGIS kunnen shapefiles omgezet worden in geojson. Een geojson kan ook als extra
|
||||
laag in MapComplete geladen worden.
|
||||
|
||||
Daarnaast moeten de attributen van de data omgezet moeten worden naar de OpenStreetMap-attributen - raadpleeg de wiki
|
||||
voor de correcte tags. Dit kan bijvoorbeeld met QGIS of met JOSM gedaan worden.
|
||||
|
||||
Ten slotte moet men ook voorkomen dat er duplicaten ontstaan: twee objecten in OpenStreetMap die beiden hetzelfde
|
||||
voorwerp voorstellen.
|
||||
|
||||
## 3. Community inlichten en importeren voorbereiden
|
||||
|
||||
Indien er een grote import gaat gebeuren, dient de community hiervan ingelicht te worden. Door dit in de community te
|
||||
bespreken, worden fouten voorkomen. Ook helpt dit om medecontributors warm te maken en niet-betrokken contributors geen
|
||||
verassingen te bezorgen.
|
||||
|
||||
Voor een import die enkel in Belgie plaatsvindt, volstaat een email naar talk@osm.be ; voor een globale import moet men
|
||||
ook best naar import@openstreetmap.org sturen.
|
||||
|
||||
Voor kleinere datasets is dit slechts een formaliteit - zeker indien de data gedubbelcheckt gaat worden.
|
||||
|
||||
Ondertussen kan de import voorbereid worden door op kleine schaal te importeren (bv. een beperkt gebied of een beperkt
|
||||
aantal punten). Indien er een MapComplete-thema wordt opgezet, kan dit ook al getest worden en naar de community
|
||||
gestuurd worden.
|
||||
|
||||
## 4. Importeren!
|
||||
|
||||
Na enkele weken zijn we hier eindelijk aangeland! Tijd om de data in OpenStreetMap te importeren!
|
115
Docs/Layers/address.md
Normal file
115
Docs/Layers/address.md
Normal file
|
@ -0,0 +1,115 @@
|
|||
|
||||
|
||||
address
|
||||
=========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/address/housenumber_blank.svg' height="100px">
|
||||
|
||||
Addresses
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [address](#address)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [housenumber](#housenumber)
|
||||
+ [street](#street)
|
||||
+ [fixme](#fixme)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- 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)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/address/address.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- addr:housenumber~^..*$|addr:street~^..*$
|
||||
|
||||
|
||||
|
||||
|
||||
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/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)
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 housenumber is <b>{addr:housenumber}</b>`
|
||||
|
||||
|
||||
|
||||
- **This building has no house number** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:nohousenumber' target='_blank'>nohousenumber</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:nohousenumber%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/address/address.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/address/address.json)
|
62
Docs/Layers/all_streets.md
Normal file
62
Docs/Layers/all_streets.md
Normal file
|
@ -0,0 +1,62 @@
|
|||
all_streets
|
||||
=============
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [all_streets](#all_streets)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [lit](#lit)
|
||||
|
||||
|
||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
- [cyclestreets](https://mapcomplete.osm.be/cyclestreets)
|
||||
- [street_lighting](https://mapcomplete.osm.be/street_lighting)
|
||||
|
||||
[Go to the source code](../assets/layers/all_streets/all_streets.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- highway!~^$
|
||||
- service!~^driveway$
|
||||
- highway!~^platform$
|
||||
|
||||
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/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)
|
||||
|
||||
### lit
|
||||
|
||||
The question is **Is this street lit?**
|
||||
|
||||
- **This street is lit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes' target='_blank'>yes</a>
|
||||
- **This street is not lit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>
|
||||
lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno' target='_blank'>no</a>
|
||||
- **This street is lit at night** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dsunset-sunrise' target='_blank'>sunset-sunrise</a>_This option
|
||||
cannot be chosen as answer_
|
||||
- **This street is lit 24/7** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>
|
||||
lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7' target='_blank'>24/7</a>
|
||||
|
||||
This document is autogenerated from assets/layers/all_streets/all_streets.json
|
161
Docs/Layers/ambulancestation.md
Normal file
161
Docs/Layers/ambulancestation.md
Normal file
|
@ -0,0 +1,161 @@
|
|||
|
||||
|
||||
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.
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [ambulancestation](#ambulancestation)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [ambulance-name](#ambulance-name)
|
||||
+ [ambulance-street](#ambulance-street)
|
||||
+ [ambulance-place](#ambulance-place)
|
||||
+ [ambulance-agency](#ambulance-agency)
|
||||
+ [ambulance-operator-type](#ambulance-operator-type)
|
||||
+ [images](#images)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [hailhydrant](https://mapcomplete.osm.be/hailhydrant)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/ambulancestation/ambulancestation.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:emergency' target='_blank'>emergency</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:emergency%3Dambulance_station' target='_blank'>ambulance_station</a>
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/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)
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment' target='_blank'>government</a>
|
||||
- **The station is operated by a community-based, or informal organization.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity' target='_blank'>community</a>
|
||||
- **The station is operated by a formal group of volunteers.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dngo' target='_blank'>ngo</a>
|
||||
- **The station is privately operated.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dprivate' target='_blank'>private</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_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)
|
151
Docs/Layers/artwork.md
Normal file
151
Docs/Layers/artwork.md
Normal file
|
@ -0,0 +1,151 @@
|
|||
|
||||
|
||||
artwork
|
||||
=========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/artwork/artwork.svg' height="100px">
|
||||
|
||||
Diverse pieces of artwork
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [artwork](#artwork)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [artwork-artwork_type](#artwork-artwork_type)
|
||||
+ [artwork-artist_name](#artwork-artist_name)
|
||||
+ [artwork-website](#artwork-website)
|
||||
+ [artwork-wikidata](#artwork-wikidata)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [artwork](https://mapcomplete.osm.be/artwork)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/artwork/artwork.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dartwork' target='_blank'>artwork</a>
|
||||
|
||||
|
||||
|
||||
|
||||
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/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)
|
||||
[<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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_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 <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture' target='_blank'>architecture</a>
|
||||
- **Mural** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural' target='_blank'>mural</a>
|
||||
- **Painting** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpainting' target='_blank'>painting</a>
|
||||
- **Sculpture** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dsculpture' target='_blank'>sculpture</a>
|
||||
- **Statue** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstatue' target='_blank'>statue</a>
|
||||
- **Bust** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dbust' target='_blank'>bust</a>
|
||||
- **Stone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstone' target='_blank'>stone</a>
|
||||
- **Installation** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dinstallation' target='_blank'>installation</a>
|
||||
- **Graffiti** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dgraffiti' target='_blank'>graffiti</a>
|
||||
- **Relief** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Drelief' target='_blank'>relief</a>
|
||||
- **Azulejo (Spanish decorative tilework)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo' target='_blank'>azulejo</a>
|
||||
- **Tilework** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework' target='_blank'>tilework</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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}`
|
||||
|
||||
|
||||
|
||||
### 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>`
|
||||
|
||||
|
||||
|
||||
### artwork-wikidata
|
||||
|
||||
|
||||
|
||||
The question is **Which Wikidata-entry corresponds with <b>this artwork</b>?**
|
||||
|
||||
This rendering asks information about the property [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata)
|
||||
This is rendered with `Corresponds with <a href='https://www.wikidata.org/wiki/{wikidata}' target='_blank'>{wikidata}</a>`
|
||||
|
||||
This document is autogenerated from [assets/layers/artwork/artwork.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/artwork/artwork.json)
|
38
Docs/Layers/assen.md
Normal file
38
Docs/Layers/assen.md
Normal file
|
@ -0,0 +1,38 @@
|
|||
assen
|
||||
=======
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [assen](#assen)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [all_tags](#all_tags)
|
||||
|
||||
|
||||
- <img src='../warning.svg' height='1rem'/> This layer is loaded from an external source, namely `https://robinlinde.github.io/tiles/assen_street_lighting/{z}/{x}/{y}.json`
|
||||
- This layer will automatically load [street_lamps](./street_lamps.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_osm_street_lamp)
|
||||
|
||||
[Go to the source code](../assets/layers/assen/assen.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- Lichtmastnummer~^..*$
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
### all_tags
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
This document is autogenerated from assets/layers/assen/assen.json
|
202
Docs/Layers/barrier.md
Normal file
202
Docs/Layers/barrier.md
Normal file
|
@ -0,0 +1,202 @@
|
|||
|
||||
|
||||
barrier
|
||||
=========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/barrier/barrier.svg' height="100px">
|
||||
|
||||
Obstacles while cycling, such as bollards and cycle barriers
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [barrier](#barrier)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [bicycle=yes/no](#bicycle=yesno)
|
||||
+ [barrier_type](#barrier_type)
|
||||
+ [Bollard type](#bollard-type)
|
||||
+ [Cycle barrier type](#cycle-barrier-type)
|
||||
+ [MaxWidth](#maxwidth)
|
||||
+ [Space between barrier (cyclebarrier)](#space-between-barrier-(cyclebarrier))
|
||||
+ [Width of opening (cyclebarrier)](#width-of-opening-(cyclebarrier))
|
||||
+ [Overlap (cyclebarrier)](#overlap-(cyclebarrier))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- 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)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/barrier/barrier.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dbollard' target='_blank'>bollard</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcycle_barrier' target='_blank'>cycle_barrier</a>
|
||||
|
||||
|
||||
|
||||
|
||||
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/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) | [length](../SpecialInputElements.md#length) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/width:separation#values) [width:separation](https://wiki.openstreetmap.org/wiki/Key:width:separation) | [length](../SpecialInputElements.md#length) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/width:opening#values) [width:opening](https://wiki.openstreetmap.org/wiki/Key:width:opening) | [length](../SpecialInputElements.md#length) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/overlap#values) [overlap](https://wiki.openstreetmap.org/wiki/Key:overlap) | [length](../SpecialInputElements.md#length) |
|
||||
|
||||
|
||||
|
||||
|
||||
### bicycle=yes/no
|
||||
|
||||
|
||||
|
||||
The question is **Can a bicycle go past this barrier?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **A cyclist can go past this.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes' target='_blank'>yes</a>
|
||||
- **A cyclist can not go past this.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### barrier_type
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This is a single bollard in the road** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dbollard' target='_blank'>bollard</a>
|
||||
- **This is a cycle barrier slowing down cyclists** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcycle_barrier' target='_blank'>cycle_barrier</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### Bollard type
|
||||
|
||||
|
||||
|
||||
The question is **What kind of bollard is this?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Removable bollard** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dremovable' target='_blank'>removable</a>
|
||||
- **Fixed bollard** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dfixed' target='_blank'>fixed</a>
|
||||
- **Bollard that can be folded down** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dfoldable' target='_blank'>foldable</a>
|
||||
- **Flexible bollard, usually plastic** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dflexible' target='_blank'>flexible</a>
|
||||
- **Rising bollard** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Drising' target='_blank'>rising</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### Cycle barrier type
|
||||
|
||||
|
||||
|
||||
The question is **What kind of cycling barrier is this?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Single, just two barriers with a space inbetween <img src='./assets/themes/cycle_infra/Cycle_barrier_single.png' style='width:8em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dsingle' target='_blank'>single</a>
|
||||
- **Double, two barriers behind each other <img src='./assets/themes/cycle_infra/Cycle_barrier_double.svg' style='width:8em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Ddouble' target='_blank'>double</a>
|
||||
- **Triple, three barriers behind each other <img src='./assets/themes/cycle_infra/Cycle_barrier_triple.png' style='width:8em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dtriple' target='_blank'>triple</a>
|
||||
- **Squeeze gate, gap is smaller at top, than at the bottom <img src='./assets/themes/cycle_infra/Cycle_barrier_squeeze.png' style='width:8em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dsqueeze' target='_blank'>squeeze</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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`
|
||||
|
||||
|
||||
|
||||
### 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`
|
||||
|
||||
|
||||
|
||||
### 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`
|
||||
|
||||
|
||||
|
||||
### 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 document is autogenerated from [assets/layers/barrier/barrier.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/barrier/barrier.json)
|
194
Docs/Layers/bench.md
Normal file
194
Docs/Layers/bench.md
Normal file
|
@ -0,0 +1,194 @@
|
|||
|
||||
|
||||
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.
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [bench](#bench)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [bench-backrest](#bench-backrest)
|
||||
+ [bench-seats](#bench-seats)
|
||||
+ [bench-material](#bench-material)
|
||||
+ [bench-direction](#bench-direction)
|
||||
+ [bench-colour](#bench-colour)
|
||||
+ [bench-survey:date](#bench-surveydate)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [benches](https://mapcomplete.osm.be/benches)
|
||||
- [nature](https://mapcomplete.osm.be/nature)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/bench/bench.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbench' target='_blank'>bench</a>
|
||||
|
||||
|
||||
|
||||
|
||||
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/backrest#values) [backrest](https://wiki.openstreetmap.org/wiki/Key:backrest) | Multiple choice | [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)
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### bench-backrest
|
||||
|
||||
|
||||
|
||||
The question is **Does this bench have a backrest?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Backrest: Yes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:backrest' target='_blank'>backrest</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes' target='_blank'>yes</a>
|
||||
- **Backrest: No** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:backrest' target='_blank'>backrest</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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`
|
||||
|
||||
|
||||
|
||||
### 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}`
|
||||
|
||||
|
||||
|
||||
- **Material: wood** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood' target='_blank'>wood</a>
|
||||
- **Material: metal** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dmetal' target='_blank'>metal</a>
|
||||
- **Material: stone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dstone' target='_blank'>stone</a>
|
||||
- **Material: concrete** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete' target='_blank'>concrete</a>
|
||||
- **Material: plastic** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dplastic' target='_blank'>plastic</a>
|
||||
- **Material: steel** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dsteel' target='_blank'>steel</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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}°.`
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dbrown' target='_blank'>brown</a>
|
||||
- **Colour: green** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgreen' target='_blank'>green</a>
|
||||
- **Colour: gray** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgray' target='_blank'>gray</a>
|
||||
- **Colour: white** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dwhite' target='_blank'>white</a>
|
||||
- **Colour: red** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred' target='_blank'>red</a>
|
||||
- **Colour: black** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblack' target='_blank'>black</a>
|
||||
- **Colour: blue** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblue' target='_blank'>blue</a>
|
||||
- **Colour: yellow** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow' target='_blank'>yellow</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 document is autogenerated from [assets/layers/bench/bench.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bench/bench.json)
|
115
Docs/Layers/bench_at_pt.md
Normal file
115
Docs/Layers/bench_at_pt.md
Normal file
|
@ -0,0 +1,115 @@
|
|||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [bench_at_pt](#bench_at_pt)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [bench_at_pt-name](#bench_at_pt-name)
|
||||
+ [bench_at_pt-bench_type](#bench_at_pt-bench_type)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [benches](https://mapcomplete.osm.be/benches)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/bench_at_pt/bench_at_pt.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dyes' target='_blank'>yes</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dstand_up_bench' target='_blank'>stand_up_bench</a>
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/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)
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_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 <a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dyes' target='_blank'>yes</a>
|
||||
- **Stand up bench** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dstand_up_bench' target='_blank'>stand_up_bench</a>
|
||||
- **There is no bench here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/bench_at_pt/bench_at_pt.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bench_at_pt/bench_at_pt.json)
|
215
Docs/Layers/bicycle_library.md
Normal file
215
Docs/Layers/bicycle_library.md
Normal file
|
@ -0,0 +1,215 @@
|
|||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [bicycle_library](#bicycle_library)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [bicycle_library-name](#bicycle_library-name)
|
||||
+ [website](#website)
|
||||
+ [phone](#phone)
|
||||
+ [email](#email)
|
||||
+ [opening_hours](#opening_hours)
|
||||
+ [bicycle_library-charge](#bicycle_library-charge)
|
||||
+ [bicycle-library-target-group](#bicycle-library-target-group)
|
||||
+ [description](#description)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [bicyclelib](https://mapcomplete.osm.be/bicyclelib)
|
||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/bicycle_library/bicycle_library.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_library' target='_blank'>bicycle_library</a>
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_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 {name}?**
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
|
||||
|
||||
### phone
|
||||
|
||||
|
||||
|
||||
The question is **What is the phone number of {name}?**
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||
|
||||
|
||||
|
||||
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
|
||||
|
||||
### email
|
||||
|
||||
|
||||
|
||||
The question is **What is the email address of {name}?**
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||
|
||||
|
||||
|
||||
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
|
||||
|
||||
### opening_hours
|
||||
|
||||
|
||||
|
||||
The question is **What are the opening hours of {name}?**
|
||||
|
||||
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 <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>
|
||||
- **Lending a bicycle costs €20/year and €20 warranty** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:charge' target='_blank'>charge</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:charge%3D€20warranty + €20/year' target='_blank'>€20warranty + €20/year</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### bicycle-library-target-group
|
||||
|
||||
|
||||
|
||||
The question is **Who can lend bicycles here?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Bikes for children available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_library:for' target='_blank'>bicycle_library:for</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dchild' target='_blank'>child</a>
|
||||
- **Bikes for adult available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_library:for' target='_blank'>bicycle_library:for</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dadult' target='_blank'>adult</a>
|
||||
- **Bikes for disabled persons available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_library:for' target='_blank'>bicycle_library:for</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Ddisabled' target='_blank'>disabled</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### description
|
||||
|
||||
|
||||
|
||||
The question is **Is there still something relevant you couldn't give in the previous questions? Add it here.<br/><span style='font-size: small'>Don't repeat already stated facts</span>**
|
||||
|
||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||
This is rendered with `{description}`
|
||||
|
||||
This document is autogenerated from [assets/layers/bicycle_library/bicycle_library.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bicycle_library/bicycle_library.json)
|
362
Docs/Layers/bicycle_rental.md
Normal file
362
Docs/Layers/bicycle_rental.md
Normal file
|
@ -0,0 +1,362 @@
|
|||
|
||||
|
||||
bicycle_rental
|
||||
================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/bicycle_rental/logo.svg' height="100px">
|
||||
|
||||
Bicycle rental stations
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [bicycle_rental](#bicycle_rental)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [bicycle_rental_type](#bicycle_rental_type)
|
||||
+ [website](#website)
|
||||
+ [email](#email)
|
||||
+ [phone](#phone)
|
||||
+ [opening_hours](#opening_hours)
|
||||
+ [payment-options](#payment-options)
|
||||
+ [payment-options-advanced](#payment-options-advanced)
|
||||
+ [bicycle-types](#bicycle-types)
|
||||
+ [rental-capacity-bicycle-type](#rental-capacity-bicycle-type)
|
||||
+ [questions](#questions)
|
||||
+ [rental-capacity-bicycle-type](#rental-capacity-bicycle-type)
|
||||
+ [questions](#questions)
|
||||
+ [rental-capacity-bicycle-type](#rental-capacity-bicycle-type)
|
||||
+ [questions](#questions)
|
||||
+ [rental-capacity-bicycle-type](#rental-capacity-bicycle-type)
|
||||
+ [questions](#questions)
|
||||
+ [rental-capacity-bicycle-type](#rental-capacity-bicycle-type)
|
||||
+ [questions](#questions)
|
||||
+ [rental-capacity-bicycle-type](#rental-capacity-bicycle-type)
|
||||
+ [questions](#questions)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [bicycle_rental](https://mapcomplete.osm.be/bicycle_rental)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/bicycle_rental/bicycle_rental.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_rental' target='_blank'>bicycle_rental</a>|bicycle_rental~^..*$|<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental' target='_blank'>service:bicycle:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dyes' target='_blank'>yes</a>|rental~^.*bicycle.*$
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/rental#values) [rental](https://wiki.openstreetmap.org/wiki/Key:rental) | [string](../SpecialInputElements.md#string) | [city_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dcity_bike) [ebike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Debike) [bmx](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbmx) [mtb](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dmtb) [kid_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dkid_bike)
|
||||
[<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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### bicycle_rental_type
|
||||
|
||||
|
||||
|
||||
The question is **What kind of bicycle rental is this?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This is a shop whose main focus is bicycle rental** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbicycle_rental' target='_blank'>bicycle_rental</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_rental' target='_blank'>bicycle_rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_rental%3Dshop' target='_blank'>shop</a>
|
||||
- **This is a rental buisiness which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Drental' target='_blank'>rental</a>_This option cannot be chosen as answer_
|
||||
- **This is a shop which sells or repairs bicycles, but also rents out bicycles** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental' target='_blank'>service:bicycle:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dyes' target='_blank'>yes</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbicycle' target='_blank'>bicycle</a>
|
||||
- **This is an automated docking station, where a bicycle is mechanically locked into a structure** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_rental' target='_blank'>bicycle_rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_rental%3Ddocking_station' target='_blank'>docking_station</a>
|
||||
- **A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_rental' target='_blank'>bicycle_rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_rental%3Dkey_dispensing_machine' target='_blank'>key_dispensing_machine</a>
|
||||
- **This is a dropoff point: a designated bicycle parking for this cycle rental** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_rental' target='_blank'>bicycle_rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_rental%3Ddropoff_point' target='_blank'>dropoff_point</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### website
|
||||
|
||||
|
||||
|
||||
The question is **What is the website of {name}?**
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
|
||||
|
||||
### email
|
||||
|
||||
|
||||
|
||||
The question is **What is the email address of {name}?**
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||
|
||||
|
||||
|
||||
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
|
||||
|
||||
### phone
|
||||
|
||||
|
||||
|
||||
The question is **What is the phone number of {name}?**
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||
|
||||
|
||||
|
||||
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
|
||||
|
||||
### opening_hours
|
||||
|
||||
|
||||
|
||||
The question is **What are the opening hours of {name}?**
|
||||
|
||||
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)}`
|
||||
|
||||
|
||||
|
||||
### payment-options
|
||||
|
||||
|
||||
|
||||
The question is **Which methods of payment are accepted here?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Cash is accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dno' target='_blank'>no</a>
|
||||
- **Payment cards are accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### payment-options-advanced
|
||||
|
||||
|
||||
|
||||
The question is **Which methods of payment are accepted here?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Cash is accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dno' target='_blank'>no</a>
|
||||
- **Payment cards are accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||
- **Payment is done using a dedicated app** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:app' target='_blank'>payment:app</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:app%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:app' target='_blank'>payment:app</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:app%3Dno' target='_blank'>no</a>
|
||||
- **Payment is done using a membership card** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:membership_card' target='_blank'>payment:membership_card</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:membership_card%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:membership_card' target='_blank'>payment:membership_card</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:membership_card%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### bicycle-types
|
||||
|
||||
|
||||
|
||||
The question is **What kind of bicycles and accessories are rented here?**
|
||||
|
||||
This rendering asks information about the property [rental](https://wiki.openstreetmap.org/wiki/Key:rental)
|
||||
This is rendered with `{rental} is rented here`
|
||||
|
||||
|
||||
|
||||
- **Normal city bikes can be rented here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dcity_bike' target='_blank'>city_bike</a>
|
||||
- **Electrical bikes can be rented here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Debike' target='_blank'>ebike</a>
|
||||
- **BMX bikes can be rented here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbmx' target='_blank'>bmx</a>
|
||||
- **Mountainbikes can be rented here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dmtb' target='_blank'>mtb</a>
|
||||
- **Bikes for childs can be rented here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dkid_bike' target='_blank'>kid_bike</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### rental-capacity-bicycle-type
|
||||
|
||||
|
||||
|
||||
The question is **How much city bikes can be rented here? **
|
||||
|
||||
This rendering asks information about the property [capacity:city_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:city_bike)
|
||||
This is rendered with `{capacity:city_bike} city bikes can be rented here`
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### rental-capacity-bicycle-type
|
||||
|
||||
|
||||
|
||||
The question is **How much electrical bikes can be rented here? **
|
||||
|
||||
This rendering asks information about the property [capacity:ebike](https://wiki.openstreetmap.org/wiki/Key:capacity:ebike)
|
||||
This is rendered with `{capacity:ebike} electrical bikes can be rented here`
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### rental-capacity-bicycle-type
|
||||
|
||||
|
||||
|
||||
The question is **How much bikes for children can be rented here? **
|
||||
|
||||
This rendering asks information about the property [capacity:kid_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:kid_bike)
|
||||
This is rendered with `{capacity:kid_bike} bikes for children can be rented here`
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### rental-capacity-bicycle-type
|
||||
|
||||
|
||||
|
||||
The question is **How much BMX bikes can be rented here? **
|
||||
|
||||
This rendering asks information about the property [capacity:bmx](https://wiki.openstreetmap.org/wiki/Key:capacity:bmx)
|
||||
This is rendered with `{capacity:bmx} BMX bikes can be rented here`
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### rental-capacity-bicycle-type
|
||||
|
||||
|
||||
|
||||
The question is **How much mountainbike can be rented here? **
|
||||
|
||||
This rendering asks information about the property [capacity:mtb](https://wiki.openstreetmap.org/wiki/Key:capacity:mtb)
|
||||
This is rendered with `{capacity:mtb} mountainbike can be rented here`
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### rental-capacity-bicycle-type
|
||||
|
||||
|
||||
|
||||
The question is **How much bicycle panniers can be rented here? **
|
||||
|
||||
This rendering asks information about the property [capacity:bicycle_pannier](https://wiki.openstreetmap.org/wiki/Key:capacity:bicycle_pannier)
|
||||
This is rendered with `{capacity:bicycle_pannier} bicycle panniers can be rented here`
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
_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)
|
193
Docs/Layers/bicycle_tube_vending_machine.md
Normal file
193
Docs/Layers/bicycle_tube_vending_machine.md
Normal file
|
@ -0,0 +1,193 @@
|
|||
|
||||
|
||||
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, ...)
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [bicycle_tube_vending_machine](#bicycle_tube_vending_machine)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [Still in use?](#still-in-use)
|
||||
+ [bicycle_tube_vending_machine-charge](#bicycle_tube_vending_machine-charge)
|
||||
+ [vending-machine-payment-methods](#vending-machine-payment-methods)
|
||||
+ [bicycle_tube_vending_machine-brand](#bicycle_tube_vending_machine-brand)
|
||||
+ [bicycle_tube_vending_machine-operator](#bicycle_tube_vending_machine-operator)
|
||||
+ [bicycle_tube_vending_maching-other-items](#bicycle_tube_vending_maching-other-items)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/bicycle_tube_vending_machine/bicycle_tube_vending_machine.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dvending_machine' target='_blank'>vending_machine</a>
|
||||
- vending~^.*bicycle_tube.*$
|
||||
|
||||
|
||||
|
||||
|
||||
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/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)
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_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 <a href='https://wiki.openstreetmap.org/wiki/Key:operational_status' target='_blank'>operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dbroken' target='_blank'>broken</a>
|
||||
- **This vending machine is closed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operational_status' target='_blank'>operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dclosed' target='_blank'>closed</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins' target='_blank'>payment:coins</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins' target='_blank'>payment:coins</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins%3Dno' target='_blank'>no</a>
|
||||
- **Payment with notes is possible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes' target='_blank'>payment:notes</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes' target='_blank'>payment:notes</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes%3Dno' target='_blank'>no</a>
|
||||
- **Payment with cards is possible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:brand' target='_blank'>brand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:brand%3DContinental' target='_blank'>Continental</a>
|
||||
- **Schwalbe tubes are sold here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:brand' target='_blank'>brand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:brand%3DSchwalbe' target='_blank'>Schwalbe</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DSchwalbe' target='_blank'>Schwalbe</a>
|
||||
- **Maintained by Continental** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DContinental' target='_blank'>Continental</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### bicycle_tube_vending_maching-other-items
|
||||
|
||||
|
||||
|
||||
The question is **Are other bicycle bicycle accessories sold here?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Bicycle lights are sold here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_light' target='_blank'>vending:bicycle_light</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_light%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_light' target='_blank'>vending:bicycle_light</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_light%3Dno' target='_blank'>no</a>
|
||||
- **Gloves are sold here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:vending:gloves' target='_blank'>vending:gloves</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:gloves%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:gloves' target='_blank'>vending:gloves</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:gloves%3Dno' target='_blank'>no</a>
|
||||
- **Bicycle repair kits are sold here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_repair_kit' target='_blank'>vending:bicycle_repair_kit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_repair_kit%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_repair_kit' target='_blank'>vending:bicycle_repair_kit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_repair_kit%3Dno' target='_blank'>no</a>
|
||||
- **Bicycle pumps are sold here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_pump' target='_blank'>vending:bicycle_pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_pump%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_pump' target='_blank'>vending:bicycle_pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_pump%3Dno' target='_blank'>no</a>
|
||||
- **Bicycle locks are sold here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_lock' target='_blank'>vending:bicycle_lock</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_lock%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_lock' target='_blank'>vending:bicycle_lock</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_lock%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
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)
|
203
Docs/Layers/bike_cafe.md
Normal file
203
Docs/Layers/bike_cafe.md
Normal file
|
@ -0,0 +1,203 @@
|
|||
|
||||
|
||||
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, ...
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [bike_cafe](#bike_cafe)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [bike_cafe-name](#bike_cafe-name)
|
||||
+ [bike_cafe-bike-pump](#bike_cafe-bike-pump)
|
||||
+ [bike_cafe-repair-tools](#bike_cafe-repair-tools)
|
||||
+ [bike_cafe-repair-service](#bike_cafe-repair-service)
|
||||
+ [bike_cafe-website](#bike_cafe-website)
|
||||
+ [bike_cafe-phone](#bike_cafe-phone)
|
||||
+ [bike_cafe-email](#bike_cafe-email)
|
||||
+ [bike_cafe-opening_hours](#bike_cafe-opening_hours)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/bike_cafe/bike_cafe.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpub' target='_blank'>pub</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbar' target='_blank'>bar</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe' target='_blank'>cafe</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant' target='_blank'>restaurant</a>
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:pub' target='_blank'>pub</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:pub%3Dcycling' target='_blank'>cycling</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:pub' target='_blank'>pub</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:pub%3Dbicycle' target='_blank'>bicycle</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:theme' target='_blank'>theme</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:theme%3Dcycling' target='_blank'>cycling</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:theme' target='_blank'>theme</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:theme%3Dbicycle' target='_blank'>bicycle</a>|service:bicycle:.*~^..*$
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/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) | [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/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_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 <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>
|
||||
- **This bike cafe doesn't offer a bike pump for anyone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_cafe-repair-tools
|
||||
|
||||
|
||||
|
||||
The question is **Are there tools here to repair your own bike?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This bike cafe offers tools for DIY repair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dyes' target='_blank'>yes</a>
|
||||
- **This bike cafe doesn't offer tools for DIY repair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_cafe-repair-service
|
||||
|
||||
|
||||
|
||||
The question is **Does this bike cafe repair bikes?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This bike cafe repairs bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes' target='_blank'>yes</a>
|
||||
- **This bike cafe doesn't repair bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_cafe-website
|
||||
|
||||
|
||||
|
||||
The question is **What is the website of {name}?**
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
### bike_cafe-phone
|
||||
|
||||
|
||||
|
||||
The question is **What is the phone number of {name}?**
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||
|
||||
|
||||
|
||||
### bike_cafe-email
|
||||
|
||||
|
||||
|
||||
The question is **What is the email address of {name}?**
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||
|
||||
|
||||
|
||||
### bike_cafe-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 `{opening_hours_table(opening_hours)}`
|
||||
|
||||
This document is autogenerated from [assets/layers/bike_cafe/bike_cafe.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_cafe/bike_cafe.json)
|
123
Docs/Layers/bike_cleaning.md
Normal file
123
Docs/Layers/bike_cleaning.md
Normal file
|
@ -0,0 +1,123 @@
|
|||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [bike_cleaning](#bike_cleaning)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [bike_cleaning-service:bicycle:cleaning:charge](#bike_cleaning-servicebicycle:cleaning:charge)
|
||||
+ [bike_cleaning-charge](#bike_cleaning-charge)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/bike_cleaning/bike_cleaning.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning' target='_blank'>service:bicycle:cleaning</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dyes' target='_blank'>yes</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning' target='_blank'>service:bicycle:cleaning</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Ddiy' target='_blank'>diy</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_wash' target='_blank'>bicycle_wash</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbike_wash' target='_blank'>bike_wash</a>
|
||||
|
||||
|
||||
|
||||
|
||||
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/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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_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 <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dno&service:bicycle:cleaning:charge=' target='_blank'>no&service:bicycle:cleaning:charge=</a>
|
||||
- **Free to use** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dno' target='_blank'>no</a>_This option cannot be chosen as answer_
|
||||
- **The cleaning service has a fee, but the amount is not known** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dyes&service:bicycle:cleaning:charge=' target='_blank'>yes&service:bicycle:cleaning:charge=</a>_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
|
||||
|
||||
### 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}`
|
||||
|
||||
|
||||
|
||||
- **Free to use cleaning service** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno&charge=' target='_blank'>no&charge=</a>
|
||||
- **Free to use** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>_This option cannot be chosen as answer_
|
||||
- **The cleaning service has a fee** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
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)
|
212
Docs/Layers/bike_parking.md
Normal file
212
Docs/Layers/bike_parking.md
Normal file
|
@ -0,0 +1,212 @@
|
|||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [bike_parking](#bike_parking)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [Bicycle parking type](#bicycle-parking-type)
|
||||
+ [Underground?](#underground)
|
||||
+ [Is covered?](#is-covered)
|
||||
+ [Capacity](#capacity)
|
||||
+ [Access](#access)
|
||||
+ [Cargo bike spaces?](#cargo-bike-spaces)
|
||||
+ [Cargo bike capacity?](#cargo-bike-capacity)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/bike_parking/bike_parking.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_parking' target='_blank'>bicycle_parking</a>
|
||||
|
||||
|
||||
|
||||
|
||||
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/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) [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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_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 <img style='width: 25%' src='./assets/layers/bike_parking/staple.svg'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dstands' target='_blank'>stands</a>
|
||||
- **Wheel rack/loops <img style='width: 25%'' src='./assets/layers/bike_parking/wall_loops.svg'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dwall_loops' target='_blank'>wall_loops</a>
|
||||
- **Handlebar holder <img style='width: 25%'' src='./assets/layers/bike_parking/handlebar_holder.svg'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dhandlebar_holder' target='_blank'>handlebar_holder</a>
|
||||
- **Rack <img style='width: 25%'' src='./assets/layers/bike_parking/rack.svg'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Drack' target='_blank'>rack</a>
|
||||
- **Two-tiered <img style='width: 25%'' src='./assets/layers/bike_parking/two_tier.svg'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dtwo_tier' target='_blank'>two_tier</a>
|
||||
- **Shed <img style='width: 25%'' src='./assets/layers/bike_parking/shed.svg'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dshed' target='_blank'>shed</a>
|
||||
- **Bollard <img style='width: 25%'' src='./assets/layers/bike_parking/bollard.svg'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dbollard' target='_blank'>bollard</a>
|
||||
- **An area on the floor which is marked for bicycle parking** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dfloor' target='_blank'>floor</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### Underground?
|
||||
|
||||
|
||||
|
||||
The question is **What is the relative location of this bicycle parking?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Underground parking** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>
|
||||
- **Surface level parking** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dsurface' target='_blank'>surface</a>
|
||||
- **Rooftop parking** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Drooftop' target='_blank'>rooftop</a>
|
||||
- **Surface level parking** corresponds with _This option cannot be chosen as answer_
|
||||
- **Rooftop parking** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Drooftop' target='_blank'>rooftop</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:covered' target='_blank'>covered</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:covered%3Dyes' target='_blank'>yes</a>
|
||||
- **This parking is not covered** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:covered' target='_blank'>covered</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:covered%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>
|
||||
- **Access is primarily for visitors to a business** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers' target='_blank'>customers</a>
|
||||
- **Access is limited to members of a school, company or organisation** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate' target='_blank'>private</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### Cargo bike spaces?
|
||||
|
||||
|
||||
|
||||
The question is **Does this bicycle parking have spots for cargo bikes?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This parking has room for cargo bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cargo_bike' target='_blank'>cargo_bike</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Dyes' target='_blank'>yes</a>
|
||||
- **This parking has designated (official) spots for cargo bikes.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cargo_bike' target='_blank'>cargo_bike</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Ddesignated' target='_blank'>designated</a>
|
||||
- **You're not allowed to park cargo bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cargo_bike' target='_blank'>cargo_bike</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 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)
|
324
Docs/Layers/bike_repair_station.md
Normal file
324
Docs/Layers/bike_repair_station.md
Normal file
|
@ -0,0 +1,324 @@
|
|||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [bike_repair_station](#bike_repair_station)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [bike_repair_station-available-services](#bike_repair_station-available-services)
|
||||
+ [Operational status](#operational-status)
|
||||
+ [bike_repair_station-opening_hours](#bike_repair_station-opening_hours)
|
||||
+ [access](#access)
|
||||
+ [bike_repair_station-operator](#bike_repair_station-operator)
|
||||
+ [bike_repair_station-email](#bike_repair_station-email)
|
||||
+ [bike_repair_station-phone](#bike_repair_station-phone)
|
||||
+ [bike_repair_station-bike-chain-tool](#bike_repair_station-bike-chain-tool)
|
||||
+ [bike_repair_station-bike-stand](#bike_repair_station-bike-stand)
|
||||
+ [Email maintainer](#email-maintainer)
|
||||
+ [bike_repair_station-valves](#bike_repair_station-valves)
|
||||
+ [bike_repair_station-electrical_pump](#bike_repair_station-electrical_pump)
|
||||
+ [bike_repair_station-manometer](#bike_repair_station-manometer)
|
||||
+ [level](#level)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/bike_repair_station/bike_repair_station.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_repair_station' target='_blank'>bicycle_repair_station</a>
|
||||
|
||||
|
||||
|
||||
|
||||
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/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)
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_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 <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools' target='_blank'>service:bicycle:tools</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dno' target='_blank'>no</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>
|
||||
- **There are only tools (screwdrivers, pliers...) present** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools' target='_blank'>service:bicycle:tools</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes' target='_blank'>yes</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno' target='_blank'>no</a>
|
||||
- **There are both tools and a pump present** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools' target='_blank'>service:bicycle:tools</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes' target='_blank'>yes</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### Operational status
|
||||
|
||||
|
||||
|
||||
The question is **Is the bike pump still operational?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **The bike pump is broken** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump:operational_status' target='_blank'>service:bicycle:pump:operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump:operational_status%3Dbroken' target='_blank'>broken</a>
|
||||
- **The bike pump is operational** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump:operational_status' target='_blank'>service:bicycle:pump:operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump:operational_status%3Doperational' target='_blank'>operational</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_repair_station-opening_hours
|
||||
|
||||
|
||||
|
||||
The question is **When is this bicycle repair point open?**
|
||||
|
||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||
This is rendered with `{opening_hours_table()}`
|
||||
|
||||
|
||||
|
||||
- **Always open** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### access
|
||||
|
||||
|
||||
|
||||
The question is **Who is allowed to use this repair station?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Publicly accessible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>
|
||||
- **Publicly accessible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic' target='_blank'>public</a>_This option cannot be chosen as answer_
|
||||
- **Only for customers** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers' target='_blank'>customers</a>
|
||||
- **Not accessible to the general public** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate' target='_blank'>private</a>
|
||||
- **Not accessible to the general public** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dno' target='_blank'>no</a>_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
|
||||
|
||||
### 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}`
|
||||
|
||||
|
||||
|
||||
### 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>`
|
||||
|
||||
|
||||
|
||||
### 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>`
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:chain_tool' target='_blank'>service:bicycle:chain_tool</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:chain_tool%3Dyes' target='_blank'>yes</a>
|
||||
- **There is no chain tool** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:chain_tool' target='_blank'>service:bicycle:chain_tool</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:chain_tool%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:stand' target='_blank'>service:bicycle:stand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:stand%3Dyes' target='_blank'>yes</a>
|
||||
- **There is no hook or stand** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:stand' target='_blank'>service:bicycle:stand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:stand%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### Email maintainer
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 (also known as Presta)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:valves' target='_blank'>valves</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:valves%3Dsclaverand' target='_blank'>sclaverand</a>
|
||||
- **Dunlop** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:valves' target='_blank'>valves</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:valves%3Ddunlop' target='_blank'>dunlop</a>
|
||||
- **Schrader (cars)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:valves' target='_blank'>valves</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:valves%3Dschrader' target='_blank'>schrader</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_repair_station-electrical_pump
|
||||
|
||||
|
||||
|
||||
The question is **Is this an electric bike pump?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Manual pump** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:manual' target='_blank'>manual</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manual%3Dyes' target='_blank'>yes</a>
|
||||
- **Electrical pump** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:manual' target='_blank'>manual</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manual%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_repair_station-manometer
|
||||
|
||||
|
||||
|
||||
The question is **Does the pump have a pressure indicator or manometer?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **There is a manometer** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:manometer' target='_blank'>manometer</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dyes' target='_blank'>yes</a>
|
||||
- **There is no manometer** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:manometer' target='_blank'>manometer</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dno' target='_blank'>no</a>
|
||||
- **There is manometer but it is broken** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:manometer' target='_blank'>manometer</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dbroken' target='_blank'>broken</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### level
|
||||
|
||||
|
||||
|
||||
The question is **On what level is this feature located?**
|
||||
|
||||
This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level)
|
||||
This is rendered with `Located on the {level}th floor`
|
||||
|
||||
|
||||
|
||||
- **Located underground** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>_This option cannot be chosen as answer_
|
||||
- **Located on the ground floor** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>
|
||||
- **Located on the ground floor** corresponds with _This option cannot be chosen as answer_
|
||||
- **Located on the first floor** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D1' target='_blank'>1</a>
|
||||
- **Located on the first basement level** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D-1' target='_blank'>-1</a>
|
||||
|
||||
|
||||
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)
|
337
Docs/Layers/bike_shop.md
Normal file
337
Docs/Layers/bike_shop.md
Normal file
|
@ -0,0 +1,337 @@
|
|||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [bike_shop](#bike_shop)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [bike_shop-is-bicycle_shop](#bike_shop-is-bicycle_shop)
|
||||
+ [bike_shop-name](#bike_shop-name)
|
||||
+ [bike_shop-website](#bike_shop-website)
|
||||
+ [bike_shop-phone](#bike_shop-phone)
|
||||
+ [bike_shop-email](#bike_shop-email)
|
||||
+ [bike_shop-opening_hours](#bike_shop-opening_hours)
|
||||
+ [description](#description)
|
||||
+ [bike_shop-access](#bike_shop-access)
|
||||
+ [bike_repair_sells-bikes](#bike_repair_sells-bikes)
|
||||
+ [bike_repair_repairs-bikes](#bike_repair_repairs-bikes)
|
||||
+ [bike_repair_rents-bikes](#bike_repair_rents-bikes)
|
||||
+ [bike_repair_second-hand-bikes](#bike_repair_second-hand-bikes)
|
||||
+ [bike_repair_bike-pump-service](#bike_repair_bike-pump-service)
|
||||
+ [bike_repair_tools-service](#bike_repair_tools-service)
|
||||
+ [bike_repair_bike-wash](#bike_repair_bike-wash)
|
||||
+ [bike_cleaning-service:bicycle:cleaning:charge](#bike_cleaning-servicebicycle:cleaning:charge)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/bike_shop/bike_shop.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbicycle' target='_blank'>bicycle</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_rental' target='_blank'>bicycle_rental</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsports' target='_blank'>sports</a>&service:bicycle:retail!~^no$&service:bicycle:repair!~^no$&<a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dbicycle' target='_blank'>bicycle</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dcycling' target='_blank'>cycling</a>|
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/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/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/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/service:bicycle:cleaning:charge#values) [service:bicycle:cleaning:charge](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:charge) | [string](../SpecialInputElements.md#string) |
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_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_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### 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}`
|
||||
|
||||
|
||||
|
||||
### bike_shop-website
|
||||
|
||||
|
||||
|
||||
The question is **What is the website of {name}?**
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
### bike_shop-phone
|
||||
|
||||
|
||||
|
||||
The question is **What is the phone number of {name}?**
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||
|
||||
|
||||
|
||||
### bike_shop-email
|
||||
|
||||
|
||||
|
||||
The question is **What is the email address of {name}?**
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||
|
||||
|
||||
|
||||
### bike_shop-opening_hours
|
||||
|
||||
|
||||
|
||||
The question is **When is this shop opened?**
|
||||
|
||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||
This is rendered with `{opening_hours_table(opening_hours)}`
|
||||
|
||||
|
||||
|
||||
### description
|
||||
|
||||
|
||||
|
||||
The question is **Is there still something relevant you couldn't give in the previous questions? Add it here.<br/><span style='font-size: small'>Don't repeat already stated facts</span>**
|
||||
|
||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||
This is rendered with `{description}`
|
||||
|
||||
|
||||
|
||||
### 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 `Enkel voor {access}`
|
||||
|
||||
|
||||
|
||||
### bike_repair_sells-bikes
|
||||
|
||||
|
||||
|
||||
The question is **Does this shop sell bikes?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This shop sells bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail' target='_blank'>service:bicycle:retail</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes' target='_blank'>yes</a>
|
||||
- **This shop doesn't sell bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail' target='_blank'>service:bicycle:retail</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_repair_repairs-bikes
|
||||
|
||||
|
||||
|
||||
The question is **Does this shop repair bikes?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This shop repairs bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes' target='_blank'>yes</a>
|
||||
- **This shop doesn't repair bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno' target='_blank'>no</a>
|
||||
- **This shop only repairs bikes bought here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold' target='_blank'>only_sold</a>
|
||||
- **This shop only repairs bikes of a certain brand** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand' target='_blank'>brand</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_repair_rents-bikes
|
||||
|
||||
|
||||
|
||||
The question is **Does this shop rent out bikes?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This shop rents out bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental' target='_blank'>service:bicycle:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dyes' target='_blank'>yes</a>
|
||||
- **This shop doesn't rent out bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental' target='_blank'>service:bicycle:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_repair_second-hand-bikes
|
||||
|
||||
|
||||
|
||||
The question is **Does this shop sell second-hand bikes?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This shop sells second-hand bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand' target='_blank'>service:bicycle:second_hand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes' target='_blank'>yes</a>
|
||||
- **This shop doesn't sell second-hand bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand' target='_blank'>service:bicycle:second_hand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno' target='_blank'>no</a>
|
||||
- **This shop only sells second-hand bikes** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand' target='_blank'>service:bicycle:second_hand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly' target='_blank'>only</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>
|
||||
- **This shop doesn't offer a bike pump for anyone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno' target='_blank'>no</a>
|
||||
- **There is bicycle pump, it is shown as a separate point ** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dseparate' target='_blank'>separate</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dyes' target='_blank'>yes</a>
|
||||
- **This shop doesn't offer tools for DIY repair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dno' target='_blank'>no</a>
|
||||
- **Tools for DIY repair are only available if you bought/hire the bike in the shop** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Donly_sold' target='_blank'>only_sold</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### bike_repair_bike-wash
|
||||
|
||||
|
||||
|
||||
The question is **Are bicycles washed here?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This shop cleans bicycles** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning' target='_blank'>service:bicycle:cleaning</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dyes' target='_blank'>yes</a>
|
||||
- **This shop has an installation where one can clean bicycles themselves** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning' target='_blank'>service:bicycle:cleaning</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Ddiy' target='_blank'>diy</a>
|
||||
- **This shop doesn't offer bicycle cleaning** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning' target='_blank'>service:bicycle:cleaning</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dno&service:bicycle:cleaning:charge=' target='_blank'>no&service:bicycle:cleaning:charge=</a>
|
||||
- **Free to use** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dno' target='_blank'>no</a>_This option cannot be chosen as answer_
|
||||
- **The cleaning service has a fee, but the amount is not known** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dyes&service:bicycle:cleaning:charge=' target='_blank'>yes&service:bicycle:cleaning:charge=</a>_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
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)
|
163
Docs/Layers/bike_themed_object.md
Normal file
163
Docs/Layers/bike_themed_object.md
Normal file
|
@ -0,0 +1,163 @@
|
|||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [bike_themed_object](#bike_themed_object)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [description](#description)
|
||||
+ [website](#website)
|
||||
+ [email](#email)
|
||||
+ [phone](#phone)
|
||||
+ [opening_hours](#opening_hours)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/bike_themed_object/bike_themed_object.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:theme' target='_blank'>theme</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:theme%3Dbicycle' target='_blank'>bicycle</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:theme' target='_blank'>theme</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:theme%3Dcycling' target='_blank'>cycling</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dcycling' target='_blank'>cycling</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:association' target='_blank'>association</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:association%3Dcycling' target='_blank'>cycling</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:association' target='_blank'>association</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:association%3Dbicycle' target='_blank'>bicycle</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:ngo' target='_blank'>ngo</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:ngo%3Dcycling' target='_blank'>cycling</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:ngo' target='_blank'>ngo</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:ngo%3Dbicycle' target='_blank'>bicycle</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:club' target='_blank'>club</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:club%3Dbicycle' target='_blank'>bicycle</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:club' target='_blank'>club</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:club%3Dcycling' target='_blank'>cycling</a>
|
||||
|
||||
|
||||
|
||||
|
||||
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/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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### description
|
||||
|
||||
|
||||
|
||||
The question is **Is there still something relevant you couldn't give in the previous questions? Add it here.<br/><span style='font-size: small'>Don't repeat already stated facts</span>**
|
||||
|
||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||
This is rendered with `{description}`
|
||||
|
||||
|
||||
|
||||
### website
|
||||
|
||||
|
||||
|
||||
The question is **What is the website of {name}?**
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
|
||||
|
||||
### email
|
||||
|
||||
|
||||
|
||||
The question is **What is the email address of {name}?**
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||
|
||||
|
||||
|
||||
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
|
||||
|
||||
### phone
|
||||
|
||||
|
||||
|
||||
The question is **What is the phone number of {name}?**
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||
|
||||
|
||||
|
||||
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
|
||||
|
||||
### opening_hours
|
||||
|
||||
|
||||
|
||||
The question is **What are the opening hours of {name}?**
|
||||
|
||||
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 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)
|
114
Docs/Layers/binocular.md
Normal file
114
Docs/Layers/binocular.md
Normal file
|
@ -0,0 +1,114 @@
|
|||
|
||||
|
||||
binocular
|
||||
===========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/binocular/telescope.svg' height="100px">
|
||||
|
||||
Binoculas
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [binocular](#binocular)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [binocular-charge](#binocular-charge)
|
||||
+ [binocular-direction](#binocular-direction)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [binoculars](https://mapcomplete.osm.be/binoculars)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/binocular/binocular.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbinoculars' target='_blank'>binoculars</a>
|
||||
|
||||
|
||||
|
||||
|
||||
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/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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_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 <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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}°`
|
||||
|
||||
This document is autogenerated from [assets/layers/binocular/binocular.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/binocular/binocular.json)
|
142
Docs/Layers/birdhide.md
Normal file
142
Docs/Layers/birdhide.md
Normal file
|
@ -0,0 +1,142 @@
|
|||
|
||||
|
||||
birdhide
|
||||
==========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/birdhide/birdhide.svg' height="100px">
|
||||
|
||||
Een vogelkijkhut
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [birdhide](#birdhide)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [bird-hide-shelter-or-wall](#bird-hide-shelter-or-wall)
|
||||
+ [bird-hide-wheelchair](#bird-hide-wheelchair)
|
||||
+ [birdhide-operator](#birdhide-operator)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [nature](https://mapcomplete.osm.be/nature)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/birdhide/birdhide.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dbird_hide' target='_blank'>bird_hide</a>
|
||||
|
||||
|
||||
|
||||
|
||||
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/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)
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### bird-hide-shelter-or-wall
|
||||
|
||||
|
||||
|
||||
The question is **Is dit een kijkwand of kijkhut?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Vogelkijkwand** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:shelter' target='_blank'>shelter</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shelter%3Dno' target='_blank'>no</a>
|
||||
- **Vogelkijkhut** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dshelter' target='_blank'>shelter</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes' target='_blank'>yes</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:shelter' target='_blank'>shelter</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shelter%3Dyes' target='_blank'>yes</a>
|
||||
- **Vogelkijktoren** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dtower' target='_blank'>tower</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:bird_hide' target='_blank'>bird_hide</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bird_hide%3Dtower' target='_blank'>tower</a>
|
||||
- **Vogelkijkhut** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dshelter' target='_blank'>shelter</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes' target='_blank'>yes</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:shelter' target='_blank'>shelter</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shelter%3Dyes' target='_blank'>yes</a>_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
|
||||
|
||||
### bird-hide-wheelchair
|
||||
|
||||
|
||||
|
||||
The question is **Is deze vogelkijkplaats rolstoeltoegankelijk?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Er zijn speciale voorzieningen voor rolstoelen** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>
|
||||
- **Een rolstoel raakt er vlot** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>
|
||||
- **Je kan er raken met een rolstoel, maar het is niet makkelijk** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited' target='_blank'>limited</a>
|
||||
- **Niet rolstoeltoegankelijk** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### birdhide-operator
|
||||
|
||||
|
||||
|
||||
The question is **Wie beheert deze vogelkijkplaats?**
|
||||
|
||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||
This is rendered with `Beheer door {operator}`
|
||||
|
||||
|
||||
|
||||
- **Beheer door Natuurpunt** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt' target='_blank'>Natuurpunt</a>
|
||||
- **Beheer door het Agentschap Natuur en Bos ** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgentschap Natuur en Bos' target='_blank'>Agentschap Natuur en Bos</a>
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/birdhide/birdhide.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/birdhide/birdhide.json)
|
73
Docs/Layers/brugge.md
Normal file
73
Docs/Layers/brugge.md
Normal file
|
@ -0,0 +1,73 @@
|
|||
brugge
|
||||
========
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [brugge](#brugge)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [status](#status)
|
||||
+ [has closeby](#has-closeby)
|
||||
+ [openbaar](#openbaar)
|
||||
+ [addr](#addr)
|
||||
+ [oh](#oh)
|
||||
|
||||
|
||||
- <img src='../warning.svg' height='1rem'/> This layer is loaded from an external source, namely `https://raw.githubusercontent.com/pietervdvn/pietervdvn.github.io/master/aeds_brugge.json`
|
||||
- This layer will automatically load [defibrillator](./defibrillator.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_osm_aed)
|
||||
|
||||
[Go to the source code](../assets/layers/brugge/brugge.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- Brugs volgnummer~^..*$
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/status#values) [status](https://wiki.openstreetmap.org/wiki/Key:status) | Multiple choice | [oud](https://wiki.openstreetmap.org/wiki/Tag:status%3Doud)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/Lokaal AED#values) [Lokaal AED](https://wiki.openstreetmap.org/wiki/Key:Lokaal AED) | Multiple choice |
|
||||
|
||||
### status
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
- **<div class='alert'>Dit datapunt is verouderd</div>** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:status' target='_blank'>status</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:status%3Doud' target='_blank'>oud</a>
|
||||
|
||||
### has closeby
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
### openbaar
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
- **Bevindt zich in een openbaar gebouw: <b>{Openbare AED Gebouw}</b> in lokaal <b>{Lokaal AED}</b>** corresponds with
|
||||
Lokaal AED~^..*$
|
||||
|
||||
### addr
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
### oh
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
This document is autogenerated from assets/layers/brugge/brugge.json
|
261
Docs/Layers/cafe_pub.md
Normal file
261
Docs/Layers/cafe_pub.md
Normal file
|
@ -0,0 +1,261 @@
|
|||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [cafe_pub](#cafe_pub)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [Name](#name)
|
||||
+ [Classification](#classification)
|
||||
+ [opening_hours](#opening_hours)
|
||||
+ [website](#website)
|
||||
+ [email](#email)
|
||||
+ [phone](#phone)
|
||||
+ [payment-options](#payment-options)
|
||||
+ [wheelchair-access](#wheelchair-access)
|
||||
+ [service:electricity](#serviceelectricity)
|
||||
+ [dog-access](#dog-access)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [cafes_and_pubs](https://mapcomplete.osm.be/cafes_and_pubs)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/cafe_pub/cafe_pub.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbar' target='_blank'>bar</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpub' target='_blank'>pub</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe' target='_blank'>cafe</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbiergarten' target='_blank'>biergarten</a>
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/amenity#values) [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [pub](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpub) [bar](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbar) [cafe](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe) [restaurant](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant) [biergarten](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbiergarten)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/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/service:electricity#values) [service:electricity](https://wiki.openstreetmap.org/wiki/Key:service:electricity) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dlimited) [ask](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask) [no](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/dog#values) [dog](https://wiki.openstreetmap.org/wiki/Key:dog) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno) [leashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed) [unleashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed)
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Name
|
||||
|
||||
|
||||
|
||||
The question is **What is the name of this pub?**
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
This is rendered with `This pub is named {name}`
|
||||
|
||||
|
||||
|
||||
### Classification
|
||||
|
||||
|
||||
|
||||
The question is **What kind of cafe is this**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Dit is <b>een bruin café of een kroeg</b> waar voornamelijk bier wordt gedronken. De inrichting is typisch gezellig met veel houtwerk ** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpub' target='_blank'>pub</a>
|
||||
- **Dit is een <b>bar</b> waar men ter plaatse alcoholische drank nuttigt. De inrichting is typisch modern en commercieel, soms met lichtinstallatie en feestmuziek** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbar' target='_blank'>bar</a>
|
||||
- **Dit is een <b>cafe</b> - een plaats waar men rustig kan zitten om een thee, koffie of alcoholische drank te nuttigen.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe' target='_blank'>cafe</a>
|
||||
- **Dit is een <b>restaurant</b> waar men een maaltijd geserveerd krijgt** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant' target='_blank'>restaurant</a>
|
||||
- **Een open ruimte waar bier geserveerd wordt. Typisch in Duitsland** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbiergarten' target='_blank'>biergarten</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### opening_hours
|
||||
|
||||
|
||||
|
||||
The question is **What are the opening hours of {name}?**
|
||||
|
||||
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 {name}?**
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
|
||||
|
||||
### email
|
||||
|
||||
|
||||
|
||||
The question is **What is the email address of {name}?**
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||
|
||||
|
||||
|
||||
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
|
||||
|
||||
### phone
|
||||
|
||||
|
||||
|
||||
The question is **What is the phone number of {name}?**
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||
|
||||
|
||||
|
||||
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
|
||||
|
||||
### payment-options
|
||||
|
||||
|
||||
|
||||
The question is **Which methods of payment are accepted here?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Cash is accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dno' target='_blank'>no</a>
|
||||
- **Payment cards are accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### wheelchair-access
|
||||
|
||||
|
||||
|
||||
The question is **Is this place accessible with a wheelchair?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This place is specially adapted for wheelchair users** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>
|
||||
- **This place is easily reachable with a wheelchair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>
|
||||
- **It is possible to reach this place in a wheelchair, but it is not easy** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited' target='_blank'>limited</a>
|
||||
- **This place is not reachable with a wheelchair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### service:electricity
|
||||
|
||||
|
||||
|
||||
The question is **Does this amenity have electrical outlets, available to customers when they are inside?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dyes' target='_blank'>yes</a>
|
||||
- **There are a few domestic sockets available to customers seated indoors, where they can charge their electronics** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dlimited' target='_blank'>limited</a>
|
||||
- **There are no sockets available indoors to customers, but charging might be possible if the staff is asked** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask' target='_blank'>ask</a>
|
||||
- **There are a no domestic sockets available to customers seated indoors** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### dog-access
|
||||
|
||||
|
||||
|
||||
The question is **Are dogs allowed in this business?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Dogs are allowed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes' target='_blank'>yes</a>
|
||||
- **Dogs are <b>not</b> allowed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno' target='_blank'>no</a>
|
||||
- **Dogs are allowed, but they have to be leashed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed' target='_blank'>leashed</a>
|
||||
- **Dogs are allowed and can run around freely** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed' target='_blank'>unleashed</a>
|
||||
|
||||
|
||||
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)
|
196
Docs/Layers/caravansites.md
Normal file
196
Docs/Layers/caravansites.md
Normal file
|
@ -0,0 +1,196 @@
|
|||
caravansites
|
||||
==============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/campersite/caravan.svg' height="100px">
|
||||
|
||||
camper sites
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [caravansites](#caravansites)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [caravansites-name](#caravansites-name)
|
||||
+ [caravansites-fee](#caravansites-fee)
|
||||
+ [caravansites-charge](#caravansites-charge)
|
||||
+ [caravansites-sanitary-dump](#caravansites-sanitary-dump)
|
||||
+ [caravansites-capacity](#caravansites-capacity)
|
||||
+ [caravansites-internet](#caravansites-internet)
|
||||
+ [caravansites-internet-fee](#caravansites-internet-fee)
|
||||
+ [caravansites-toilets](#caravansites-toilets)
|
||||
+ [caravansites-website](#caravansites-website)
|
||||
+ [caravansites-long-term](#caravansites-long-term)
|
||||
+ [caravansites-description](#caravansites-description)
|
||||
+ [questions](#questions)
|
||||
+ [reviews](#reviews)
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
- [campersite](https://mapcomplete.osm.be/campersite)
|
||||
|
||||
[Go to the source code](../assets/layers/caravansites/caravansites.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dcaravan_site' target='_blank'>caravan_site</a>
|
||||
- permanent_camping!~^only$
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/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) |
|
||||
|
||||
### images
|
||||
|
||||
_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 <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>
|
||||
fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>
|
||||
- **Can be used for free** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>
|
||||
fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>
|
||||
- **Can be used for free** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>
|
||||
fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>_This option cannot be chosen
|
||||
as answer_
|
||||
|
||||
### 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}`
|
||||
|
||||
### caravansites-sanitary-dump
|
||||
|
||||
The question is **Does this place have a sanitary dump station?**
|
||||
|
||||
- **This place has a sanitary dump station** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station' target='_blank'>sanitary_dump_station</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station%3Dyes' target='_blank'>yes</a>
|
||||
- **This place does not have a sanitary dump station** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station' target='_blank'>sanitary_dump_station</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station%3Dno' target='_blank'>no</a>
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dyes' target='_blank'>yes</a>
|
||||
- **There is internet access** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwifi' target='_blank'>wifi</a>
|
||||
|<a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan' target='_blank'>wlan</a>_This option cannot
|
||||
be chosen as answer_
|
||||
- **There is no internet access** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno' target='_blank'>no</a>
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access:fee' target='_blank'>internet_access:fee</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes' target='_blank'>yes</a>
|
||||
- **You do not need to pay extra for internet access** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access:fee' target='_blank'>internet_access:fee</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno' target='_blank'>no</a>
|
||||
|
||||
### caravansites-toilets
|
||||
|
||||
The question is **Does this place have toilets?**
|
||||
|
||||
- **This place has toilets** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>
|
||||
toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
|
||||
- **This place does not have toilets** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno' target='_blank'>no</a>
|
||||
|
||||
### 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?**
|
||||
|
||||
- **Yes, there are some spots for long term rental, but you can also stay on a daily basis** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:permanent_camping' target='_blank'>permanent_camping</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dyes' target='_blank'>yes</a>
|
||||
- **No, there are no permanent guests here** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:permanent_camping' target='_blank'>permanent_camping</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dno' target='_blank'>no</a>
|
||||
- **It is only possible to stay here if you have a long term contract(this place will disappear from this map if you
|
||||
choose this)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:permanent_camping' target='_blank'>
|
||||
permanent_camping</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Donly' target='_blank'>
|
||||
only</a>
|
||||
|
||||
### 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
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
### reviews
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
This document is autogenerated from assets/layers/caravansites/caravansites.json
|
1592
Docs/Layers/charging_station.md
Normal file
1592
Docs/Layers/charging_station.md
Normal file
File diff suppressed because it is too large
Load diff
131
Docs/Layers/climbing.md
Normal file
131
Docs/Layers/climbing.md
Normal file
|
@ -0,0 +1,131 @@
|
|||
climbing
|
||||
==========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/climbing/climbing_no_rope.svg' height="100px">
|
||||
|
||||
A climbing opportunity
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [climbing](#climbing)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [questions](#questions)
|
||||
+ [minimap](#minimap)
|
||||
+ [Contained routes length hist](#contained-routes-length-hist)
|
||||
+ [Contained routes hist](#contained-routes-hist)
|
||||
+ [Contained_climbing_routes](#contained_climbing_routes)
|
||||
+ [name](#name)
|
||||
+ [Type](#type)
|
||||
+ [Rock type (crag/rock/cliff only)](#rock-type-(cragrock/cliff-only))
|
||||
+ [reviews](#reviews)
|
||||
|
||||
|
||||
- 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)
|
||||
|
||||
[Go to the source code](../assets/layers/climbing/climbing.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dclimbing' target='_blank'>climbing</a>
|
||||
- climbing!~^route$
|
||||
- leisure!~^sports_centre$
|
||||
- climbing!~^route_top$
|
||||
- climbing!~^route_bottom$
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing#values) [climbing](https://wiki.openstreetmap.org/wiki/Key:climbing) | Multiple choice | [boulder](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dboulder) [crag](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dcrag) [area](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Darea)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/rock#values) [rock](https://wiki.openstreetmap.org/wiki/Key:rock) | [string](../SpecialInputElements.md#string) | [limestone](https://wiki.openstreetmap.org/wiki/Tag:rock%3Dlimestone)
|
||||
|
||||
### images
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
### questions
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
### minimap
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
### 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_
|
||||
|
||||
### name
|
||||
|
||||
The question is **What is the name of this climbing opportunity?**
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
This is rendered with `<strong>{name}</strong>`
|
||||
|
||||
- **This climbing opportunity doesn't have a name** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
### Type
|
||||
|
||||
The question is **What kind of climbing opportunity is this?**
|
||||
|
||||
- **A climbing boulder - a single rock or cliff with one or a few climbing routes which can be climbed safely without
|
||||
rope** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dboulder' target='_blank'>boulder</a>
|
||||
- **A climbing crag - a single rock or cliff with at least a few climbing routes** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dcrag' target='_blank'>crag</a>
|
||||
- **A climbing area with one or more climbing crags and/or boulders** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Darea' target='_blank'>area</a>
|
||||
|
||||
### Rock type (crag/rock/cliff only)
|
||||
|
||||
The question is **What is the rock type here?**
|
||||
|
||||
This rendering asks information about the property [rock](https://wiki.openstreetmap.org/wiki/Key:rock)
|
||||
This is rendered with `The rock type is {rock}`
|
||||
|
||||
- **Limestone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:rock' target='_blank'>rock</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:rock%3Dlimestone' target='_blank'>limestone</a>
|
||||
|
||||
### reviews
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
This document is autogenerated from assets/layers/climbing/climbing.json
|
109
Docs/Layers/climbing_club.md
Normal file
109
Docs/Layers/climbing_club.md
Normal file
|
@ -0,0 +1,109 @@
|
|||
climbing_club
|
||||
===============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/climbing/club.svg' height="100px">
|
||||
|
||||
A climbing club or organisations
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [climbing_club](#climbing_club)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [climbing_club-name](#climbing_club-name)
|
||||
+ [minimap](#minimap)
|
||||
+ [website](#website)
|
||||
+ [email](#email)
|
||||
+ [phone](#phone)
|
||||
+ [opening_hours](#opening_hours)
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
- [climbing](https://mapcomplete.osm.be/climbing)
|
||||
|
||||
[Go to the source code](../assets/layers/climbing_club/climbing_club.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:club' target='_blank'>club</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:club%3Dclimbing' target='_blank'>climbing</a>
|
||||
|<a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dclimbing' target='_blank'>climbing</a>&office~^..*$|club~
|
||||
^..*$
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/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) |
|
||||
|
||||
### 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>`
|
||||
|
||||
### minimap
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
### website
|
||||
|
||||
The question is **What is the website of {name}?**
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||
|
||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This
|
||||
option cannot be chosen as answer_
|
||||
|
||||
### email
|
||||
|
||||
The question is **What is the email address of {name}?**
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||
|
||||
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This
|
||||
option cannot be chosen as answer_
|
||||
|
||||
### phone
|
||||
|
||||
The question is **What is the phone number of {name}?**
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||
|
||||
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be
|
||||
chosen as answer_
|
||||
|
||||
### opening_hours
|
||||
|
||||
The question is **What are the opening hours of {name}?**
|
||||
|
||||
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 document is autogenerated from assets/layers/climbing_club/climbing_club.json
|
123
Docs/Layers/climbing_gym.md
Normal file
123
Docs/Layers/climbing_gym.md
Normal file
|
@ -0,0 +1,123 @@
|
|||
climbing_gym
|
||||
==============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/climbing/climbing_gym.svg' height="100px">
|
||||
|
||||
A climbing gym
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [climbing_gym](#climbing_gym)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [questions](#questions)
|
||||
+ [minimap](#minimap)
|
||||
+ [name](#name)
|
||||
+ [website](#website)
|
||||
+ [phone](#phone)
|
||||
+ [email](#email)
|
||||
+ [opening_hours](#opening_hours)
|
||||
+ [reviews](#reviews)
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
- [climbing](https://mapcomplete.osm.be/climbing)
|
||||
|
||||
[Go to the source code](../assets/layers/climbing_gym/climbing_gym.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dclimbing' target='_blank'>climbing</a>
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dsports_centre' target='_blank'>sports_centre</a>
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/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) |
|
||||
|
||||
### images
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
### questions
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
### minimap
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
### 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 {name}?**
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||
|
||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This
|
||||
option cannot be chosen as answer_
|
||||
|
||||
### phone
|
||||
|
||||
The question is **What is the phone number of {name}?**
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||
|
||||
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be
|
||||
chosen as answer_
|
||||
|
||||
### email
|
||||
|
||||
The question is **What is the email address of {name}?**
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||
|
||||
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This
|
||||
option cannot be chosen as answer_
|
||||
|
||||
### opening_hours
|
||||
|
||||
The question is **What are the opening hours of {name}?**
|
||||
|
||||
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)}`
|
||||
|
||||
### reviews
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
This document is autogenerated from assets/layers/climbing_gym/climbing_gym.json
|
139
Docs/Layers/climbing_route.md
Normal file
139
Docs/Layers/climbing_route.md
Normal file
|
@ -0,0 +1,139 @@
|
|||
climbing_route
|
||||
================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/climbing/climbing_route.svg' height="100px">
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [climbing_route](#climbing_route)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [questions](#questions)
|
||||
+ [minimap](#minimap)
|
||||
+ [Name](#name)
|
||||
+ [Length](#length)
|
||||
+ [Difficulty](#difficulty)
|
||||
+ [Bolts](#bolts)
|
||||
+ [Description](#description)
|
||||
+ [Rock type](#rock-type)
|
||||
+ [reviews](#reviews)
|
||||
|
||||
|
||||
- This layer is needed as dependency for layer [climbing](#climbing)
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
- [climbing](https://mapcomplete.osm.be/climbing)
|
||||
|
||||
[Go to the source code](../assets/layers/climbing_route/climbing_route.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Droute' target='_blank'>route</a>
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing: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) |
|
||||
|
||||
### images
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
### questions
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
### minimap
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
### 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 difficulty 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 difficulty is {climbing:grade:french} according to the french/belgian system`
|
||||
|
||||
### Bolts
|
||||
|
||||
The question is **How much bolts does this route have before reaching the moulinette?**
|
||||
|
||||
This rendering asks information about the
|
||||
property [climbing:bolts](https://wiki.openstreetmap.org/wiki/Key:climbing:bolts)
|
||||
This is rendered with `This route has {climbing:bolts} bolts`
|
||||
|
||||
- **This route is not bolted** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:bolted' target='_blank'>climbing:bolted</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:bolted%3Dno' target='_blank'>no</a>_This option cannot be
|
||||
chosen as answer_
|
||||
- **This route is not bolted** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:bolted' target='_blank'>climbing:bolted</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:bolted%3Dno&climbing:bolts=' target='_blank'>no&climbing:
|
||||
bolts=</a>
|
||||
|
||||
### Description
|
||||
|
||||
The question is **Is there other relevant info?**
|
||||
|
||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||
This is rendered with `<h3>Description</h3><br/>{description}`
|
||||
|
||||
### Rock type
|
||||
|
||||
_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>`
|
||||
|
||||
### reviews
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
This document is autogenerated from assets/layers/climbing_route/climbing_route.json
|
62
Docs/Layers/cluster_style.md
Normal file
62
Docs/Layers/cluster_style.md
Normal file
|
@ -0,0 +1,62 @@
|
|||
|
||||
|
||||
cluster_style
|
||||
===============
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
The style for the clustering in all themes. Enable `debug=true` to peak into clustered tiles
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [cluster_style](#cluster_style)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [all_tags](#all_tags)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/cluster_style/cluster_style.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- tileId~^..*$
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### all_tags
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/cluster_style/cluster_style.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/cluster_style/cluster_style.json)
|
39
Docs/Layers/conflation.md
Normal file
39
Docs/Layers/conflation.md
Normal file
|
@ -0,0 +1,39 @@
|
|||
conflation
|
||||
============
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
If the import-button moves OSM points, the imported way points or conflates, a preview is shown. This layer defines how
|
||||
this preview is rendered. This layer cannot be included in a theme.
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [conflation](#conflation)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
|
||||
[Go to the source code](../assets/layers/conflation/conflation.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:move' target='_blank'>move</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:move%3Dyes' target='_blank'>yes</a>
|
||||
|<a href='https://wiki.openstreetmap.org/wiki/Key:newpoint' target='_blank'>newpoint</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:newpoint%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from assets/layers/conflation/conflation.json
|
62
Docs/Layers/crab_address.md
Normal file
62
Docs/Layers/crab_address.md
Normal file
|
@ -0,0 +1,62 @@
|
|||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [crab_address](#crab_address)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [render_crab](#render_crab)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <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`
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/crab_address/crab_address.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- HUISNR~^..*$
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### render_crab
|
||||
|
||||
|
||||
|
||||
_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)
|
222
Docs/Layers/crossings.md
Normal file
222
Docs/Layers/crossings.md
Normal file
|
@ -0,0 +1,222 @@
|
|||
|
||||
|
||||
crossings
|
||||
===========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/crossings/pedestrian_crossing.svg' height="100px">
|
||||
|
||||
Crossings for pedestrians and cyclists
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [crossings](#crossings)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [crossing-type](#crossing-type)
|
||||
+ [crossing-is-zebra](#crossing-is-zebra)
|
||||
+ [crossing-bicycle-allowed](#crossing-bicycle-allowed)
|
||||
+ [crossing-has-island](#crossing-has-island)
|
||||
+ [crossing-tactile](#crossing-tactile)
|
||||
+ [crossing-button](#crossing-button)
|
||||
+ [crossing-right-turn-through-red](#crossing-right-turn-through-red)
|
||||
+ [crossing-continue-through-red](#crossing-continue-through-red)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- 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)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/crossings/crossings.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dtraffic_signals' target='_blank'>traffic_signals</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dcrossing' target='_blank'>crossing</a>
|
||||
|
||||
|
||||
|
||||
|
||||
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/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/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)
|
||||
|
||||
|
||||
|
||||
|
||||
### crossing-type
|
||||
|
||||
|
||||
|
||||
The question is **What kind of crossing is this?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Crossing, without traffic lights** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Duncontrolled' target='_blank'>uncontrolled</a>
|
||||
- **Crossing with traffic signals** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dtraffic_signals' target='_blank'>traffic_signals</a>
|
||||
- **Zebra crossing** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dzebra' target='_blank'>zebra</a>_This option cannot be chosen as answer_
|
||||
- **Crossing without crossing markings** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing' target='_blank'>crossing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dunmarked' target='_blank'>unmarked</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### crossing-is-zebra
|
||||
|
||||
|
||||
|
||||
The question is **Is this is a zebra crossing?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This is a zebra crossing** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing_ref' target='_blank'>crossing_ref</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing_ref%3Dzebra' target='_blank'>zebra</a>
|
||||
- **This is not a zebra crossing** corresponds with
|
||||
|
||||
|
||||
|
||||
|
||||
### crossing-bicycle-allowed
|
||||
|
||||
|
||||
|
||||
The question is **Is this crossing also for bicycles?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **A cyclist can use this crossing** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes' target='_blank'>yes</a>
|
||||
- **A cyclist can not use this crossing** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:crossing:island' target='_blank'>crossing:island</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dyes' target='_blank'>yes</a>
|
||||
- **This crossing does not have an island in the middle** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing:island' target='_blank'>crossing:island</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### crossing-tactile
|
||||
|
||||
|
||||
|
||||
The question is **Does this crossing have tactile paving?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This crossing has tactile paving** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:tactile_paving' target='_blank'>tactile_paving</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dyes' target='_blank'>yes</a>
|
||||
- **This crossing does not have tactile paving** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:tactile_paving' target='_blank'>tactile_paving</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dno' target='_blank'>no</a>
|
||||
- **This crossing has tactile paving, but is not correct** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:tactile_paving' target='_blank'>tactile_paving</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dincorrect' target='_blank'>incorrect</a>_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:button_operated' target='_blank'>button_operated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:button_operated%3Dyes' target='_blank'>yes</a>
|
||||
- **This traffic light does not have a button to request green light** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:button_operated' target='_blank'>button_operated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:button_operated%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <img src='./assets/layers/crossings/Belgian_road_sign_B22.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:right:bicycle' target='_blank'>red_turn:right:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dyes' target='_blank'>yes</a>
|
||||
- **A cyclist can turn right if the light is red** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:right:bicycle' target='_blank'>red_turn:right:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dyes' target='_blank'>yes</a>
|
||||
- **A cyclist can not turn right if the light is red** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:right:bicycle' target='_blank'>red_turn:right:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <img src='./assets/layers/crossings/Belgian_road_sign_B23.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:straight:bicycle' target='_blank'>red_turn:straight:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dyes' target='_blank'>yes</a>
|
||||
- **A cyclist can go straight on if the light is red** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:straight:bicycle' target='_blank'>red_turn:straight:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dyes' target='_blank'>yes</a>
|
||||
- **A cyclist can not go straight on if the light is red** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:red_turn:straight:bicycle' target='_blank'>red_turn:straight:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/crossings/crossings.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/crossings/crossings.json)
|
44
Docs/Layers/current_view.md
Normal file
44
Docs/Layers/current_view.md
Normal file
|
@ -0,0 +1,44 @@
|
|||
current_view
|
||||
==============
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
A meta-layer which contains one single feature, namely the BBOX of the current map view. This can be used to trigger
|
||||
special actions. If a popup is defined for this layer, this popup will be accessible via an extra button on screen.
|
||||
|
||||
The icon on the button is the default icon of the layer, but can be customized by detecting 'button=yes'.
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [current_view](#current_view)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
|
||||
|
||||
- This layer is not visible by default and must be enabled in the filter by the user.
|
||||
- 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`
|
||||
|
||||
[Go to the source code](../assets/layers/current_view/current_view.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:current_view' target='_blank'>current_view</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:current_view%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from assets/layers/current_view/current_view.json
|
107
Docs/Layers/cycle_highways.md
Normal file
107
Docs/Layers/cycle_highways.md
Normal file
|
@ -0,0 +1,107 @@
|
|||
cycle_highways
|
||||
================
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [cycle_highways](#cycle_highways)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [cycle_highways-name](#cycle_highways-name)
|
||||
+ [cycle_highways-ref](#cycle_highways-ref)
|
||||
+ [cycle_highways-state](#cycle_highways-state)
|
||||
+ [cycle-highway-length](#cycle-highway-length)
|
||||
+ [website](#website)
|
||||
+ [all_tags](#all_tags)
|
||||
|
||||
|
||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||
|
||||
[Go to the source code](../assets/layers/cycle_highways/cycle_highways.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_network' target='_blank'>cycle_network</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_network%3DBE-VLG:cycle_highway' target='_blank'>BE-VLG:
|
||||
cycle_highway</a>
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/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/state#values) [state](https://wiki.openstreetmap.org/wiki/Key:state) | [string](../SpecialInputElements.md#string) | [proposed](https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed) [proposed](https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed) [proposed](https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed) [temporary](https://wiki.openstreetmap.org/wiki/Tag:state%3Dtemporary) [](https://wiki.openstreetmap.org/wiki/Tag:state%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) |
|
||||
|
||||
### cycle_highways-name
|
||||
|
||||
The question is **What is the name of this cycle highway?**
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
This is rendered with `The name is <b>{name}</b>`
|
||||
|
||||
### cycle_highways-ref
|
||||
|
||||
The question is **What is the reference number of this cycle highway?**
|
||||
|
||||
This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref)
|
||||
This is rendered with `Referentienummer is <b>{ref}</b>`
|
||||
|
||||
### cycle_highways-state
|
||||
|
||||
The question is **What is the state of this link?**
|
||||
|
||||
This rendering asks information about the property [state](https://wiki.openstreetmap.org/wiki/Key:state)
|
||||
This is rendered with `The current state of this link is {state}`
|
||||
|
||||
- **This is a proposed route which can be cycled** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:state' target='_blank'>state</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed' target='_blank'>proposed</a>
|
||||
- **This is a proposed route which has missing links (thus: some parts don't even have a building permit yet)**
|
||||
corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:state' target='_blank'>state</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed' target='_blank'>proposed</a>
|
||||
&<a href='https://wiki.openstreetmap.org/wiki/Key:note:state' target='_blank'>note:state</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:note:state%3Dhas_highway_no' target='_blank'>has_highway_no</a>
|
||||
- **This is a proposed route which has some links which are under construction** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:state' target='_blank'>state</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed' target='_blank'>proposed</a>
|
||||
&<a href='https://wiki.openstreetmap.org/wiki/Key:note:state' target='_blank'>note:state</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:note:state%3Dhas_highway_under_construction' target='_blank'>
|
||||
has_highway_under_construction</a>
|
||||
- **This is a temporary deviation** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:state' target='_blank'>state</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:state%3Dtemporary' target='_blank'>temporary</a>
|
||||
- **This link is operational and signposted** corresponds with
|
||||
|
||||
### cycle-highway-length
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
### website
|
||||
|
||||
The question is **What is the website of {name}?**
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||
|
||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This
|
||||
option cannot be chosen as answer_
|
||||
|
||||
### all_tags
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
This document is autogenerated from assets/layers/cycle_highways/cycle_highways.json
|
418
Docs/Layers/cycleways_and_roads.md
Normal file
418
Docs/Layers/cycleways_and_roads.md
Normal file
|
@ -0,0 +1,418 @@
|
|||
|
||||
|
||||
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"
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [cycleways_and_roads](#cycleways_and_roads)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [Cycleway type for a road](#cycleway-type-for-a-road)
|
||||
+ [is lit?](#is-lit)
|
||||
+ [Is this a cyclestreet? (For a road)](#is-this-a-cyclestreet-(for-a-road))
|
||||
+ [Maxspeed (for road)](#maxspeed-(for-road))
|
||||
+ [Cycleway:surface](#cyclewaysurface)
|
||||
+ [Cycleway:smoothness](#cyclewaysmoothness)
|
||||
+ [Surface of the road](#surface-of-the-road)
|
||||
+ [Surface of the street](#surface-of-the-street)
|
||||
+ [width:carriageway](#widthcarriageway)
|
||||
+ [cycleway-lane-track-traffic-signs](#cycleway-lane-track-traffic-signs)
|
||||
+ [cycleway-traffic-signs](#cycleway-traffic-signs)
|
||||
+ [cycleway-traffic-signs-supplementary](#cycleway-traffic-signs-supplementary)
|
||||
+ [cycleway-traffic-signs-D7-supplementary](#cycleway-traffic-signs-d7-supplementary)
|
||||
+ [cycleways_and_roads-cycleway:buffer](#cycleways_and_roads-cyclewaybuffer)
|
||||
+ [cyclelan-segregation](#cyclelan-segregation)
|
||||
+ [cycleway-segregation](#cycleway-segregation)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is needed as dependency for layer [barrier](#barrier)
|
||||
- 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 [crossings](#crossings)
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [cycle_infra](https://mapcomplete.osm.be/cycle_infra)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/cycleways_and_roads/cycleways_and_roads.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dcycleway' target='_blank'>cycleway</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dlane' target='_blank'>lane</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dshared_lane' target='_blank'>shared_lane</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dtrack' target='_blank'>track</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:cyclestreet' target='_blank'>cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes' target='_blank'>yes</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dresidential' target='_blank'>residential</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dtertiary' target='_blank'>tertiary</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dunclassified' target='_blank'>unclassified</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dprimary' target='_blank'>primary</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dsecondary' target='_blank'>secondary</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dpath' target='_blank'>path</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Ddesignated' target='_blank'>designated</a>
|
||||
|
||||
|
||||
|
||||
|
||||
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/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) | [length](../SpecialInputElements.md#length) |
|
||||
[<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) [none](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3Dnone)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cycleway:buffer#values) [cycleway:buffer](https://wiki.openstreetmap.org/wiki/Key:cycleway:buffer) | [length](../SpecialInputElements.md#length) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cycleway: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)
|
||||
|
||||
|
||||
|
||||
|
||||
### Cycleway type for a road
|
||||
|
||||
|
||||
|
||||
The question is **What kind of cycleway is here?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **There is a shared lane** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dshared_lane' target='_blank'>shared_lane</a>
|
||||
- **There is a lane next to the road (separated with paint)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dlane' target='_blank'>lane</a>
|
||||
- **There is a track, but no cycleway drawn separately from this road on the map.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dtrack' target='_blank'>track</a>
|
||||
- **There is a separately drawn cycleway** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dseparate' target='_blank'>separate</a>
|
||||
- **There is no cycleway** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dno' target='_blank'>no</a>
|
||||
- **There is no cycleway** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### is lit?
|
||||
|
||||
|
||||
|
||||
The question is **Is this street lit?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This street is lit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes' target='_blank'>yes</a>
|
||||
- **This road is not lit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno' target='_blank'>no</a>
|
||||
- **This road is lit at night** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dsunset-sunrise' target='_blank'>sunset-sunrise</a>_This option cannot be chosen as answer_
|
||||
- **This road is lit 24/7** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7' target='_blank'>24/7</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:cyclestreet' target='_blank'>cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes' target='_blank'>yes</a>
|
||||
- **This is a cyclestreet** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cyclestreet' target='_blank'>cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes' target='_blank'>yes</a>
|
||||
- **This is not a cyclestreet.** corresponds with
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D20' target='_blank'>20</a>
|
||||
- **The maximum speed is 30 km/h** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D30' target='_blank'>30</a>
|
||||
- **The maximum speed is 50 km/h** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D50' target='_blank'>50</a>
|
||||
- **The maximum speed is 70 km/h** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D70' target='_blank'>70</a>
|
||||
- **The maximum speed is 90 km/h** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D90' target='_blank'>90</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dunpaved' target='_blank'>unpaved</a>_This option cannot be chosen as answer_
|
||||
- **This cycleway is paved** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dpaved' target='_blank'>paved</a>_This option cannot be chosen as answer_
|
||||
- **This cycleway is made of asphalt** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dasphalt' target='_blank'>asphalt</a>
|
||||
- **This cycleway is made of smooth paving stones** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dpaving_stones' target='_blank'>paving_stones</a>
|
||||
- **This cycleway is made of concrete** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dconcrete' target='_blank'>concrete</a>
|
||||
- **This cycleway is made of cobblestone (unhewn or sett)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dcobblestone' target='_blank'>cobblestone</a>_This option cannot be chosen as answer_
|
||||
- **This cycleway is made of raw, natural cobblestone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dunhewn_cobblestone' target='_blank'>unhewn_cobblestone</a>
|
||||
- **This cycleway is made of flat, square cobblestone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dsett' target='_blank'>sett</a>
|
||||
- **This cycleway is made of wood** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dwood' target='_blank'>wood</a>
|
||||
- **This cycleway is made of gravel** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dgravel' target='_blank'>gravel</a>
|
||||
- **This cycleway is made of fine gravel** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dfine_gravel' target='_blank'>fine_gravel</a>
|
||||
- **This cycleway is made of pebblestone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dpebblestone' target='_blank'>pebblestone</a>
|
||||
- **This cycleway is made from raw ground** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dground' target='_blank'>ground</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### Cycleway:smoothness
|
||||
|
||||
|
||||
|
||||
The question is **What is the smoothness of this cycleway?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Usable for thin rollers: rollerblade, skateboard** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dexcellent' target='_blank'>excellent</a>
|
||||
- **Usable for thin wheels: racing bike** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dgood' target='_blank'>good</a>
|
||||
- **Usable for normal wheels: city bike, wheelchair, scooter** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dintermediate' target='_blank'>intermediate</a>
|
||||
- **Usable for robust wheels: trekking bike, car, rickshaw** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dbad' target='_blank'>bad</a>
|
||||
- **Usable for vehicles with high clearance: light duty off-road vehicle** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dvery_bad' target='_blank'>very_bad</a>
|
||||
- **Usable for off-road vehicles: heavy duty off-road vehicle** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dhorrible' target='_blank'>horrible</a>
|
||||
- **Usable for specialized off-road vehicles: tractor, ATV** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dvery_horrible' target='_blank'>very_horrible</a>
|
||||
- **Impassable / No wheeled vehicle** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness' target='_blank'>cycleway:smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dimpassable' target='_blank'>impassable</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dunpaved' target='_blank'>unpaved</a>_This option cannot be chosen as answer_
|
||||
- **This cycleway is paved** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaved' target='_blank'>paved</a>_This option cannot be chosen as answer_
|
||||
- **This cycleway is made of asphalt** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dasphalt' target='_blank'>asphalt</a>
|
||||
- **This cycleway is made of smooth paving stones** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaving_stones' target='_blank'>paving_stones</a>
|
||||
- **This cycleway is made of concrete** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dconcrete' target='_blank'>concrete</a>
|
||||
- **This cycleway is made of cobblestone (unhewn or sett)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dcobblestone' target='_blank'>cobblestone</a>_This option cannot be chosen as answer_
|
||||
- **This cycleway is made of raw, natural cobblestone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dunhewn_cobblestone' target='_blank'>unhewn_cobblestone</a>
|
||||
- **This cycleway is made of flat, square cobblestone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dsett' target='_blank'>sett</a>
|
||||
- **This cycleway is made of wood** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dwood' target='_blank'>wood</a>
|
||||
- **This cycleway is made of gravel** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dgravel' target='_blank'>gravel</a>
|
||||
- **This cycleway is made of fine gravel** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dfine_gravel' target='_blank'>fine_gravel</a>
|
||||
- **This cycleway is made of pebblestone** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpebblestone' target='_blank'>pebblestone</a>
|
||||
- **This cycleway is made from raw ground** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dground' target='_blank'>ground</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### Surface of the street
|
||||
|
||||
|
||||
|
||||
The question is **What is the smoothness of this street?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Usable for thin rollers: rollerblade, skateboard** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dexcellent' target='_blank'>excellent</a>
|
||||
- **Usable for thin wheels: racing bike** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dgood' target='_blank'>good</a>
|
||||
- **Usable for normal wheels: city bike, wheelchair, scooter** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dintermediate' target='_blank'>intermediate</a>
|
||||
- **Usable for robust wheels: trekking bike, car, rickshaw** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dbad' target='_blank'>bad</a>
|
||||
- **Usable for vehicles with high clearance: light duty off-road vehicle** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dvery_bad' target='_blank'>very_bad</a>
|
||||
- **Usable for off-road vehicles: heavy duty off-road vehicle** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dhorrible' target='_blank'>horrible</a>
|
||||
- **Usable for specialized off-road vehicles: tractor, ATV** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dvery_horrible' target='_blank'>very_horrible</a>
|
||||
- **Impassable / No wheeled vehicle** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:smoothness' target='_blank'>smoothness</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dimpassable' target='_blank'>impassable</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### width:carriageway
|
||||
|
||||
|
||||
|
||||
The question is **What is the carriage width of this road (in meters)?<br/><span class='subtle'>This is measured curb to curb and thus includes the width of parallell parking lanes</span>**
|
||||
|
||||
This rendering asks information about the property [width:carriageway](https://wiki.openstreetmap.org/wiki/Key:width:carriageway)
|
||||
This is rendered with `The carriage width of this road is <strong>{width:carriageway}m</strong>`
|
||||
|
||||
|
||||
|
||||
### cycleway-lane-track-traffic-signs
|
||||
|
||||
|
||||
|
||||
The question is **What traffic sign does this cycleway have?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Compulsory cycleway <img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7' target='_blank'>BE:D7</a>
|
||||
- **Compulsory cycleway (with supplementary sign)<br><img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'> ** corresponds with cycleway:traffic_sign~^BE:D7;.*$_This option cannot be chosen as answer_
|
||||
- **Segregated foot/cycleway <img src='./assets/themes/cycle_infra/Belgian_road_sign_D09.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D9' target='_blank'>BE:D9</a>
|
||||
- **Unsegregated foot/cycleway <img src='./assets/themes/cycle_infra/Belgian_road_sign_D10.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D10' target='_blank'>BE:D10</a>
|
||||
- **No traffic sign present** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3Dnone' target='_blank'>none</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### cycleway-traffic-signs
|
||||
|
||||
|
||||
|
||||
The question is **What traffic sign does this cycleway have?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Compulsory cycleway <img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D7' target='_blank'>BE:D7</a>
|
||||
- **Compulsory cycleway (with supplementary sign)<br><img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'> ** corresponds with traffic_sign~^BE:D7;.*$_This option cannot be chosen as answer_
|
||||
- **Segregated foot/cycleway <img src='./assets/themes/cycle_infra/Belgian_road_sign_D09.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D9' target='_blank'>BE:D9</a>
|
||||
- **Unsegregated foot/cycleway <img src='./assets/themes/cycle_infra/Belgian_road_sign_D10.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D10' target='_blank'>BE:D10</a>
|
||||
- **No traffic sign present** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3Dnone' target='_blank'>none</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### cycleway-traffic-signs-supplementary
|
||||
|
||||
|
||||
|
||||
The question is **Does the traffic sign D7 (<img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 1.5em'>) have a supplementary sign?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M6.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M6' target='_blank'>BE:D7;BE:M6</a>
|
||||
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M13.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M13' target='_blank'>BE:D7;BE:M13</a>
|
||||
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M14.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M14' target='_blank'>BE:D7;BE:M14</a>
|
||||
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M7.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M7' target='_blank'>BE:D7;BE:M7</a>
|
||||
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M15.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M15' target='_blank'>BE:D7;BE:M15</a>
|
||||
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M16.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign' target='_blank'>cycleway:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7;BE:M16' target='_blank'>BE:D7;BE:M16</a>
|
||||
- **No supplementary traffic sign present** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign:supplementary' target='_blank'>cycleway:traffic_sign:supplementary</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign:supplementary%3Dnone' target='_blank'>none</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### cycleway-traffic-signs-D7-supplementary
|
||||
|
||||
|
||||
|
||||
The question is **Does the traffic sign D7 (<img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 1.5em'>) have a supplementary sign?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M6.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D7;BE:M6' target='_blank'>BE:D7;BE:M6</a>
|
||||
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M13.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D7;BE:M13' target='_blank'>BE:D7;BE:M13</a>
|
||||
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M14.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D7;BE:M14' target='_blank'>BE:D7;BE:M14</a>
|
||||
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M7.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D7;BE:M7' target='_blank'>BE:D7;BE:M7</a>
|
||||
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M15.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key::traffic_sign' target='_blank'>:traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag::traffic_sign%3DBE:D7;BE:M15' target='_blank'>BE:D7;BE:M15</a>
|
||||
- **<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M16.svg' style='width: 3em'>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign' target='_blank'>traffic_sign</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D7;BE:M16' target='_blank'>BE:D7;BE:M16</a>
|
||||
- **No supplementary traffic sign present** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:traffic_sign:supplementary' target='_blank'>traffic_sign:supplementary</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:traffic_sign:supplementary%3Dnone' target='_blank'>none</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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`
|
||||
|
||||
|
||||
|
||||
### cyclelan-segregation
|
||||
|
||||
|
||||
|
||||
The question is **How is this cycleway separated from the road?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This cycleway is separated by a dashed line** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:separation' target='_blank'>cycleway:separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Ddashed_line' target='_blank'>dashed_line</a>
|
||||
- **This cycleway is separated by a solid line** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:separation' target='_blank'>cycleway:separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dsolid_line' target='_blank'>solid_line</a>
|
||||
- **This cycleway is separated by a parking lane** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:separation' target='_blank'>cycleway:separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dparking_lane' target='_blank'>parking_lane</a>
|
||||
- **This cycleway is separated by a kerb** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:separation' target='_blank'>cycleway:separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dkerb' target='_blank'>kerb</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### cycleway-segregation
|
||||
|
||||
|
||||
|
||||
The question is **How is this cycleway separated from the road?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This cycleway is separated by a dashed line** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:separation' target='_blank'>separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:separation%3Ddashed_line' target='_blank'>dashed_line</a>
|
||||
- **This cycleway is separated by a solid line** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:separation' target='_blank'>separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:separation%3Dsolid_line' target='_blank'>solid_line</a>
|
||||
- **This cycleway is separated by a parking lane** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:separation' target='_blank'>separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:separation%3Dparking_lane' target='_blank'>parking_lane</a>
|
||||
- **This cycleway is separated by a kerb** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:separation' target='_blank'>separation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:separation%3Dkerb' target='_blank'>kerb</a>
|
||||
|
||||
|
||||
This 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)
|
322
Docs/Layers/defibrillator.md
Normal file
322
Docs/Layers/defibrillator.md
Normal file
|
@ -0,0 +1,322 @@
|
|||
|
||||
|
||||
defibrillator
|
||||
===============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/aed/aed.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
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [defibrillator](#defibrillator)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [defibrillator-indoors](#defibrillator-indoors)
|
||||
+ [defibrillator-access](#defibrillator-access)
|
||||
+ [defibrillator-defibrillator](#defibrillator-defibrillator)
|
||||
+ [defibrillator-level](#defibrillator-level)
|
||||
+ [defibrillator-defibrillator:location](#defibrillator-defibrillatorlocation)
|
||||
+ [defibrillator-defibrillator:location:en](#defibrillator-defibrillatorlocation:en)
|
||||
+ [defibrillator-defibrillator:location:fr](#defibrillator-defibrillatorlocation:fr)
|
||||
+ [wheelchair-access](#wheelchair-access)
|
||||
+ [defibrillator-ref](#defibrillator-ref)
|
||||
+ [defibrillator-email](#defibrillator-email)
|
||||
+ [defibrillator-phone](#defibrillator-phone)
|
||||
+ [defibrillator-opening_hours](#defibrillator-opening_hours)
|
||||
+ [defibrillator-description](#defibrillator-description)
|
||||
+ [defibrillator-survey:date](#defibrillator-surveydate)
|
||||
+ [defibrillator-fixme](#defibrillator-fixme)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- 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)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/defibrillator/defibrillator.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:emergency' target='_blank'>emergency</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:emergency%3Ddefibrillator' target='_blank'>defibrillator</a>
|
||||
|
||||
|
||||
|
||||
|
||||
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/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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_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 <a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes' target='_blank'>yes</a>
|
||||
- **This defibrillator is located outdoors** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>
|
||||
- **Publicly accessible** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic' target='_blank'>public</a>_This option cannot be chosen as answer_
|
||||
- **Only accessible to customers** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers' target='_blank'>customers</a>
|
||||
- **Not accessible to the general public (e.g. only accesible to staff, the owners, ...)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate' target='_blank'>private</a>
|
||||
- **Not accessible, possibly only for professional use** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:defibrillator' target='_blank'>defibrillator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:defibrillator%3Dmanual' target='_blank'>manual</a>
|
||||
- **This is a normal automatic defibrillator** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:defibrillator' target='_blank'>defibrillator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:defibrillator%3Dautomatic' target='_blank'>automatic</a>
|
||||
- **This is a special type of defibrillator: {defibrillator}** corresponds with defibrillator~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>
|
||||
- **This defibrillator is on the <b>first floor</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D1' target='_blank'>1</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 languagel):</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 <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>
|
||||
- **This place is easily reachable with a wheelchair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>
|
||||
- **It is possible to reach this place in a wheelchair, but it is not easy** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited' target='_blank'>limited</a>
|
||||
- **This place is not reachable with a wheelchair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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>`
|
||||
|
||||
|
||||
|
||||
### defibrillator-opening_hours
|
||||
|
||||
|
||||
|
||||
The question is **At what times is this defibrillator available?**
|
||||
|
||||
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||
This is rendered with `{opening_hours_table(opening_hours)}`
|
||||
|
||||
|
||||
|
||||
- **24/7 opened (including holidays)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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}`
|
||||
|
||||
This document is autogenerated from [assets/layers/defibrillator/defibrillator.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/defibrillator/defibrillator.json)
|
64
Docs/Layers/direction.md
Normal file
64
Docs/Layers/direction.md
Normal file
|
@ -0,0 +1,64 @@
|
|||
|
||||
|
||||
direction
|
||||
===========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/direction_gradient:var(--catch-detail-color)' height="100px">
|
||||
|
||||
This layer visualizes directions
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [direction](#direction)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable.
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
- [surveillance](https://mapcomplete.osm.be/surveillance)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/direction/direction.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- camera:direction~^..*$|direction~^..*$
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/direction/direction.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/direction/direction.json)
|
137
Docs/Layers/drinking_water.md
Normal file
137
Docs/Layers/drinking_water.md
Normal file
|
@ -0,0 +1,137 @@
|
|||
|
||||
|
||||
drinking_water
|
||||
================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/pin:#6BC4F7;./assets/layers/drinking_water/drips.svg' height="100px">
|
||||
|
||||
A layer showing drinking water fountains
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [drinking_water](#drinking_water)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [Still in use?](#still-in-use)
|
||||
+ [Bottle refill](#bottle-refill)
|
||||
+ [render-closest-drinking-water](#render-closest-drinking-water)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer will automatically load [drinking_water](./drinking_water.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _closest_other_drinking_water)
|
||||
- This layer is needed as dependency for layer [drinking_water](#drinking_water)
|
||||
|
||||
|
||||
|
||||
|
||||
#### 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)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/drinking_water/drinking_water.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Ddrinking_water' target='_blank'>drinking_water</a>
|
||||
- access!~^permissive$
|
||||
- access!~^private$
|
||||
|
||||
|
||||
|
||||
|
||||
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/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)
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_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 <a href='https://wiki.openstreetmap.org/wiki/Key:operational_status' target='_blank'>operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dbroken' target='_blank'>broken</a>
|
||||
- **This drinking water is closed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operational_status' target='_blank'>operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dclosed' target='_blank'>closed</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### Bottle refill
|
||||
|
||||
|
||||
|
||||
The question is **How easy is it to fill water bottles?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **It is easy to refill water bottles** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bottle' target='_blank'>bottle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bottle%3Dyes' target='_blank'>yes</a>
|
||||
- **Water bottles may not fit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:bottle' target='_blank'>bottle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bottle%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### render-closest-drinking-water
|
||||
|
||||
|
||||
|
||||
_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)
|
145
Docs/Layers/dumpstations.md
Normal file
145
Docs/Layers/dumpstations.md
Normal file
|
@ -0,0 +1,145 @@
|
|||
dumpstations
|
||||
==============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/campersite/sanitary_dump_station.svg' height="100px">
|
||||
|
||||
Sanitary dump stations
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [dumpstations](#dumpstations)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [dumpstations-fee](#dumpstations-fee)
|
||||
+ [dumpstations-charge](#dumpstations-charge)
|
||||
+ [dumpstations-waterpoint](#dumpstations-waterpoint)
|
||||
+ [dumpstations-grey-water](#dumpstations-grey-water)
|
||||
+ [dumpstations-chemical-waste](#dumpstations-chemical-waste)
|
||||
+ [dumpstations-access](#dumpstations-access)
|
||||
+ [dumpstations-network](#dumpstations-network)
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
- [campersite](https://mapcomplete.osm.be/campersite)
|
||||
|
||||
[Go to the source code](../assets/layers/dumpstations/dumpstations.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dsanitary_dump_station' target='_blank'>
|
||||
sanitary_dump_station</a>
|
||||
- vehicle!~^no$
|
||||
|
||||
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/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) |
|
||||
|
||||
### images
|
||||
|
||||
_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 <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>
|
||||
fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>
|
||||
- **Can be used for free** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>
|
||||
fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>
|
||||
|
||||
### 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}`
|
||||
|
||||
### dumpstations-waterpoint
|
||||
|
||||
The question is **Does this place have a water point?**
|
||||
|
||||
- **This place has a water point** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:water_point' target='_blank'>water_point</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:water_point%3Dyes' target='_blank'>yes</a>
|
||||
- **This place does not have a water point** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:water_point' target='_blank'>water_point</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:water_point%3Dno' target='_blank'>no</a>
|
||||
|
||||
### dumpstations-grey-water
|
||||
|
||||
The question is **Can you dispose of grey water here?**
|
||||
|
||||
- **You can dispose of grey water here** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:grey_water' target='_blank'>
|
||||
sanitary_dump_station:grey_water</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:grey_water%3Dyes' target='_blank'>yes</a>
|
||||
- **You cannot dispose of gray water here** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:grey_water' target='_blank'>
|
||||
sanitary_dump_station:grey_water</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:grey_water%3Dno' target='_blank'>no</a>
|
||||
|
||||
### dumpstations-chemical-waste
|
||||
|
||||
The question is **Can you dispose of chemical toilet waste here?**
|
||||
|
||||
- **You can dispose of chemical toilet waste here** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:chemical_toilet' target='_blank'>
|
||||
sanitary_dump_station:chemical_toilet</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:chemical_toilet%3Dyes' target='_blank'>yes</a>
|
||||
- **You cannot dispose of chemical toilet waste here** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:chemical_toilet' target='_blank'>
|
||||
sanitary_dump_station:chemical_toilet</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:chemical_toilet%3Dno' target='_blank'>no</a>
|
||||
|
||||
### dumpstations-access
|
||||
|
||||
The question is **Who can use this dump station?**
|
||||
|
||||
- **You need a network key/code to use this** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dnetwork' target='_blank'>network</a>
|
||||
- **You need to be a customer of camping/campersite to use this place** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers' target='_blank'>customers</a>
|
||||
- **Anyone can use this dump station** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic' target='_blank'>public</a>_This option cannot be
|
||||
chosen as answer_
|
||||
- **Anyone can use this dump station** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
### 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}`
|
||||
|
||||
This document is autogenerated from assets/layers/dumpstations/dumpstations.json
|
169
Docs/Layers/entrance.md
Normal file
169
Docs/Layers/entrance.md
Normal file
|
@ -0,0 +1,169 @@
|
|||
|
||||
|
||||
entrance
|
||||
==========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/entrance/door.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, ...)
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [entrance](#entrance)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [Entrance type](#entrance-type)
|
||||
+ [Door_type](#door_type)
|
||||
+ [automatic_door](#automatic_door)
|
||||
+ [width](#width)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- 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])
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [entrances](https://mapcomplete.osm.be/entrances)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/entrance/entrance.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- entrance~^..*$|<a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Ddoor' target='_blank'>door</a>
|
||||
|
||||
|
||||
|
||||
|
||||
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/entrance#values) [entrance](https://wiki.openstreetmap.org/wiki/Key:entrance) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:entrance%3D) [main](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dmain) [secondary](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dsecondary) [service](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dservice) [exit](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dexit) [entrance](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dentrance) [emergency](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Demergency) [home](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dhome)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/door#values) [door](https://wiki.openstreetmap.org/wiki/Key:door) | Multiple choice | [hinged](https://wiki.openstreetmap.org/wiki/Tag:door%3Dhinged) [revolving](https://wiki.openstreetmap.org/wiki/Tag:door%3Drevolving) [sliding](https://wiki.openstreetmap.org/wiki/Tag:door%3Dsliding) [overhead](https://wiki.openstreetmap.org/wiki/Tag:door%3Doverhead) [no](https://wiki.openstreetmap.org/wiki/Tag:door%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/automatic_door#values) [automatic_door](https://wiki.openstreetmap.org/wiki/Key:automatic_door) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dno) [motion](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dmotion) [floor](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dfloor) [button](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dbutton) [slowdown_button](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dslowdown_button) [continuous](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dcontinuous) [serviced_on_button_press](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_button_press) [serviced_on_request](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_request)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/width#values) [width](https://wiki.openstreetmap.org/wiki/Key:width) | [length](../SpecialInputElements.md#length) |
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Entrance type
|
||||
|
||||
|
||||
|
||||
The question is **What type of entrance is this?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **No specific entrance type is known** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dyes' target='_blank'>yes</a>_This option cannot be chosen as answer_
|
||||
- **This is an indoor door, separating a room or a corridor within a single building** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Ddoor' target='_blank'>door</a>
|
||||
- **This is the main entrance** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dmain' target='_blank'>main</a>
|
||||
- **This is a secondary entrance** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dsecondary' target='_blank'>secondary</a>
|
||||
- **This is a service entrance - normally only used for employees, delivery, ...** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dservice' target='_blank'>service</a>
|
||||
- **This is an exit where one can not enter** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dexit' target='_blank'>exit</a>
|
||||
- **This is an entrance where one can only enter (but not exit)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dentrance' target='_blank'>entrance</a>
|
||||
- **This is emergency exit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Demergency' target='_blank'>emergency</a>
|
||||
- **This is the entrance to a private home** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:entrance' target='_blank'>entrance</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dhome' target='_blank'>home</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### Door_type
|
||||
|
||||
|
||||
|
||||
The question is **What is the type of this door?<br/><span class='subtle'>Wether or not the door is automated is asked in the next question</span>**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **The door type is not known** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Dyes' target='_blank'>yes</a>_This option cannot be chosen as answer_
|
||||
- **A classical, hinged door supported by joints** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Dhinged' target='_blank'>hinged</a>
|
||||
- **A revolving door which hangs on a central shaft, rotating within a cylindrical enclosure** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Drevolving' target='_blank'>revolving</a>
|
||||
- **A sliding door where the door slides sidewards, typically parallel with a wall** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Dsliding' target='_blank'>sliding</a>
|
||||
- **A door which rolls from overhead, typically seen for garages** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Doverhead' target='_blank'>overhead</a>
|
||||
- **This is an entrance without a physical door** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:door' target='_blank'>door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:door%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### automatic_door
|
||||
|
||||
|
||||
|
||||
The question is **Is this door automated?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This is an automatic door** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dyes' target='_blank'>yes</a>_This option cannot be chosen as answer_
|
||||
- **This door is <b>not</b> automated** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dno' target='_blank'>no</a>
|
||||
- **This door will open automatically when <b>motion</b> is detected** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dmotion' target='_blank'>motion</a>
|
||||
- **This door will open automatically when a <b>sensor in the floor</b> is triggered** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dfloor' target='_blank'>floor</a>
|
||||
- **This door will open automatically when a <b>button is pressed</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dbutton' target='_blank'>button</a>
|
||||
- **This door revolves automatically all the time, but has a <b>button to slow it down</b>, e.g. for wheelchair users** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dslowdown_button' target='_blank'>slowdown_button</a>
|
||||
- **This door revolves automatically all the time** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dcontinuous' target='_blank'>continuous</a>
|
||||
- **This door will be opened by staff when requested by <b>pressing a button</b** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_button_press' target='_blank'>serviced_on_button_press</a>
|
||||
- **This door will be opened by staff when requested** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:automatic_door' target='_blank'>automatic_door</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_request' target='_blank'>serviced_on_request</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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)} meter`
|
||||
|
||||
This document is autogenerated from [assets/layers/entrance/entrance.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/entrance/entrance.json)
|
180
Docs/Layers/etymology.md
Normal file
180
Docs/Layers/etymology.md
Normal file
|
@ -0,0 +1,180 @@
|
|||
|
||||
|
||||
etymology
|
||||
===========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/pin:#05d7fcaa' height="100px">
|
||||
|
||||
All objects which have an etymology known
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [etymology](#etymology)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [etymology-images-from-wikipedia](#etymology-images-from-wikipedia)
|
||||
+ [wikipedia-etymology](#wikipedia-etymology)
|
||||
+ [zoeken op inventaris onroerend erfgoed](#zoeken-op-inventaris-onroerend-erfgoed)
|
||||
+ [simple etymology](#simple-etymology)
|
||||
+ [questions](#questions)
|
||||
+ [street-name-sign-image](#street-name-sign-image)
|
||||
+ [minimap](#minimap)
|
||||
+ [etymology_multi_apply](#etymology_multi_apply)
|
||||
+ [wikipedia](#wikipedia)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [etymology](https://mapcomplete.osm.be/etymology)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/etymology/etymology.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- name:etymology:wikidata~^..*$|name:etymology~^..*$
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name: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)
|
||||
|
||||
|
||||
|
||||
|
||||
### 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_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### simple etymology
|
||||
|
||||
|
||||
|
||||
The question is **What is this object named after?<br/><span class='subtle'>This might be written on the street name sign</span>**
|
||||
|
||||
This rendering asks information about the property [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology)
|
||||
This is rendered with `Named after {name:etymology}`
|
||||
|
||||
|
||||
|
||||
- **The origin of this name is unknown in all literature** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:name:etymology' target='_blank'>name:etymology</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown' target='_blank'>unknown</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### questions
|
||||
|
||||
|
||||
|
||||
_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 document is autogenerated from [assets/layers/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/etymology/etymology.json)
|
102
Docs/Layers/extinguisher.md
Normal file
102
Docs/Layers/extinguisher.md
Normal file
|
@ -0,0 +1,102 @@
|
|||
|
||||
|
||||
extinguisher
|
||||
==============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/hailhydrant/Twemoji12_1f9ef.svg' height="100px">
|
||||
|
||||
Map layer to show fire hydrants.
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [extinguisher](#extinguisher)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [extinguisher-location](#extinguisher-location)
|
||||
+ [images](#images)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [hailhydrant](https://mapcomplete.osm.be/hailhydrant)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/extinguisher/extinguisher.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:emergency' target='_blank'>emergency</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:emergency%3Dfire_extinguisher' target='_blank'>fire_extinguisher</a>
|
||||
|
||||
|
||||
|
||||
|
||||
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/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)
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dindoor' target='_blank'>indoor</a>
|
||||
- **Found outdoors.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Doutdoor' target='_blank'>outdoor</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_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)
|
138
Docs/Layers/facadegardens.md
Normal file
138
Docs/Layers/facadegardens.md
Normal file
|
@ -0,0 +1,138 @@
|
|||
facadegardens
|
||||
===============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/facadegardens/geveltuin.svg' height="100px">
|
||||
|
||||
Facade gardens
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [facadegardens](#facadegardens)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [facadegardens-direction](#facadegardens-direction)
|
||||
+ [facadegardens-sunshine](#facadegardens-sunshine)
|
||||
+ [facadegardens-rainbarrel](#facadegardens-rainbarrel)
|
||||
+ [facadegardens-start_date](#facadegardens-start_date)
|
||||
+ [facadegardens-edible](#facadegardens-edible)
|
||||
+ [facadegardens-plants](#facadegardens-plants)
|
||||
+ [facadegardens-description](#facadegardens-description)
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
- [facadegardens](https://mapcomplete.osm.be/facadegardens)
|
||||
|
||||
[Go to the source code](../assets/layers/facadegardens/facadegardens.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dgarden' target='_blank'>garden</a>
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:garden:type' target='_blank'>garden:type</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:garden:type%3Dfacade_garden' target='_blank'>facade_garden</a>
|
||||
|
||||
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/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) |
|
||||
|
||||
### images
|
||||
|
||||
_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 <a href='https://wiki.openstreetmap.org/wiki/Key:direct_sunlight' target='_blank'>direct_sunlight</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dyes' target='_blank'>yes</a>
|
||||
- **The garden is in partial shade** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:direct_sunlight' target='_blank'>direct_sunlight</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dpartial' target='_blank'>partial</a>
|
||||
- **The garden is in the shade** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:direct_sunlight' target='_blank'>direct_sunlight</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dno' target='_blank'>no</a>
|
||||
|
||||
### facadegardens-rainbarrel
|
||||
|
||||
The question is **Is there a water barrel installed for the garden?**
|
||||
|
||||
- **There is a rain barrel** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:rain_barrel' target='_blank'>rain_barrel</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:rain_barrel%3Dyes' target='_blank'>yes</a>
|
||||
- **There is no rain barrel** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:rain_barrel' target='_blank'>rain_barrel</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:rain_barrel%3Dno' target='_blank'>no</a>
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:edible' target='_blank'>
|
||||
edible</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:edible%3Dyes' target='_blank'>yes</a>
|
||||
- **There are no edible plants** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:edible' target='_blank'>edible</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:edible%3Dno' target='_blank'>no</a>
|
||||
|
||||
### facadegardens-plants
|
||||
|
||||
The question is **What kinds of plants grow here?**
|
||||
|
||||
- **There are vines** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:plant' target='_blank'>plant</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:plant%3Dvine' target='_blank'>vine</a>
|
||||
- **There are flowering plants** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:plant' target='_blank'>plant</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:plant%3Dflower' target='_blank'>flower</a>
|
||||
- **There are shrubs** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:plant' target='_blank'>
|
||||
plant</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:plant%3Dshrub' target='_blank'>shrub</a>
|
||||
- **There are groundcovering plants** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:plant' target='_blank'>plant</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:plant%3Dgroundcover' target='_blank'>groundcover</a>
|
||||
|
||||
### 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}`
|
||||
|
||||
This document is autogenerated from assets/layers/facadegardens/facadegardens.json
|
44
Docs/Layers/fietsstraat.md
Normal file
44
Docs/Layers/fietsstraat.md
Normal file
|
@ -0,0 +1,44 @@
|
|||
fietsstraat
|
||||
=============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/cyclestreets/F111.svg' height="100px">
|
||||
|
||||
A cyclestreet is a street where motorized traffic is not allowed to overtake a cyclist
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [fietsstraat](#fietsstraat)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
- [cyclestreets](https://mapcomplete.osm.be/cyclestreets)
|
||||
|
||||
[Go to the source code](../assets/layers/fietsstraat/fietsstraat.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:cyclestreet' target='_blank'>cyclestreet</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
### images
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
This document is autogenerated from assets/layers/fietsstraat/fietsstraat.json
|
161
Docs/Layers/fire_station.md
Normal file
161
Docs/Layers/fire_station.md
Normal file
|
@ -0,0 +1,161 @@
|
|||
|
||||
|
||||
fire_station
|
||||
==============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/hailhydrant/Twemoji12_1f692.svg' height="100px">
|
||||
|
||||
Map layer to show fire stations.
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [fire_station](#fire_station)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [station-name](#station-name)
|
||||
+ [station-street](#station-street)
|
||||
+ [station-place](#station-place)
|
||||
+ [station-agency](#station-agency)
|
||||
+ [station-operator](#station-operator)
|
||||
+ [images](#images)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [hailhydrant](https://mapcomplete.osm.be/hailhydrant)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/fire_station/fire_station.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfire_station' target='_blank'>fire_station</a>
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/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)
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DBureau of Fire Protection' target='_blank'>Bureau of Fire Protection</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment' target='_blank'>government</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment' target='_blank'>government</a>
|
||||
- **The station is operated by a community-based, or informal organization.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity' target='_blank'>community</a>
|
||||
- **The station is operated by a formal group of volunteers.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dngo' target='_blank'>ngo</a>
|
||||
- **The station is privately operated.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dprivate' target='_blank'>private</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_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)
|
456
Docs/Layers/food.md
Normal file
456
Docs/Layers/food.md
Normal file
|
@ -0,0 +1,456 @@
|
|||
|
||||
|
||||
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)
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [food](#food)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [Name](#name)
|
||||
+ [Fastfood vs restaurant](#fastfood-vs-restaurant)
|
||||
+ [opening_hours](#opening_hours)
|
||||
+ [website](#website)
|
||||
+ [email](#email)
|
||||
+ [phone](#phone)
|
||||
+ [payment-options](#payment-options)
|
||||
+ [wheelchair-access](#wheelchair-access)
|
||||
+ [Cuisine](#cuisine)
|
||||
+ [Takeaway](#takeaway)
|
||||
+ [Vegetarian (no friture)](#vegetarian-(no-friture))
|
||||
+ [Vegan (no friture)](#vegan-(no-friture))
|
||||
+ [halal (no friture)](#halal-(no-friture))
|
||||
+ [friture-vegetarian](#friture-vegetarian)
|
||||
+ [friture-vegan](#friture-vegan)
|
||||
+ [friture-oil](#friture-oil)
|
||||
+ [friture-take-your-container](#friture-take-your-container)
|
||||
+ [service:electricity](#serviceelectricity)
|
||||
+ [dog-access](#dog-access)
|
||||
+ [reviews](#reviews)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [food](https://mapcomplete.osm.be/food)
|
||||
- [fritures](https://mapcomplete.osm.be/fritures)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/food/food.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfast_food' target='_blank'>fast_food</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant' target='_blank'>restaurant</a>
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/amenity#values) [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [fast_food](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfast_food) [restaurant](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cuisine#values) [cuisine](https://wiki.openstreetmap.org/wiki/Key:cuisine) | [string](../SpecialInputElements.md#string) | [pizza](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpizza) [friture](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture) [pasta](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpasta) [kebab](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dkebab) [sandwich](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsandwich) [burger](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dburger) [sushi](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsushi) [coffee](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dcoffee) [italian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Ditalian) [french](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfrench) [chinese](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchinese) [greek](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dgreek) [indian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dindian) [turkish](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dturkish) [thai](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dthai)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/takeaway#values) [takeaway](https://wiki.openstreetmap.org/wiki/Key:takeaway) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/diet:vegetarian#values) [diet:vegetarian](https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Donly)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/diet:vegan#values) [diet:vegan](https://wiki.openstreetmap.org/wiki/Key:diet:vegan) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Donly)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/diet:halal#values) [diet:halal](https://wiki.openstreetmap.org/wiki/Key:diet:halal) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Donly)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/diet:vegetarian#values) [diet:vegetarian](https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/diet:vegan#values) [diet:vegan](https://wiki.openstreetmap.org/wiki/Key:diet:vegan) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/friture:oil#values) [friture:oil](https://wiki.openstreetmap.org/wiki/Key:friture:oil) | Multiple choice | [vegetable](https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Dvegetable) [animal](https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Danimal)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/reusable_packaging:accept#values) [reusable_packaging:accept](https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Donly)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:electricity#values) [service:electricity](https://wiki.openstreetmap.org/wiki/Key:service:electricity) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dlimited) [ask](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask) [no](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/dog#values) [dog](https://wiki.openstreetmap.org/wiki/Key:dog) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno) [leashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed) [unleashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed)
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Name
|
||||
|
||||
|
||||
|
||||
The question is **What is the name of this restaurant?**
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
This is rendered with `The name of this restaurant is {name}`
|
||||
|
||||
|
||||
|
||||
### Fastfood vs restaurant
|
||||
|
||||
|
||||
|
||||
The question is **What type of business is this?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Dit is een <b>fastfood-zaak</b>. De focus ligt op snelle bediening, zitplaatsen zijn vaak beperkt en functioneel** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfast_food' target='_blank'>fast_food</a>
|
||||
- **Dit is een <b>restaurant</b>. De focus ligt op een aangename ervaring waar je aan tafel wordt bediend** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant' target='_blank'>restaurant</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### opening_hours
|
||||
|
||||
|
||||
|
||||
The question is **What are the opening hours of {name}?**
|
||||
|
||||
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 {name}?**
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
|
||||
|
||||
### email
|
||||
|
||||
|
||||
|
||||
The question is **What is the email address of {name}?**
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||
|
||||
|
||||
|
||||
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
|
||||
|
||||
### phone
|
||||
|
||||
|
||||
|
||||
The question is **What is the phone number of {name}?**
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||
|
||||
|
||||
|
||||
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
|
||||
|
||||
### payment-options
|
||||
|
||||
|
||||
|
||||
The question is **Which methods of payment are accepted here?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Cash is accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dno' target='_blank'>no</a>
|
||||
- **Payment cards are accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### wheelchair-access
|
||||
|
||||
|
||||
|
||||
The question is **Is this place accessible with a wheelchair?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This place is specially adapted for wheelchair users** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>
|
||||
- **This place is easily reachable with a wheelchair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>
|
||||
- **It is possible to reach this place in a wheelchair, but it is not easy** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited' target='_blank'>limited</a>
|
||||
- **This place is not reachable with a wheelchair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### Cuisine
|
||||
|
||||
|
||||
|
||||
The question is **Which food is served here?**
|
||||
|
||||
This rendering asks information about the property [cuisine](https://wiki.openstreetmap.org/wiki/Key:cuisine)
|
||||
This is rendered with `This place mostly serves {cuisine}`
|
||||
|
||||
|
||||
|
||||
- **This is a pizzeria** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpizza' target='_blank'>pizza</a>
|
||||
- **This is a friture** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture' target='_blank'>friture</a>
|
||||
- **Mainly serves pasta** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpasta' target='_blank'>pasta</a>
|
||||
- **Dit is een kebabzaak** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dkebab' target='_blank'>kebab</a>
|
||||
- **Dit is een broodjeszaak** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsandwich' target='_blank'>sandwich</a>
|
||||
- **Dit is een hamburgerrestaurant** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dburger' target='_blank'>burger</a>
|
||||
- **Dit is een sushirestaurant** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsushi' target='_blank'>sushi</a>
|
||||
- **Dit is een koffiezaak** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dcoffee' target='_blank'>coffee</a>
|
||||
- **Dit is een Italiaans restaurant (dat meer dan enkel pasta of pizza verkoopt)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Ditalian' target='_blank'>italian</a>
|
||||
- **Dit is een Frans restaurant** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfrench' target='_blank'>french</a>
|
||||
- **Dit is een Chinees restaurant** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchinese' target='_blank'>chinese</a>
|
||||
- **Dit is een Grieks restaurant** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dgreek' target='_blank'>greek</a>
|
||||
- **Dit is een Indisch restaurant** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dindian' target='_blank'>indian</a>
|
||||
- **Dit is een Turks restaurant (dat meer dan enkel kebab verkoopt)** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dturkish' target='_blank'>turkish</a>
|
||||
- **Dit is een Thaïs restaurant** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dthai' target='_blank'>thai</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### Takeaway
|
||||
|
||||
|
||||
|
||||
The question is **Does this place offer takea-way?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This is a take-away only business** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:takeaway' target='_blank'>takeaway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Donly' target='_blank'>only</a>
|
||||
- **Take-away is possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:takeaway' target='_blank'>takeaway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dyes' target='_blank'>yes</a>
|
||||
- **Take-away is not possible here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:takeaway' target='_blank'>takeaway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### Vegetarian (no friture)
|
||||
|
||||
|
||||
|
||||
The question is **Does this restaurant have a vegetarian option?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Geen vegetarische opties beschikbaar** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno' target='_blank'>no</a>
|
||||
- **Beperkte vegetarische opties zijn beschikbaar** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited' target='_blank'>limited</a>
|
||||
- **Vegetarische opties zijn beschikbaar** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes' target='_blank'>yes</a>
|
||||
- **Enkel vegetarische opties zijn beschikbaar** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Donly' target='_blank'>only</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### Vegan (no friture)
|
||||
|
||||
|
||||
|
||||
The question is **Heeft deze eetgelegenheid een veganistische optie?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Geen veganistische opties beschikbaar** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno' target='_blank'>no</a>
|
||||
- **Beperkte veganistische opties zijn beschikbaar** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited' target='_blank'>limited</a>
|
||||
- **Veganistische opties zijn beschikbaar** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes' target='_blank'>yes</a>
|
||||
- **Enkel veganistische opties zijn beschikbaar** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Donly' target='_blank'>only</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### halal (no friture)
|
||||
|
||||
|
||||
|
||||
The question is **Does this restaurant offer a halal menu?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **There are no halal options available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dno' target='_blank'>no</a>
|
||||
- **There is a small halal menu** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dlimited' target='_blank'>limited</a>
|
||||
- **There is a halal menu** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dyes' target='_blank'>yes</a>
|
||||
- **Only halal options are available** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:halal' target='_blank'>diet:halal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Donly' target='_blank'>only</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### friture-vegetarian
|
||||
|
||||
|
||||
|
||||
The question is **Heeft deze frituur vegetarische snacks?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Er zijn vegetarische snacks aanwezig** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes' target='_blank'>yes</a>
|
||||
- **Slechts enkele vegetarische snacks** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited' target='_blank'>limited</a>
|
||||
- **Geen vegetarische snacks beschikbaar** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian' target='_blank'>diet:vegetarian</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### friture-vegan
|
||||
|
||||
|
||||
|
||||
The question is **Heeft deze frituur veganistische snacks?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Er zijn veganistische snacks aanwezig** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes' target='_blank'>yes</a>
|
||||
- **Slechts enkele veganistische snacks** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited' target='_blank'>limited</a>
|
||||
- **Geen veganistische snacks beschikbaar** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:diet:vegan' target='_blank'>diet:vegan</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### friture-oil
|
||||
|
||||
|
||||
|
||||
The question is **Bakt deze frituur met dierlijk vet of met plantaardige olie?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Plantaardige olie** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:friture:oil' target='_blank'>friture:oil</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Dvegetable' target='_blank'>vegetable</a>
|
||||
- **Dierlijk vet** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:friture:oil' target='_blank'>friture:oil</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Danimal' target='_blank'>animal</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### friture-take-your-container
|
||||
|
||||
|
||||
|
||||
The question is **If you bring your own container (such as a cooking pot and small pots), is it used to package your order?<br/>**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **You can bring <b>your own containers</b> to get your order, saving on single-use packaging material and thus waste** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept' target='_blank'>reusable_packaging:accept</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dyes' target='_blank'>yes</a>
|
||||
- **Bringing your own container is <b>not allowed</b>** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept' target='_blank'>reusable_packaging:accept</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dno' target='_blank'>no</a>
|
||||
- **You <b>must</b> bring your own container to order here.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept' target='_blank'>reusable_packaging:accept</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Donly' target='_blank'>only</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### service:electricity
|
||||
|
||||
|
||||
|
||||
The question is **Does this amenity have electrical outlets, available to customers when they are inside?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dyes' target='_blank'>yes</a>
|
||||
- **There are a few domestic sockets available to customers seated indoors, where they can charge their electronics** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dlimited' target='_blank'>limited</a>
|
||||
- **There are no sockets available indoors to customers, but charging might be possible if the staff is asked** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask' target='_blank'>ask</a>
|
||||
- **There are a no domestic sockets available to customers seated indoors** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electricity' target='_blank'>service:electricity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### dog-access
|
||||
|
||||
|
||||
|
||||
The question is **Are dogs allowed in this business?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Dogs are allowed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes' target='_blank'>yes</a>
|
||||
- **Dogs are <b>not</b> allowed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno' target='_blank'>no</a>
|
||||
- **Dogs are allowed, but they have to be leashed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed' target='_blank'>leashed</a>
|
||||
- **Dogs are allowed and can run around freely** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed' target='_blank'>unleashed</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### reviews
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/food/food.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/food/food.json)
|
50
Docs/Layers/forest.md
Normal file
50
Docs/Layers/forest.md
Normal file
|
@ -0,0 +1,50 @@
|
|||
forest
|
||||
========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/buurtnatuur/forest.svg' height="100px">
|
||||
|
||||
Een bos is een verzameling bomen, al dan niet als productiehout.
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [forest](#forest)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
|
||||
|
||||
- This layer will automatically load [parks](./parks.md) into the layout as it depends on it: A calculated tag loads
|
||||
features from this layer (calculatedTag[0] which calculates the value for _overlapWithUpperLayers)
|
||||
- This layer will automatically load [nature_reserve_buurtnatuur](./nature_reserve_buurtnatuur.md) into the layout as
|
||||
it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _
|
||||
overlapWithUpperLayers)
|
||||
|
||||
[Go to the source code](../assets/layers/forest/forest.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:landuse' target='_blank'>landuse</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:landuse%3Dforest' target='_blank'>forest</a>
|
||||
|<a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Dwood' target='_blank'>wood</a>
|
||||
|<a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Dscrub' target='_blank'>scrub</a>
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
### images
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
This document is autogenerated from assets/layers/forest/forest.json
|
77
Docs/Layers/fruitboom.md
Normal file
77
Docs/Layers/fruitboom.md
Normal file
|
@ -0,0 +1,77 @@
|
|||
fruitboom
|
||||
===========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/fruit_trees/fruit_tree.svg' height="100px">
|
||||
|
||||
Een boom
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [fruitboom](#fruitboom)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [fruitboom-species:nl](#fruitboom-speciesnl)
|
||||
+ [fruitboom-taxon](#fruitboom-taxon)
|
||||
+ [fruitboom-description](#fruitboom-description)
|
||||
+ [fruitboom-ref](#fruitboom-ref)
|
||||
|
||||
[Go to the source code](../assets/layers/fruitboom/fruitboom.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Dtree' target='_blank'>tree</a>
|
||||
|
||||
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/species:nl#values) [species:nl](https://wiki.openstreetmap.org/wiki/Key:species:nl) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/taxon#values) [taxon](https://wiki.openstreetmap.org/wiki/Key:taxon) | [string](../SpecialInputElements.md#string) |
|
||||
[<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/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) |
|
||||
|
||||
### fruitboom-species:nl
|
||||
|
||||
The question is **Wat is de soort van deze boom (in het Nederlands)?**
|
||||
|
||||
This rendering asks information about the property [species:nl](https://wiki.openstreetmap.org/wiki/Key:species:nl)
|
||||
This is rendered with `De soort is {species:nl}`
|
||||
|
||||
### fruitboom-taxon
|
||||
|
||||
The question is **Wat is het taxon (ras) van deze boom?**
|
||||
|
||||
This rendering asks information about the property [taxon](https://wiki.openstreetmap.org/wiki/Key:taxon)
|
||||
This is rendered with `Het ras (taxon) van deze boom is <b>{taxon}</b>`
|
||||
|
||||
### fruitboom-description
|
||||
|
||||
The question is **Welke beschrijving past bij deze boom?**
|
||||
|
||||
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||
This is rendered with `Beschrijving: <i>{description}</i>`
|
||||
|
||||
### fruitboom-ref
|
||||
|
||||
The question is **Is er een refernetienummer?**
|
||||
|
||||
This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref)
|
||||
This is rendered with `Referentienummer: <b>{ref}</b>`
|
||||
|
||||
This document is autogenerated from assets/layers/fruitboom/fruitboom.json
|
45
Docs/Layers/generic_osm_object.md
Normal file
45
Docs/Layers/generic_osm_object.md
Normal file
|
@ -0,0 +1,45 @@
|
|||
generic_osm_object
|
||||
====================
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [generic_osm_object](#generic_osm_object)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [all_tags](#all_tags)
|
||||
|
||||
|
||||
- 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 [grb](#grb)
|
||||
|
||||
[Go to the source code](../assets/layers/generic_osm_object/generic_osm_object.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- id~^..*$
|
||||
-
|
||||
-
|
||||
-
|
||||
- type!~^boundary$
|
||||
-
|
||||
- |<a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:layer' target='_blank'>layer</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:layer%3D0' target='_blank'>0</a>|
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
### all_tags
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
This document is autogenerated from assets/layers/generic_osm_object/generic_osm_object.json
|
151
Docs/Layers/ghost_bike.md
Normal file
151
Docs/Layers/ghost_bike.md
Normal file
|
@ -0,0 +1,151 @@
|
|||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [ghost_bike](#ghost_bike)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [ghost-bike-explanation](#ghost-bike-explanation)
|
||||
+ [images](#images)
|
||||
+ [ghost_bike-name](#ghost_bike-name)
|
||||
+ [ghost_bike-source](#ghost_bike-source)
|
||||
+ [ghost_bike-inscription](#ghost_bike-inscription)
|
||||
+ [ghost_bike-start_date](#ghost_bike-start_date)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [ghostbikes](https://mapcomplete.osm.be/ghostbikes)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/ghost_bike/ghost_bike.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:memorial' target='_blank'>memorial</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dghost_bike' target='_blank'>ghost_bike</a>
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### ghost-bike-explanation
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### ghost_bike-name
|
||||
|
||||
|
||||
|
||||
The question is **Whom is remembered by this ghost bike?<span class='question-subtext'><br/>Please respect privacy - only fill out the name if it is widely published or marked on the cycle. Opt to leave out the family name.</span>**
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
This is rendered with `In remembrance of {name}`
|
||||
|
||||
|
||||
|
||||
- **No name is marked on the bike** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### ghost_bike-source
|
||||
|
||||
|
||||
|
||||
The question is **On what webpage can one find more information about the Ghost bike or the accident?**
|
||||
|
||||
This rendering asks information about the property [source](https://wiki.openstreetmap.org/wiki/Key:source)
|
||||
This is rendered with `<a href='{source}' target='_blank'>More information is available</a>`
|
||||
|
||||
|
||||
|
||||
### 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}`
|
||||
|
||||
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)
|
44
Docs/Layers/gps_location.md
Normal file
44
Docs/Layers/gps_location.md
Normal file
|
@ -0,0 +1,44 @@
|
|||
gps_location
|
||||
==============
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Meta layer showing the current location of the user. Add this to your theme and override the icon to change the
|
||||
appearance of the current location. The object will always have `id=gps` and will have _all_ the properties included in
|
||||
the [`Coordinates`-object](https://developer.mozilla.org/en-US/docs/Web/API/GeolocationCoordinates) returned by the
|
||||
browser.
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [gps_location](#gps_location)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
|
||||
|
||||
- This layer cannot be toggled in the filter view. 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`
|
||||
|
||||
[Go to the source code](../assets/layers/gps_location/gps_location.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:id' target='_blank'>id</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:id%3Dgps' target='_blank'>gps</a>
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from assets/layers/gps_location/gps_location.json
|
43
Docs/Layers/gps_location_history.md
Normal file
43
Docs/Layers/gps_location_history.md
Normal file
|
@ -0,0 +1,43 @@
|
|||
gps_location_history
|
||||
======================
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Meta layer which contains the previous locations of the user as single points. This is mainly for technical reasons,
|
||||
e.g. to keep match the distance to the modified object
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [gps_location_history](#gps_location_history)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
|
||||
|
||||
- This layer cannot be toggled in the filter view. 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`
|
||||
|
||||
[Go to the source code](../assets/layers/gps_location_history/gps_location_history.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:user:location' target='_blank'>user:location</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:user:location%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from assets/layers/gps_location_history/gps_location_history.json
|
59
Docs/Layers/gps_track.md
Normal file
59
Docs/Layers/gps_track.md
Normal file
|
@ -0,0 +1,59 @@
|
|||
gps_track
|
||||
===========
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Meta layer showing the previous locations of the user as single line. Add this to your theme and override the icon to
|
||||
change the appearance of the current location.
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [gps_track](#gps_track)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [Privacy notice](#privacy-notice)
|
||||
+ [export_as_gpx](#export_as_gpx)
|
||||
+ [minimap](#minimap)
|
||||
+ [delete](#delete)
|
||||
|
||||
|
||||
- This layer is not visible by default and must be enabled in the filter by the user.
|
||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||
|
||||
[Go to the source code](../assets/layers/gps_track/gps_track.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:id' target='_blank'>id</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:id%3Dlocation_track' target='_blank'>location_track</a>
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
### Privacy notice
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
### export_as_gpx
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
### minimap
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
### delete
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
This document is autogenerated from assets/layers/gps_track/gps_track.json
|
84
Docs/Layers/grass_in_parks.md
Normal file
84
Docs/Layers/grass_in_parks.md
Normal file
|
@ -0,0 +1,84 @@
|
|||
|
||||
|
||||
grass_in_parks
|
||||
================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/playgrounds/playground.svg' height="100px">
|
||||
|
||||
Searches for all accessible grass patches within public parks - these are 'groenzones'"
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [grass_in_parks](#grass_in_parks)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [explanation](#explanation)
|
||||
+ [grass-in-parks-reviews](#grass-in-parks-reviews)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/grass_in_parks/grass_in_parks.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:name' target='_blank'>name</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:name%3DPark Oude God' target='_blank'>Park Oude God</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:landuse' target='_blank'>landuse</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:landuse%3Dgrass' target='_blank'>grass</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic' target='_blank'>public</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### explanation
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### grass-in-parks-reviews
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/grass_in_parks/grass_in_parks.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/grass_in_parks/grass_in_parks.json)
|
98
Docs/Layers/grb.md
Normal file
98
Docs/Layers/grb.md
Normal file
|
@ -0,0 +1,98 @@
|
|||
grb
|
||||
=====
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/grb_import/housenumber_blank.svg' height="100px">
|
||||
|
||||
Geometry which comes from GRB with tools to import them
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [grb](#grb)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [Import-button](#import-button)
|
||||
+ [Building info](#building-info)
|
||||
+ [overlapping building address](#overlapping-building-address)
|
||||
+ [grb_address_diff](#grb_address_diff)
|
||||
+ [overlapping building type](#overlapping-building-type)
|
||||
+ [apply-id](#apply-id)
|
||||
+ [apply-building-type](#apply-building-type)
|
||||
|
||||
|
||||
- <img src='../warning.svg' height='1rem'/> This layer is loaded from an external source, namely `https://betadata.grbosm.site/grb?bbox={x_min},{y_min},{x_max},{y_max}`
|
||||
- This layer will automatically load [osm-buildings](./osm-buildings.md) into the layout as it depends on it: a
|
||||
tagrendering needs this layer (Import-button)
|
||||
- This layer will automatically load [type_node](./type_node.md) into the layout as it depends on it: a tagrendering
|
||||
needs this layer (Import-button)
|
||||
- This layer will automatically load [osm-buildings](./osm-buildings.md) into the layout as it depends on it: A
|
||||
calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _
|
||||
overlaps_with_buildings)
|
||||
- This layer will automatically load [generic_osm_object](./generic_osm_object.md) into the layout as it depends on
|
||||
it: A calculated tag loads features from this layer (calculatedTag[18] which calculates the value for _
|
||||
intersects_with_other_features)
|
||||
|
||||
[Go to the source code](../assets/layers/grb/grb.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- HUISNR~^..*$
|
||||
- man_made!~^mast$
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
### Import-button
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
- **{conflate_button(osm-buildings,building=$_target_building_type; source:geometry:date=$_grb_date; source:geometry:
|
||||
ref=$_grb_ref; addr:street=$addr:street; addr:housenumber=$addr:housenumber, Replace the geometry in OpenStreetMap and
|
||||
add the address,,_osm_obj:id)}** corresponds with _overlap_percentage>50&_reverse_overlap_percentage>50&_
|
||||
overlaps_with!~^$&addr:street~^..*$&addr:housenumber~^..*$&addr:street!=&addr:housenumber!=
|
||||
- **{conflate_button(osm-buildings,building=$_target_building_type; source:geometry:date=$_grb_date; source:geometry:
|
||||
ref=$_grb_ref, Replace the geometry in OpenStreetMap,,_osm_obj:id)}** corresponds with _overlap_percentage>50&_
|
||||
reverse_overlap_percentage>50&_overlaps_with!~^$
|
||||
|
||||
### Building info
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
### overlapping building address
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
- **The overlapping openstreetmap-building has address {_osm_obj:addr:street} {_osm_obj:addr:housenumber}** corresponds
|
||||
with _osm_obj:addr:street~^..*$&_osm_obj:addr:housenumber~^..*$
|
||||
- **The overlapping building only has a street known: {_osm_obj:addr:street}** corresponds with _osm_obj:addr:street~
|
||||
^..*$
|
||||
- **The overlapping building only has a housenumber known: {_osm_obj:addr:housenumber}** corresponds with _osm_obj:addr:
|
||||
housenumber~^..*$
|
||||
- **No overlapping OpenStreetMap-building found** corresponds with
|
||||
|
||||
### grb_address_diff
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
### overlapping building type
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
### apply-id
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
### apply-building-type
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
This document is autogenerated from assets/layers/grb/grb.json
|
156
Docs/Layers/hackerspaces.md
Normal file
156
Docs/Layers/hackerspaces.md
Normal file
|
@ -0,0 +1,156 @@
|
|||
hackerspaces
|
||||
==============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/hackerspaces/glider.svg' height="100px">
|
||||
|
||||
Hackerspace
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [hackerspaces](#hackerspaces)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [is_makerspace](#is_makerspace)
|
||||
+ [hackerspaces-name](#hackerspaces-name)
|
||||
+ [website](#website)
|
||||
+ [email](#email)
|
||||
+ [phone](#phone)
|
||||
+ [hackerspaces-opening_hours](#hackerspaces-opening_hours)
|
||||
+ [wheelchair-access](#wheelchair-access)
|
||||
+ [hs-club-mate](#hs-club-mate)
|
||||
+ [hackerspaces-start_date](#hackerspaces-start_date)
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
- [hackerspaces](https://mapcomplete.osm.be/hackerspaces)
|
||||
|
||||
[Go to the source code](../assets/layers/hackerspaces/hackerspaces.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dhackerspace' target='_blank'>hackerspace</a>
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/hackerspace#values) [hackerspace](https://wiki.openstreetmap.org/wiki/Key:hackerspace) | Multiple choice | [makerspace](https://wiki.openstreetmap.org/wiki/Tag:hackerspace%3Dmakerspace) [](https://wiki.openstreetmap.org/wiki/Tag:hackerspace%3D)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/drink:club-mate#values) [drink:club-mate](https://wiki.openstreetmap.org/wiki/Key:drink:club-mate) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:drink:club-mate%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:drink:club-mate%3Dno)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/start_date#values) [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) | [date](../SpecialInputElements.md#date) |
|
||||
|
||||
### is_makerspace
|
||||
|
||||
The question is **Is this a hackerspace or a makerspace?**
|
||||
|
||||
- **This is a makerspace** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:hackerspace' target='_blank'>hackerspace</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:hackerspace%3Dmakerspace' target='_blank'>makerspace</a>
|
||||
- **This is a traditional (software oriented) hackerspace** corresponds with
|
||||
|
||||
### hackerspaces-name
|
||||
|
||||
The question is **What is the name of this hackerspace?**
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
This is rendered with `This hackerspace is named <b>{name}</b>`
|
||||
|
||||
### website
|
||||
|
||||
The question is **What is the website of {name}?**
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||
|
||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This
|
||||
option cannot be chosen as answer_
|
||||
|
||||
### email
|
||||
|
||||
The question is **What is the email address of {name}?**
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||
|
||||
- **<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>** corresponds with contact:email~^..*$_This
|
||||
option cannot be chosen as answer_
|
||||
|
||||
### phone
|
||||
|
||||
The question is **What is the phone number of {name}?**
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||
|
||||
- **<a href='tel:{contact:phone}'>{contact:phone}</a>** corresponds with contact:phone~^..*$_This option cannot be
|
||||
chosen as answer_
|
||||
|
||||
### hackerspaces-opening_hours
|
||||
|
||||
The question is **When is this hackerspace opened?**
|
||||
|
||||
This rendering asks information about the
|
||||
property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||
This is rendered with `{opening_hours_table()}`
|
||||
|
||||
- **Opened 24/7** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>
|
||||
opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
|
||||
|
||||
### wheelchair-access
|
||||
|
||||
The question is **Is this place accessible with a wheelchair?**
|
||||
|
||||
- **This place is specially adapted for wheelchair users** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>
|
||||
- **This place is easily reachable with a wheelchair** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>
|
||||
- **It is possible to reach this place in a wheelchair, but it is not easy** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited' target='_blank'>limited</a>
|
||||
- **This place is not reachable with a wheelchair** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a>
|
||||
|
||||
### hs-club-mate
|
||||
|
||||
The question is **Does this hackerspace serve Club Mate?**
|
||||
|
||||
- **This hackerspace serves club mate** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:drink:club-mate' target='_blank'>drink:club-mate</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:drink:club-mate%3Dyes' target='_blank'>yes</a>
|
||||
- **This hackerspace does not serve club mate** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:drink:club-mate' target='_blank'>drink:club-mate</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:drink:club-mate%3Dno' target='_blank'>no</a>
|
||||
|
||||
### hackerspaces-start_date
|
||||
|
||||
The question is **When was this hackerspace founded?**
|
||||
|
||||
This rendering asks information about the property [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date)
|
||||
This is rendered with `This hackerspace was founded at {start_date}`
|
||||
|
||||
This document is autogenerated from assets/layers/hackerspaces/hackerspaces.json
|
42
Docs/Layers/home_location.md
Normal file
42
Docs/Layers/home_location.md
Normal file
|
@ -0,0 +1,42 @@
|
|||
home_location
|
||||
===============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/svg/home.svg' height="100px">
|
||||
|
||||
Meta layer showing the home location of the user. The home location can be set in
|
||||
the [profile settings](https://www.openstreetmap.org/profile/edit) of OpenStreetMap.
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [home_location](#home_location)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
|
||||
|
||||
- This layer cannot be toggled in the filter view. 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`
|
||||
|
||||
[Go to the source code](../assets/layers/home_location/home_location.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:user:home' target='_blank'>user:home</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:user:home%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from assets/layers/home_location/home_location.json
|
144
Docs/Layers/hydrant.md
Normal file
144
Docs/Layers/hydrant.md
Normal file
|
@ -0,0 +1,144 @@
|
|||
|
||||
|
||||
hydrant
|
||||
=========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/hailhydrant/hydrant.svg' height="100px">
|
||||
|
||||
Map layer to show fire hydrants.
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [hydrant](#hydrant)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [hydrant-color](#hydrant-color)
|
||||
+ [hydrant-type](#hydrant-type)
|
||||
+ [hydrant-state](#hydrant-state)
|
||||
+ [images](#images)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [hailhydrant](https://mapcomplete.osm.be/hailhydrant)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/hydrant/hydrant.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:emergency' target='_blank'>emergency</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:emergency%3Dfire_hydrant' target='_blank'>fire_hydrant</a>
|
||||
|
||||
|
||||
|
||||
|
||||
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/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)
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 unknown.** corresponds with _This option cannot be chosen as answer_
|
||||
- **The hydrant color is yellow.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow' target='_blank'>yellow</a>
|
||||
- **The hydrant color is red.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred' target='_blank'>red</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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}`
|
||||
|
||||
|
||||
|
||||
- **The hydrant type is unknown.** corresponds with _This option cannot be chosen as answer_
|
||||
- **<img style="width:15px" src="./assets/themes/hailhydrant/hydrant_pillar.svg" /> Pillar type.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type' target='_blank'>fire_hydrant:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dpillar' target='_blank'>pillar</a>
|
||||
- **<img style="width:15px" src="./assets/themes/hailhydrant/hydrant_unknown.svg" /> Pipe type.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type' target='_blank'>fire_hydrant:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dpipe' target='_blank'>pipe</a>
|
||||
- **<img style="width:15px" src="./assets/themes/hailhydrant/hydrant_unknown.svg" /> Wall type.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type' target='_blank'>fire_hydrant:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dwall' target='_blank'>wall</a>
|
||||
- **<img style="width:15px" src="./assets/themes/hailhydrant/hydrant_underground.svg" /> Underground type.** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type' target='_blank'>fire_hydrant:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dunderground' target='_blank'>underground</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### hydrant-state
|
||||
|
||||
|
||||
|
||||
The question is **Is this hydrant still working?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **The hydrant is (fully or partially) working** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:emergency' target='_blank'>emergency</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:emergency%3Dfire_hydrant' target='_blank'>fire_hydrant</a>
|
||||
- **The hydrant is unavailable** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:disused:emergency' target='_blank'>disused:emergency</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:disused:emergency%3Dfire_hydrant' target='_blank'>fire_hydrant</a>
|
||||
- **The hydrant has been removed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:removed:emergency' target='_blank'>removed:emergency</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:removed:emergency%3Dfire_hydrant' target='_blank'>fire_hydrant</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_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)
|
75
Docs/Layers/information_board.md
Normal file
75
Docs/Layers/information_board.md
Normal file
|
@ -0,0 +1,75 @@
|
|||
|
||||
|
||||
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, ...)
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [information_board](#information_board)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [nature](https://mapcomplete.osm.be/nature)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/information_board/information_board.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:information' target='_blank'>information</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:information%3Dboard' target='_blank'>board</a>
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_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)
|
45
Docs/Layers/left_right_style.md
Normal file
45
Docs/Layers/left_right_style.md
Normal file
|
@ -0,0 +1,45 @@
|
|||
left_right_style
|
||||
==================
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Special meta-style which will show one single line, either on the left or on the right depending on the id. This is used
|
||||
in the small popups with left_right roads. Cannot be included in a theme
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [left_right_style](#left_right_style)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
|
||||
|
||||
- This layer cannot be toggled in the filter view. 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`
|
||||
|
||||
[Go to the source code](../assets/layers/left_right_style/left_right_style.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:id' target='_blank'>id</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:id%3Dleft' target='_blank'>left</a>
|
||||
|<a href='https://wiki.openstreetmap.org/wiki/Key:id' target='_blank'>id</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:id%3Dright' target='_blank'>right</a>
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from assets/layers/left_right_style/left_right_style.json
|
62
Docs/Layers/lit_streets.md
Normal file
62
Docs/Layers/lit_streets.md
Normal file
|
@ -0,0 +1,62 @@
|
|||
lit_streets
|
||||
=============
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [lit_streets](#lit_streets)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [lit](#lit)
|
||||
|
||||
|
||||
- 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)
|
||||
|
||||
[Go to the source code](../assets/layers/lit_streets/lit_streets.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- highway!~^$
|
||||
- lit!~^no$
|
||||
- lit!~^$
|
||||
- service!~^driveway$
|
||||
|
||||
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/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)
|
||||
|
||||
### lit
|
||||
|
||||
The question is **Is this street lit?**
|
||||
|
||||
- **This street is lit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes' target='_blank'>yes</a>
|
||||
- **This street is not lit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>
|
||||
lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno' target='_blank'>no</a>
|
||||
- **This street is lit at night** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dsunset-sunrise' target='_blank'>sunset-sunrise</a>_This option
|
||||
cannot be chosen as answer_
|
||||
- **This street is lit 24/7** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>
|
||||
lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7' target='_blank'>24/7</a>
|
||||
|
||||
This document is autogenerated from assets/layers/lit_streets/lit_streets.json
|
123
Docs/Layers/map.md
Normal file
123
Docs/Layers/map.md
Normal file
|
@ -0,0 +1,123 @@
|
|||
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [map](#map)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [map-map_source](#map-map_source)
|
||||
+ [map-attribution](#map-attribution)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [maps](https://mapcomplete.osm.be/maps)
|
||||
- [nature](https://mapcomplete.osm.be/nature)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/map/map.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dmap' target='_blank'>map</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:information' target='_blank'>information</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:information%3Dmap' target='_blank'>map</a>
|
||||
|
||||
|
||||
|
||||
|
||||
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/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)
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_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 <a href='https://wiki.openstreetmap.org/wiki/Key:map_source' target='_blank'>map_source</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source%3DOpenStreetMap' target='_blank'>OpenStreetMap</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### map-attribution
|
||||
|
||||
|
||||
|
||||
The question is **Is the OpenStreetMap-attribution given?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **OpenStreetMap is clearly attributed, including the ODBL-license** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:map_source:attribution' target='_blank'>map_source:attribution</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dyes' target='_blank'>yes</a>
|
||||
- **OpenStreetMap is clearly attributed, but the license is not mentioned** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:map_source:attribution' target='_blank'>map_source:attribution</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dincomplete' target='_blank'>incomplete</a>
|
||||
- **OpenStreetMap wasn't mentioned, but someone put an OpenStreetMap-sticker on it** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:map_source:attribution' target='_blank'>map_source:attribution</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dsticker' target='_blank'>sticker</a>
|
||||
- **There is no attribution at all** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:map_source:attribution' target='_blank'>map_source:attribution</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dnone' target='_blank'>none</a>
|
||||
- **There is no attribution at all** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:map_source:attribution' target='_blank'>map_source:attribution</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dno' target='_blank'>no</a>_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/map/map.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/map/map.json)
|
45
Docs/Layers/matchpoint.md
Normal file
45
Docs/Layers/matchpoint.md
Normal file
|
@ -0,0 +1,45 @@
|
|||
matchpoint
|
||||
============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/svg/crosshair-empty.svg' height="100px">
|
||||
|
||||
The default rendering for a locationInput which snaps onto another object
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [matchpoint](#matchpoint)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
|
||||
|
||||
- This layer cannot be toggled in the filter view. 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`
|
||||
|
||||
[Go to the source code](../assets/layers/matchpoint/matchpoint.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from assets/layers/matchpoint/matchpoint.json
|
73
Docs/Layers/maybe_climbing.md
Normal file
73
Docs/Layers/maybe_climbing.md
Normal file
|
@ -0,0 +1,73 @@
|
|||
maybe_climbing
|
||||
================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/climbing/climbing_unknown.svg' height="100px">
|
||||
|
||||
A climbing opportunity?
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [maybe_climbing](#maybe_climbing)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [minimap](#minimap)
|
||||
+ [climbing-opportunity-name](#climbing-opportunity-name)
|
||||
+ [climbing-possible](#climbing-possible)
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
- [climbing](https://mapcomplete.osm.be/climbing)
|
||||
|
||||
[Go to the source code](../assets/layers/maybe_climbing/maybe_climbing.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dsports_centre' target='_blank'>sports_centre</a>
|
||||
|<a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dwall' target='_blank'>wall</a>
|
||||
|<a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dretaining_wall' target='_blank'>retaining_wall</a>
|
||||
|<a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Dcliff' target='_blank'>cliff</a>
|
||||
|<a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Drock' target='_blank'>rock</a>
|
||||
|<a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Dstone' target='_blank'>stone</a>
|
||||
-
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
### minimap
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
### climbing-opportunity-name
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
### climbing-possible
|
||||
|
||||
The question is **Is climbing possible here?**
|
||||
|
||||
- **Climbing is not possible here** corresponds with sport!~^climbing$_This option cannot be chosen as answer_
|
||||
- **Climbing is possible here** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dclimbing' target='_blank'>climbing</a>
|
||||
- **Climbing is not possible here** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dno' target='_blank'>no</a>
|
||||
|
||||
This document is autogenerated from assets/layers/maybe_climbing/maybe_climbing.json
|
57
Docs/Layers/named_streets.md
Normal file
57
Docs/Layers/named_streets.md
Normal file
|
@ -0,0 +1,57 @@
|
|||
|
||||
|
||||
named_streets
|
||||
===============
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Hidden layer with all streets which have a name. Useful to detect addresses
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [named_streets](#named_streets)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- This layer is not visible by default and must be enabled in the filter by the user.
|
||||
- This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable.
|
||||
- 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)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/named_streets/named_streets.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- highway~^..*$
|
||||
- name~^..*$
|
||||
|
||||
|
||||
|
||||
|
||||
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)
|
283
Docs/Layers/nature_reserve.md
Normal file
283
Docs/Layers/nature_reserve.md
Normal file
|
@ -0,0 +1,283 @@
|
|||
|
||||
|
||||
nature_reserve
|
||||
================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/nature_reserve/nature_reserve.svg' height="100px">
|
||||
|
||||
Een natuurgebied is een gebied waar actief ruimte gemaakt word voor de natuur. Typisch zijn deze in beheer van Natuurpunt of het Agentschap Natuur en Bos of zijn deze erkend door de overheid.
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [nature_reserve](#nature_reserve)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [Access tag](#access-tag)
|
||||
+ [Operator tag](#operator-tag)
|
||||
+ [Name:nl-tag](#namenl-tag)
|
||||
+ [Name tag](#name-tag)
|
||||
+ [Dogs?](#dogs)
|
||||
+ [Website](#website)
|
||||
+ [Curator](#curator)
|
||||
+ [Email](#email)
|
||||
+ [phone](#phone)
|
||||
+ [Non-editable description](#non-editable-description)
|
||||
+ [Editable description](#editable-description)
|
||||
+ [Surface area](#surface-area)
|
||||
+ [wikipedia](#wikipedia)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [nature](https://mapcomplete.osm.be/nature)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/nature_reserve/nature_reserve.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dnature_reserve' target='_blank'>nature_reserve</a>|protect_class!~^98$&<a href='https://wiki.openstreetmap.org/wiki/Key:boundary' target='_blank'>boundary</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:boundary%3Dprotected_area' target='_blank'>protected_area</a>
|
||||
|
||||
|
||||
|
||||
|
||||
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/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:nl#values) [name:nl](https://wiki.openstreetmap.org/wiki/Key:name:nl) | [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) | [](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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Access tag
|
||||
|
||||
|
||||
|
||||
The question is **Is dit gebied toegankelijk?**
|
||||
|
||||
This rendering asks information about the property [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description)
|
||||
This is rendered with `De toegankelijkheid van dit gebied is: {access:description}`
|
||||
|
||||
|
||||
|
||||
- **Vrij toegankelijk** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>
|
||||
- **Niet toegankelijk** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dno' target='_blank'>no</a>
|
||||
- **Niet toegankelijk, want privégebied** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate' target='_blank'>private</a>
|
||||
- **Toegankelijk, ondanks dat het privegebied is** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpermissive' target='_blank'>permissive</a>
|
||||
- **Enkel toegankelijk met een gids of tijdens een activiteit** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dguided' target='_blank'>guided</a>
|
||||
- **Toegankelijk mits betaling** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>&<a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### Operator tag
|
||||
|
||||
|
||||
|
||||
The question is **Wie beheert dit gebied?**
|
||||
|
||||
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||
This is rendered with `Beheer door {operator}`
|
||||
|
||||
|
||||
|
||||
- **Dit gebied wordt beheerd door Natuurpunt** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt' target='_blank'>Natuurpunt</a>
|
||||
- **Dit gebied wordt beheerd door {operator}** corresponds with operator~^(n|N)atuurpunt.*$_This option cannot be chosen as answer_
|
||||
- **Dit gebied wordt beheerd door het Agentschap Natuur en Bos** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgentschap Natuur en Bos' target='_blank'>Agentschap Natuur en Bos</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### Name:nl-tag
|
||||
|
||||
|
||||
|
||||
The question is **Wat is de Nederlandstalige naam van dit gebied?**
|
||||
|
||||
This rendering asks information about the property [name:nl](https://wiki.openstreetmap.org/wiki/Key:name:nl)
|
||||
This is rendered with `Dit gebied heet {name:nl}`
|
||||
|
||||
|
||||
|
||||
### Name tag
|
||||
|
||||
|
||||
|
||||
The question is **Wat is de naam van dit gebied?**
|
||||
|
||||
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||
This is rendered with `Dit gebied heet {name}`
|
||||
|
||||
|
||||
|
||||
- **Dit gebied heeft geen naam** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### Dogs?
|
||||
|
||||
|
||||
|
||||
The question is **Are dogs allowed in this nature reserve?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Dogs have to be leashed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed' target='_blank'>leashed</a>
|
||||
- **No dogs allowed** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno' target='_blank'>no</a>
|
||||
- **Dogs are allowed to roam freely** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### Website
|
||||
|
||||
|
||||
|
||||
The question is **On which webpage can one find more information about this nature reserve?**
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}'target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
### Curator
|
||||
|
||||
|
||||
|
||||
The question is **Whom is the curator of this nature reserve?<br/><span class='subtle'>Respect privacy - only fill out a name if this is widely published**
|
||||
|
||||
This rendering asks information about the property [curator](https://wiki.openstreetmap.org/wiki/Key:curator)
|
||||
This is rendered with `{curator} is the curator of this nature reserve`
|
||||
|
||||
|
||||
|
||||
### Email
|
||||
|
||||
|
||||
|
||||
The question is **What email adress can one send to with questions and problems with this nature reserve?<br/><span class='subtle'>Respect privacy - only fill out a personal email address if this is widely published**
|
||||
|
||||
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||
|
||||
|
||||
|
||||
### phone
|
||||
|
||||
|
||||
|
||||
The question is **What phone number can one call to with questions and problems with this nature reserve?<br/><span class='subtle'>Respect privacy - only fill out a personal phone number address if this is widely published**
|
||||
|
||||
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||
This is rendered with `<a href='tel:{email}' 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 info: <i>{description}</i>`
|
||||
|
||||
|
||||
|
||||
### Editable description
|
||||
|
||||
|
||||
|
||||
The question is **Is er extra info die je kwijt wil?**
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
- **No Wikipedia page has been linked yet** corresponds with _This option cannot be chosen as answer_
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/nature_reserve/nature_reserve.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/nature_reserve/nature_reserve.json)
|
46
Docs/Layers/nature_reserve_buurtnatuur.md
Normal file
46
Docs/Layers/nature_reserve_buurtnatuur.md
Normal file
|
@ -0,0 +1,46 @@
|
|||
nature_reserve_buurtnatuur
|
||||
============================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/buurtnatuur/nature_reserve.svg' height="100px">
|
||||
|
||||
Een natuurgebied is een gebied waar actief ruimte gemaakt word voor de natuur. Typisch zijn deze in beheer van
|
||||
Natuurpunt of het Agentschap Natuur en Bos of zijn deze erkend door de overheid.
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [nature_reserve_buurtnatuur](#nature_reserve_buurtnatuur)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
|
||||
|
||||
- This layer is needed as dependency for layer [parks](#parks)
|
||||
- This layer is needed as dependency for layer [forest](#forest)
|
||||
|
||||
[Go to the source code](../assets/layers/nature_reserve_buurtnatuur/nature_reserve_buurtnatuur.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dnature_reserve' target='_blank'>nature_reserve</a>
|
||||
|<a href='https://wiki.openstreetmap.org/wiki/Key:boundary' target='_blank'>boundary</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:boundary%3Dprotected_area' target='_blank'>protected_area</a>
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
### images
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
This document is autogenerated from assets/layers/nature_reserve_buurtnatuur/nature_reserve_buurtnatuur.json
|
60
Docs/Layers/node.md
Normal file
60
Docs/Layers/node.md
Normal file
|
@ -0,0 +1,60 @@
|
|||
node
|
||||
======
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [node](#node)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [node-survey:date](#node-surveydate)
|
||||
+ [node-expected_rcn_route_relations](#node-expected_rcn_route_relations)
|
||||
+ [images](#images)
|
||||
|
||||
[Go to the source code](../assets/layers/node/node.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- rcn_ref~^..*$
|
||||
|
||||
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/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/expected_rcn_route_relations#values) [expected_rcn_route_relations](https://wiki.openstreetmap.org/wiki/Key:expected_rcn_route_relations) | [int](../SpecialInputElements.md#int) |
|
||||
|
||||
### node-survey:date
|
||||
|
||||
The question is **When was this cycle node last surveyed?**
|
||||
|
||||
This rendering asks information about the property [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date)
|
||||
This is rendered with `This cycle node was last surveyed on {survey:date}`
|
||||
|
||||
- **Surveyed today!** corresponds with survey:date=
|
||||
|
||||
### node-expected_rcn_route_relations
|
||||
|
||||
The question is **How many other cycle nodes does this node link to?**
|
||||
|
||||
This rendering asks information about the
|
||||
property [expected_rcn_route_relations](https://wiki.openstreetmap.org/wiki/Key:expected_rcn_route_relations)
|
||||
This is rendered with `This node links to {expected_rcn_route_relations} other cycle nodes.`
|
||||
|
||||
### images
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
This document is autogenerated from assets/layers/node/node.json
|
58
Docs/Layers/node2node.md
Normal file
58
Docs/Layers/node2node.md
Normal file
|
@ -0,0 +1,58 @@
|
|||
node2node
|
||||
===========
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [node2node](#node2node)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [node2node-survey:date](#node2node-surveydate)
|
||||
+ [export_as_gpx](#export_as_gpx)
|
||||
|
||||
|
||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||
|
||||
[Go to the source code](../assets/layers/node2node/node2node.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:network' target='_blank'>network</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:network%3Drcn' target='_blank'>rcn</a>
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:network:type' target='_blank'>network:type</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:network:type%3Dnode_network' target='_blank'>node_network</a>
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:route' target='_blank'>route</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:route%3Dbicycle' target='_blank'>bicycle</a>
|
||||
|
||||
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/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)
|
||||
|
||||
### node2node-survey:date
|
||||
|
||||
The question is **When was this node to node link last surveyed?**
|
||||
|
||||
This rendering asks information about the property [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date)
|
||||
This is rendered with `This node to node link was last surveyed on {survey:date}`
|
||||
|
||||
- **Surveyed today!** corresponds with survey:date=
|
||||
|
||||
### export_as_gpx
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
This document is autogenerated from assets/layers/node2node/node2node.json
|
129
Docs/Layers/note_import.md
Normal file
129
Docs/Layers/note_import.md
Normal file
|
@ -0,0 +1,129 @@
|
|||
|
||||
|
||||
note_import
|
||||
=============
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/teardrop:#3333cc' height="100px">
|
||||
|
||||
Template for note note imports.
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [note_import](#note_import)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [conversation](#conversation)
|
||||
+ [Intro](#intro)
|
||||
+ [import](#import)
|
||||
+ [close_note_](#close_note_)
|
||||
+ [close_note_mapped](#close_note_mapped)
|
||||
+ [comment](#comment)
|
||||
+ [add_image](#add_image)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- <img src='../warning.svg' height='1rem'/> This layer is loaded from an external source, namely `https://api.openstreetmap.org/api/0.6/notes.json?closed=0&bbox={x_min},{y_min},{x_max},{y_max}`
|
||||
- This layer will automatically load [public_bookcase](./public_bookcase.md) into the layout as it depends on it: a tagrendering needs this layer (import)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/note_import/note_import.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- id~^..*$
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### conversation
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### Intro
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### import
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### close_note_
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### close_note_mapped
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### comment
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### add_image
|
||||
|
||||
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/note_import/note_import.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/note_import/note_import.json)
|
267
Docs/Layers/observation_tower.md
Normal file
267
Docs/Layers/observation_tower.md
Normal file
|
@ -0,0 +1,267 @@
|
|||
|
||||
|
||||
observation_tower
|
||||
===================
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/observation_tower/Tower_observation.svg' height="100px">
|
||||
|
||||
Towers with a panoramic view
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [observation_tower](#observation_tower)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
+ [name](#name)
|
||||
+ [Height](#height)
|
||||
+ [access](#access)
|
||||
+ [Fee](#fee)
|
||||
+ [payment-options](#payment-options)
|
||||
+ [website](#website)
|
||||
+ [step_count](#step_count)
|
||||
+ [elevator](#elevator)
|
||||
+ [Operator](#operator)
|
||||
+ [wheelchair-access](#wheelchair-access)
|
||||
+ [wikipedia](#wikipedia)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [observation_towers](https://mapcomplete.osm.be/observation_towers)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/observation_tower/observation_tower.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:tower:type' target='_blank'>tower:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tower:type%3Dobservation' target='_blank'>observation</a>
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
**Warning** This quick overview is incomplete
|
||||
|
||||
|
||||
|
||||
attribute | type | values which are supported by this layer
|
||||
----------- | ------ | ------------------------------------------
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/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) |
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_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 <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>
|
||||
- **This tower can only be visited with a guide** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dguided' target='_blank'>guided</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### payment-options
|
||||
|
||||
|
||||
|
||||
The question is **Which methods of payment are accepted here?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **Cash is accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dno' target='_blank'>no</a>
|
||||
- **Payment cards are accepted here** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### website
|
||||
|
||||
|
||||
|
||||
The question is **What is the website of {name}?**
|
||||
|
||||
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||
This is rendered with `<a href='{website}' target='_blank'>{website}</a>`
|
||||
|
||||
|
||||
|
||||
- **<a href='{contact:website}' target='_blank'>{contact:website}</a>** corresponds with contact:website~^..*$_This option cannot be chosen as answer_
|
||||
|
||||
|
||||
|
||||
|
||||
### 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`
|
||||
|
||||
|
||||
|
||||
### elevator
|
||||
|
||||
|
||||
|
||||
The question is **Does this tower have an elevator?**
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- **This tower has an elevator which takes visitors to the top** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:elevator' target='_blank'>elevator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:elevator%3Dyes' target='_blank'>yes</a>
|
||||
- **This tower does not have an elevator** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:elevator' target='_blank'>elevator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:elevator%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### 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 <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a>
|
||||
- **This place is easily reachable with a wheelchair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>
|
||||
- **It is possible to reach this place in a wheelchair, but it is not easy** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited' target='_blank'>limited</a>
|
||||
- **This place is not reachable with a wheelchair** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a>
|
||||
|
||||
|
||||
|
||||
|
||||
### wikipedia
|
||||
|
||||
|
||||
|
||||
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}`
|
||||
|
||||
|
||||
|
||||
- **No Wikipedia page has been linked yet** corresponds with _This option cannot be chosen as answer_
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/observation_tower/observation_tower.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/observation_tower/observation_tower.json)
|
37
Docs/Layers/orchards.md
Normal file
37
Docs/Layers/orchards.md
Normal file
|
@ -0,0 +1,37 @@
|
|||
orchards
|
||||
==========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/themes/buurtnatuur/forest.svg' height="100px">
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [orchards](#orchards)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
|
||||
[Go to the source code](../assets/layers/orchards/orchards.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:landuse' target='_blank'>landuse</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:landuse%3Dorchard' target='_blank'>orchard</a>
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
### images
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
This document is autogenerated from assets/layers/orchards/orchards.json
|
143
Docs/Layers/osm-buildings-fixme.md
Normal file
143
Docs/Layers/osm-buildings-fixme.md
Normal file
|
@ -0,0 +1,143 @@
|
|||
osm-buildings-fixme
|
||||
=====================
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [osm-buildings-fixme](#osm-buildings-fixme)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [building type](#building-type)
|
||||
+ [grb-housenumber](#grb-housenumber)
|
||||
+ [grb-unit](#grb-unit)
|
||||
+ [grb-street](#grb-street)
|
||||
+ [grb-fixme](#grb-fixme)
|
||||
+ [grb-min-level](#grb-min-level)
|
||||
+ [fix_verdieping](#fix_verdieping)
|
||||
+ [all_tags](#all_tags)
|
||||
|
||||
[Go to the source code](../assets/layers/osm-buildings-fixme/osm-buildings-fixme.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- building~^..*$
|
||||
- fixme~^..*$
|
||||
|
||||
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/building#values) [building](https://wiki.openstreetmap.org/wiki/Key:building) | [string](../SpecialInputElements.md#string) | [house](https://wiki.openstreetmap.org/wiki/Tag:building%3Dhouse) [detached](https://wiki.openstreetmap.org/wiki/Tag:building%3Ddetached) [semidetached_house](https://wiki.openstreetmap.org/wiki/Tag:building%3Dsemidetached_house) [apartments](https://wiki.openstreetmap.org/wiki/Tag:building%3Dapartments) [office](https://wiki.openstreetmap.org/wiki/Tag:building%3Doffice) [apartments](https://wiki.openstreetmap.org/wiki/Tag:building%3Dapartments) [shed](https://wiki.openstreetmap.org/wiki/Tag:building%3Dshed) [garage](https://wiki.openstreetmap.org/wiki/Tag:building%3Dgarage) [garages](https://wiki.openstreetmap.org/wiki/Tag:building%3Dgarages) [yes](https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes)
|
||||
[<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) | [](https://wiki.openstreetmap.org/wiki/Tag:addr:housenumber%3D) [](https://wiki.openstreetmap.org/wiki/Tag:addr:housenumber%3D) [](https://wiki.openstreetmap.org/wiki/Tag:addr:housenumber%3D)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:unit#values) [addr:unit](https://wiki.openstreetmap.org/wiki/Key:addr:unit) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:addr:unit%3D)
|
||||
[<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/fixme#values) [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:fixme%3D)
|
||||
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/building:min_level#values) [building:min_level](https://wiki.openstreetmap.org/wiki/Key:building:min_level) | [pnat](../SpecialInputElements.md#pnat) |
|
||||
|
||||
### building type
|
||||
|
||||
The question is **What kind of building is this?**
|
||||
|
||||
This rendering asks information about the property [building](https://wiki.openstreetmap.org/wiki/Key:building)
|
||||
This is rendered with `The building type is <b>{building}</b>`
|
||||
|
||||
- **A normal house** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>
|
||||
building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dhouse' target='_blank'>house</a>
|
||||
- **A house detached from other building** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Ddetached' target='_blank'>detached</a>
|
||||
- **A house sharing only one wall with another house** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dsemidetached_house' target='_blank'>
|
||||
semidetached_house</a>
|
||||
- **An apartment building - highrise for living** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dapartments' target='_blank'>apartments</a>
|
||||
- **An office building - highrise for work** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Doffice' target='_blank'>office</a>
|
||||
- **An apartment building** corresponds with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>
|
||||
building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dapartments' target='_blank'>apartments</a>
|
||||
- **A small shed, e.g. in a garden** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dshed' target='_blank'>shed</a>
|
||||
- **A single garage to park a car** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dgarage' target='_blank'>garage</a>
|
||||
- **A building containing only garages; typically they are all identical** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dgarages' target='_blank'>garages</a>
|
||||
- **A building - no specification** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
### grb-housenumber
|
||||
|
||||
The question is **Wat is het huisnummer?**
|
||||
|
||||
This rendering asks information about the
|
||||
property [addr:housenumber](https://wiki.openstreetmap.org/wiki/Key:addr:housenumber)
|
||||
This is rendered with `Het huisnummer is <b>{addr:housenumber}</b>`
|
||||
|
||||
- **Geen huisnummer** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:not:addr:housenumber' target='_blank'>not:addr:housenumber</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:addr:housenumber%3Dyes' target='_blank'>yes</a>
|
||||
- **Het huisnummer is <b>{_grbNumber}</b>, wat overeenkomt met het GRB** corresponds with addr:housenumber=
|
||||
- **Dit gebouw heeft geen nummer, net zoals in het GRB** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:not:addr:housenumber' target='_blank'>not:addr:housenumber</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:addr:housenumber%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
### grb-unit
|
||||
|
||||
The question is **Wat is de wooneenheid-aanduiding?**
|
||||
|
||||
This rendering asks information about the property [addr:unit](https://wiki.openstreetmap.org/wiki/Key:addr:unit)
|
||||
This is rendered with `De wooneenheid-aanduiding is <b>{addr:unit}</b> `
|
||||
|
||||
- **Geen wooneenheid-nummer** corresponds with
|
||||
|
||||
### grb-street
|
||||
|
||||
The question is **Wat is de straat?**
|
||||
|
||||
This rendering asks information about the property [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street)
|
||||
This is rendered with `De straat is <b>{addr:street}</b>`
|
||||
|
||||
### grb-fixme
|
||||
|
||||
The question is **Wat zegt de fixme?**
|
||||
|
||||
This rendering asks information about the property [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme)
|
||||
This is rendered with `De fixme is <b>{fixme}</b>`
|
||||
|
||||
- **Geen fixme** corresponds with
|
||||
|
||||
### grb-min-level
|
||||
|
||||
The question is **Hoeveel verdiepingen ontbreken?**
|
||||
|
||||
This rendering asks information about the
|
||||
property [building:min_level](https://wiki.openstreetmap.org/wiki/Key:building:min_level)
|
||||
This is rendered with `Dit gebouw begint maar op de {building:min_level} verdieping`
|
||||
|
||||
### fix_verdieping
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
### all_tags
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
This document is autogenerated from assets/layers/osm-buildings-fixme/osm-buildings-fixme.json
|
51
Docs/Layers/osm-buildings.md
Normal file
51
Docs/Layers/osm-buildings.md
Normal file
|
@ -0,0 +1,51 @@
|
|||
osm-buildings
|
||||
===============
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [osm-buildings](#osm-buildings)
|
||||
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [apply_streetname](#apply_streetname)
|
||||
|
||||
|
||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||
- This layer will automatically load [crab_address](./crab_address.md) into the layout as it depends on it: A
|
||||
calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _
|
||||
embedded_crab_addresses)
|
||||
- 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[3] which calculates the value for _nearby_street_names)
|
||||
- This layer is needed as dependency for layer [grb](#grb)
|
||||
- This layer is needed as dependency for layer [grb](#grb)
|
||||
|
||||
[Go to the source code](../assets/layers/osm-buildings/osm-buildings.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
- building~^..*$
|
||||
- addr:housenumber~^..*$
|
||||
-
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
### apply_streetname
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
|
||||
- **No nearby street has the same name. The CRAB-name is {_name_to_apply}** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:_spelling_is_correct' target='_blank'>_spelling_is_correct</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:_spelling_is_correct%3Dfalse' target='_blank'>false</a>
|
||||
- **There are multiple streetnames applicable here** corresponds
|
||||
with <a href='https://wiki.openstreetmap.org/wiki/Key:_singular_import' target='_blank'>_singular_import</a>
|
||||
=<a href='https://wiki.openstreetmap.org/wiki/Tag:_singular_import%3Dfalse' target='_blank'>false</a>
|
||||
|
||||
This document is autogenerated from assets/layers/osm-buildings/osm-buildings.json
|
75
Docs/Layers/parking.md
Normal file
75
Docs/Layers/parking.md
Normal file
|
@ -0,0 +1,75 @@
|
|||
|
||||
|
||||
parking
|
||||
=========
|
||||
|
||||
|
||||
|
||||
<img src='https://mapcomplete.osm.be/./assets/layers/parking/parking.svg' height="100px">
|
||||
|
||||
A layer showing car parkings
|
||||
|
||||
|
||||
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [parking](#parking)
|
||||
* [Themes using this layer](#themes-using-this-layer)
|
||||
- [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
- [Supported attributes](#supported-attributes)
|
||||
+ [images](#images)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Themes using this layer
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- [parkings](https://mapcomplete.osm.be/parkings)
|
||||
- [personal](https://mapcomplete.osm.be/personal)
|
||||
|
||||
|
||||
[Go to the source code](../assets/layers/parking/parking.json)
|
||||
|
||||
|
||||
|
||||
Basic tags for this layer
|
||||
---------------------------
|
||||
|
||||
|
||||
|
||||
Elements must have the all of following tags to be shown on this layer:
|
||||
|
||||
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dparking' target='_blank'>parking</a>
|
||||
|
||||
|
||||
|
||||
|
||||
Supported attributes
|
||||
----------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### images
|
||||
|
||||
|
||||
|
||||
_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)
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue