forked from MapComplete/MapComplete
Merge develop
This commit is contained in:
commit
3fe1f39c46
457 changed files with 6866 additions and 218533 deletions
.forgejo
.github/workflows
CHANGELOG.mdDocs
BuiltinIndex.mdBuiltinQuestions.mdCalculatedTags.mdChangesetMeta.mdELI-overview.mdHotkeys.md
Layers
address.mdadvertising.mdadvertising_wall_paintings.mdaerialway.mdall_streets.mdall_vending_machine.mdambulancestation.mdanimal_shelter.mdartwork.mdartwork_on_wall.mdassembly_point.mdassisted_repair.mdatm.mdbank.mdbanks_with_atm.mdbarrier.mdbbq.mdbeehive.mdbench.mdbench_at_pt.mdbicycle_assisted_repair_workshop.mdbicycle_counter.mdbicycle_library.mdbicycle_rental.mdbicycle_rental_non_docking.mdbike_cafe.mdbike_cleaning.mdbike_parking.mdbike_repair_station.mdbike_shop.mdbike_themed_object.mdbinocular.mdbirdhide.mdbrothel.mdcafe_pub.mdcar_rental.mdcaravansites.mdcharge_point.mdcharging_station.mdcharging_station_ebikes.mdchildcare.mdcinema.mdclimbing_area.mdclimbing_club.mdclimbing_gym.mdclimbing_opportunity.mdclimbing_route.mdclock.mdcrab_address.mdcrossings.mdcrossings_no_traffic_lights.mdcultural_places_without_etymology.mdcycle_highways.mdcycleways_and_roads.mdcyclist_waiting_aid.mddefibrillator.mddentist.mddirection.mddisaster_response.mddoctors.mddog_toilet.mddogpark.mddrinking_water.mddumpstations.mdeducation_institutions_without_etymology.mdelevator.mdelongated_coin.mdentrance.mdetymology.mdextinguisher.mdfacadegardens.mdfietsstraat.mdfire_station.mdfirepit.mdfitness_centre.mdfitness_station.mdfixme.mdfood.mdfood_courts.mdfood_dog_friendly.mdfood_glutenfree.mdfood_lactosefree.mdfriture.mdghost_bike.mdghostsign.mdgovernments.mdgrave.md
32
.forgejo/workflows/daily_data_maintenance.yml
Normal file
32
.forgejo/workflows/daily_data_maintenance.yml
Normal file
|
@ -0,0 +1,32 @@
|
|||
on:
|
||||
schedule:
|
||||
- cron: "0 2 * * *"
|
||||
|
||||
jobs:
|
||||
deploy_on_hetzner_single:
|
||||
runs-on: [ ubuntu-latest, hetzner-access ]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: "20"
|
||||
cache: "npm"
|
||||
cache-dependency-path: package-lock.json
|
||||
|
||||
- name: install deps
|
||||
run: npm ci
|
||||
shell: bash
|
||||
|
||||
- name: create community index files
|
||||
shell: bash
|
||||
run: npm run download:community-index -- -- community-index/
|
||||
|
||||
- name: upload community index
|
||||
shell: bash
|
||||
run: |
|
||||
zip community-index.zip community-index/*
|
||||
scp community-index.zip hetzner:data/
|
||||
ssh hetzner "cd data && rm -rf community-index/ && unzip community-index.zip && rm community-index.zip"
|
||||
|
|
@ -1,4 +1,3 @@
|
|||
name: Deploy develop on dev.mapcomplete.org
|
||||
on:
|
||||
push:
|
||||
branches-ignore:
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
name: Deploy develop on theme.mapcomplete.org
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
|
|
65
.github/workflows/codeql-analysis.yml
vendored
65
.github/workflows/codeql-analysis.yml
vendored
|
@ -1,65 +0,0 @@
|
|||
# For most projects, this workflow file will not need changing; you simply need
|
||||
# to commit it to your repository.
|
||||
#
|
||||
# You may wish to alter this file to override the set of languages analyzed,
|
||||
# or to provide custom queries or build logic.
|
||||
#
|
||||
# ******** NOTE ********
|
||||
# We have attempted to detect the languages in your repository. Please check
|
||||
# the `language` matrix defined below to confirm you have the correct set of
|
||||
# supported CodeQL languages.
|
||||
#
|
||||
name: "CodeQL"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
name: Analyze
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
actions: read
|
||||
contents: read
|
||||
security-events: write
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
language: [ 'javascript' ]
|
||||
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
|
||||
# Learn more about CodeQL language support at https://git.io/codeql-language-support
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
# Initializes the CodeQL tools for scanning.
|
||||
- name: Initialize CodeQL
|
||||
uses: github/codeql-action/init@v2
|
||||
with:
|
||||
languages: ${{ matrix.language }}
|
||||
# If you wish to specify custom queries, you can do so here or in a config file.
|
||||
# By default, queries listed here will override any specified in a config file.
|
||||
# Prefix the list here with "+" to use these queries and those in the config file.
|
||||
# queries: ./path/to/local/query, your-org/your-repo/queries@main
|
||||
|
||||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||||
# If this step fails, then you should remove it and run the build manually (see below)
|
||||
- name: Autobuild
|
||||
uses: github/codeql-action/autobuild@v2
|
||||
|
||||
# ℹ️ Command-line programs to run using the OS shell.
|
||||
# 📚 https://git.io/JvXDl
|
||||
|
||||
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
|
||||
# and modify them (or add more) to build your code if your project
|
||||
# uses a compiled language
|
||||
|
||||
#- run: |
|
||||
# make bootstrap
|
||||
# make release
|
||||
|
||||
- name: Perform CodeQL Analysis
|
||||
uses: github/codeql-action/analyze@v2
|
80
.github/workflows/deploy_prod.yml
vendored
80
.github/workflows/deploy_prod.yml
vendored
|
@ -1,80 +0,0 @@
|
|||
name: Deploy master on mapcomplete.org
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: "20"
|
||||
cache: "npm"
|
||||
cache-dependency-path: package-lock.json
|
||||
|
||||
- name: install deps
|
||||
run: npm ci
|
||||
shell: bash
|
||||
|
||||
- name: create generated dir
|
||||
run: mkdir ./assets/generated
|
||||
shell: bash
|
||||
|
||||
- name: create dependencies
|
||||
run: npm run generate:licenses; npm run generate:images; npm run generate:charging-stations; npm run generate:service-worker; npm run download:editor-layer-index
|
||||
shell: bash
|
||||
|
||||
- name: sync translations
|
||||
run: npm run generate:translations
|
||||
shell: bash
|
||||
|
||||
- name: generate layeroverview
|
||||
run: npm run reset:layeroverview
|
||||
shell: bash
|
||||
|
||||
- name: run tests
|
||||
run: npm run test
|
||||
shell: bash
|
||||
|
||||
- name: Prepare deploy
|
||||
run: npm run prepare-deploy
|
||||
shell: bash
|
||||
|
||||
- name: Clone deployment repo
|
||||
env:
|
||||
DEPLOY_KEY_PIETERVDVN: ${{ secrets.DEPLOY_KEY_PIETERVDVN }}
|
||||
run: |
|
||||
echo "Cloning destination repo"
|
||||
git config --global user.email "pietervdvn@posteo.net"
|
||||
git config --global user.name "pietervdvn"
|
||||
git clone --depth 1 --single-branch --branch main "https://x-access-token:$DEPLOY_KEY_PIETERVDVN@github.com/MapComplete/mapcomplete.github.io.git"
|
||||
echo "Destination repo is cloned"
|
||||
|
||||
- name: Sync repo
|
||||
env:
|
||||
DEPLOY_KEY_PIETERVDVN: ${{ secrets.DEPLOY_KEY_PIETERVDVN }}
|
||||
run: |
|
||||
cd mapcomplete.github.io
|
||||
git pull
|
||||
|
||||
- name: "Copying files"
|
||||
run: |
|
||||
echo "Deploying"
|
||||
rm -rf mapcomplete.github.io/*
|
||||
cp -r dist/* mapcomplete.github.io/
|
||||
cd mapcomplete.github.io/
|
||||
echo "mapcomplete.org" > CNAME
|
||||
touch .nojekyll
|
||||
git add *
|
||||
if git status | grep -q "Changes to be committed"
|
||||
then
|
||||
git commit -am "Deploying a new version of mapcomplete"
|
||||
git push
|
||||
else
|
||||
echo "No changes to commit"
|
||||
fi
|
|
@ -2,6 +2,15 @@
|
|||
|
||||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
||||
|
||||
### [0.48.5](https://github.com/pietervdvn/mapcomplete/compare/v0.48.4...v0.48.5) (2025-01-28)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* remove NSI-renderings which actually don't have a logo, fix https://source.mapcomplete.org/MapComplete/MapComplete/issues/2300 ([3e3b4b9](https://github.com/pietervdvn/mapcomplete/commits/3e3b4b9420d91ee2ab44c45ef2106bd7bd256891))
|
||||
|
||||
### [0.48.4](https://github.com/pietervdvn/mapcomplete/compare/v0.48.3...v0.48.4) (2025-01-26)
|
||||
|
||||
### [0.48.3](https://github.com/pietervdvn/mapcomplete/compare/v0.48.0...v0.48.3) (2025-01-24)
|
||||
|
||||
|
||||
|
|
|
@ -47,6 +47,7 @@
|
|||
- dentist
|
||||
- disaster_response
|
||||
- doctors
|
||||
- dog_toilet
|
||||
- dogpark
|
||||
- drinking_water
|
||||
- dumpstations
|
||||
|
@ -145,6 +146,7 @@
|
|||
- brothel
|
||||
- cafe_pub
|
||||
- car_rental
|
||||
- childcare
|
||||
- climbing_club
|
||||
- climbing_gym
|
||||
- dentist
|
||||
|
@ -152,7 +154,6 @@
|
|||
- food
|
||||
- food_courts
|
||||
- ice_cream
|
||||
- kindergarten_childcare
|
||||
- pharmacy
|
||||
- police
|
||||
- postoffices
|
||||
|
@ -198,6 +199,7 @@
|
|||
- bike_themed_object
|
||||
- cafe_pub
|
||||
- car_rental
|
||||
- childcare
|
||||
- climbing_club
|
||||
- climbing_gym
|
||||
- cycle_highways
|
||||
|
@ -211,7 +213,6 @@
|
|||
- food_courts
|
||||
- governments
|
||||
- hackerspace
|
||||
- kindergarten_childcare
|
||||
- nature_reserve
|
||||
- observation_tower
|
||||
- outdoor_seating
|
||||
|
@ -237,6 +238,7 @@
|
|||
- bike_themed_object
|
||||
- cafe_pub
|
||||
- car_rental
|
||||
- childcare
|
||||
- climbing_club
|
||||
- climbing_gym
|
||||
- dentist
|
||||
|
@ -246,7 +248,6 @@
|
|||
- food_courts
|
||||
- governments
|
||||
- hackerspace
|
||||
- kindergarten_childcare
|
||||
- physiotherapist
|
||||
- recycling
|
||||
- shops
|
||||
|
@ -264,6 +265,7 @@
|
|||
- bike_themed_object
|
||||
- cafe_pub
|
||||
- car_rental
|
||||
- childcare
|
||||
- climbing_club
|
||||
- climbing_gym
|
||||
- dentist
|
||||
|
@ -272,7 +274,6 @@
|
|||
- food
|
||||
- governments
|
||||
- hackerspace
|
||||
- kindergarten_childcare
|
||||
- physiotherapist
|
||||
- recycling
|
||||
- shops
|
||||
|
@ -466,6 +467,7 @@
|
|||
|
||||
- cafe_pub
|
||||
- food
|
||||
- shops
|
||||
- tourism_accomodation
|
||||
|
||||
### internet
|
||||
|
@ -756,4 +758,4 @@
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/*.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/*.json)
|
||||
This document is autogenerated from [assets/layers/*.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/*.json)
|
||||
|
|
|
@ -611,4 +611,4 @@ The question is `What is the name of this place?`
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/questions/questions.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/questions/questions.json)
|
||||
This document is autogenerated from [assets/layers/questions/questions.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/questions/questions.json)
|
||||
|
|
|
@ -5,36 +5,6 @@ Metatags are extra tags available, in order to display more data or to give bett
|
|||
They are calculated automatically on every feature when the data arrives in the webbrowser. This document gives an overview of the available metatags.
|
||||
**Hint:** when using metatags, add the [query parameter](URL_Parameters.md) `debug=true` to the URL. This will include a box in the popup for features which shows all the properties of the object
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [Metatags calculated by MapComplete](#metatags-calculated-by-mapcomplete)
|
||||
- [_lat, _lon](#_lat,-_lon)
|
||||
- [_layer](#_layer)
|
||||
- [_surface](#_surface)
|
||||
- [_surface:ha](#_surfaceha)
|
||||
- [_length, _length:km](#_length,-_lengthkm)
|
||||
- [Theme-defined keys](#theme-defined-keys)
|
||||
- [_country](#_country)
|
||||
- [_isOpen](#_isopen)
|
||||
- [_direction:numerical, _direction:leftright](#_directionnumerical,-_direction:leftright)
|
||||
- [_direction:centerpoint](#_directioncenterpoint)
|
||||
- [_now:date, _now:datetime](#_nowdate,-_now: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)
|
||||
- [_level](#_level)
|
||||
- [_referencing_ways](#_referencing_ways)
|
||||
- [_last_edit:passed_time](#_last_editpassed_time)
|
||||
- [_currency](#_currency)
|
||||
2. [ Calculating tags with Javascript ](#-calculating-tags-with-javascript-)
|
||||
- [distanceTo](#distanceto)
|
||||
- [overlapWith](#overlapwith)
|
||||
- [enclosingFeatures](#enclosingfeatures)
|
||||
- [intersectionsWith](#intersectionswith)
|
||||
- [closest](#closest)
|
||||
- [closestn](#closestn)
|
||||
- [get](#get)
|
||||
|
||||
## Metatags calculated by MapComplete
|
||||
|
||||
The following values are always calculated, by default, by MapComplete and are available automatically on all elements in every theme
|
||||
|
@ -234,4 +204,4 @@ Gets the property of the feature, parses it (as JSON) and returns it. Might retu
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [src/Logic/SimpleMetaTagger.ts](https://github.com/pietervdvn/MapComplete/blob/develop/src/Logic/SimpleMetaTagger.ts), [src/Logic/ExtraFunctions.ts](https://github.com/pietervdvn/MapComplete/blob/develop/src/Logic/ExtraFunctions.ts)
|
||||
This document is autogenerated from [src/Logic/SimpleMetaTagger.ts](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/src/Logic/SimpleMetaTagger.ts), [src/Logic/ExtraFunctions.ts](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/src/Logic/ExtraFunctions.ts)
|
||||
|
|
|
@ -39,4 +39,4 @@ This might give a reason per modified node or way | DeleteAction |
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [src/Logic/Osm/Changes.ts](https://github.com/pietervdvn/MapComplete/blob/develop/src/Logic/Osm/Changes.ts), [src/Logic/Osm/ChangesetHandler.ts](https://github.com/pietervdvn/MapComplete/blob/develop/src/Logic/Osm/ChangesetHandler.ts)
|
||||
This document is autogenerated from [src/Logic/Osm/Changes.ts](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/src/Logic/Osm/Changes.ts), [src/Logic/Osm/ChangesetHandler.ts](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/src/Logic/Osm/ChangesetHandler.ts)
|
||||
|
|
|
@ -238,6 +238,7 @@ This table gives a summary of ids, names and other metainformation. [See the onl
|
|||
| ICGC-orto25c | ICGC - Ortofoto de Catalunya 1:2.500 vigent | photo | ⭐ | Institut Cartogràfic i Geològic de Catalunya |
|
||||
| ICGC-topo | ICGC - Topogràfic de Catalunya | other | | Institut Cartogràfic i Geològic de Catalunya |
|
||||
| PNOA-Spain-TMS | PNOA Spain | photo | ⭐ | PNOA |
|
||||
| SITNA-catastro | Catastro Navarra | other | | SITNA - Gobierno de Navarra / Nafarroako Gobernua |
|
||||
| geoEuskadi-ORTO | geoEuskadiren Ortoargazkiak | photo | ⭐ | Eusko Jaurlaritza / Gobierno Vasco. geoEuskadi |
|
||||
| IDEIB | IDEIB - Ortofoto més recent de les Illes Balears | photo | ⭐ | Infraestructura de Dades Espacials de les Illes Balears |
|
||||
| hri-orto | Helsinki region orthophoto | photo | ⭐ | © Espoon, Helsingin ja Vantaan kaupungit, Kirkkonummen ja Nurmijärven kunnat sekä HSL ja HSY |
|
||||
|
@ -263,7 +264,7 @@ This table gives a summary of ids, names and other metainformation. [See the onl
|
|||
| Brest_2004 | Brest - 2004 | historicphoto | | Brest Métropole - 2004 |
|
||||
| enedis | Enedis | photo | | Enedis 2018 |
|
||||
| EMS-Orthophotographie-2022 | Eurométropole de Strasbourg - Orthophotographie 2022 | photo | ⭐ | Ville et eurométropole de Strasbourg - DataGrandEst 2022 |
|
||||
| Cadastre | Cadastre | map | | cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2021 |
|
||||
| Cadastre | Cadastre | map | | cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2022 |
|
||||
| Geolittoral-Orthophotos2000 | Géolittoral - Orthophotos 2000 | historicphoto | | Ortho Littorale 2000 - Ministère en charge de l’environnement |
|
||||
| GeolittoralV2-Orthophotos | Géolittoral V2 - Orthophotos 2011-2014 | historicphoto | | Ortho Littorale v2 - Ministère en charge de l’environnement |
|
||||
| montauban_2020 | Grand Montauban 2020 | photo | | Grand Montauban 2020 |
|
||||
|
@ -448,9 +449,7 @@ This table gives a summary of ids, names and other metainformation. [See the onl
|
|||
| German-1944_Aerial | German Aerial Imagery (1944) | historicphoto | | © Simpals SRL, Bundesarchiv - Stabsbildabteilung |
|
||||
| American-1966_Aerial | American Aerial Imagery (1966) | historicphoto | | © Simpals SRL, U.S. Geological Survey |
|
||||
| Actueel_orthoHR_WMTS | PDOK aerial imagery Beeldmateriaal.nl 8cm (WMTS) latest | photo | ⭐ | Kadaster / Beeldmateriaal.nl, CC BY 4.0 |
|
||||
| kartverket-topo4 | Kartverket topo | map | | © Kartverket |
|
||||
| kartverket-ok-1st | Kartverket Economic Maps (historic) | historicmap | | © Kartverket |
|
||||
| kartverket-sjokart | Kartverket Nautical Charts | map | | © Kartverket |
|
||||
| geovekst-nib | Norway Orthophoto | photo | ⭐ | © Geovekst |
|
||||
| geovekst-nib2 | Norway Orthophoto (more recent, less zoom) | photo | ⭐ | © Geovekst |
|
||||
| geovekst-nib-historic | Norway Orthophoto (historic) | historicphoto | | © Geovekst |
|
||||
|
@ -692,6 +691,7 @@ This table gives a summary of ids, names and other metainformation. [See the onl
|
|||
| Cook_IL_2021 | Cook County Orthoimagery 2021 | photo | | Cook County GIS |
|
||||
| Cook_IL_2022 | Cook County Orthoimagery 2022 | photo | | Cook County GIS |
|
||||
| Cook_IL_2023 | Cook County Orthoimagery 2023 | photo | | Cook County GIS |
|
||||
| Cook_IL_2024 | Cook County Orthoimagery 2024 | photo | | Cook County GIS |
|
||||
| IN_2021 | Indiana Statewide Imagery Program (2021) | photo | | Indiana Geographic Information Office |
|
||||
| IndianaMap_Latest | IndianaMap Orthoimagery - Latest Available | photo | | IndianaMap, Indiana Geographic Information Office |
|
||||
| Kansas_NG911_2014 | Kansas NG911 Orthoimagery (2014) | historicphoto | | Kansas 911 Coordinating Council |
|
||||
|
@ -892,4 +892,4 @@ This table gives a summary of ids, names and other metainformation. [See the onl
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [./public/assets/data/editor-layer-index.json](https://github.com/pietervdvn/MapComplete/blob/develop/./public/assets/data/editor-layer-index.json)
|
||||
This document is autogenerated from [./public/assets/data/editor-layer-index.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/./public/assets/data/editor-layer-index.json)
|
||||
|
|
|
@ -5,24 +5,13 @@ MapComplete supports the following keys:
|
|||
|
||||
| Key combination | Action |
|
||||
-----|----- |
|
||||
| `1` | Select the POI which is closest to the map center (crosshair). Only when in keyboard navigation is used |
|
||||
| `2` | Select the POI which is second closest element to the map center (crosshair). Only when in keyboard navigation is used |
|
||||
| `3` | Select the POI which is third closest element to the map center (crosshair). Only when in keyboard navigation is used |
|
||||
| `4` | Select the POI which is the 4th closest element to the map center (crosshair). Only when in keyboard navigation is used |
|
||||
| `5` | Select the POI which is the 5th closest element to the map center (crosshair). Only when in keyboard navigation is used |
|
||||
| `6` | Select the POI which is the 6th closest element to the map center (crosshair). Only when in keyboard navigation is used |
|
||||
| `7` | Select the POI which is the 7th closest element to the map center (crosshair). Only when in keyboard navigation is used |
|
||||
| `8` | Select the POI which is the 8th closest element to the map center (crosshair). Only when in keyboard navigation is used |
|
||||
| `B` | Opens the background layers panel |
|
||||
| `Escape` | Close the sidebar |
|
||||
| `F` | Open the favourites page |
|
||||
| `L` | Pan the map to the current location or zoom the map to the current location. Requests geopermission |
|
||||
| `M` | Set the background to a map from external sources. Toggles between the two best, available layers |
|
||||
| `O` | Set the background layer to on OpenStreetMap-based map (or disable the background raster layer) |
|
||||
| `P` | Set the background to aerial or satellite imagery. Toggles between the two best, available layers |
|
||||
| `S` | Opens the POI-layers and filter panel |
|
||||
| `Spacebar` | Select the POI which is closest to the map center (crosshair). Only when in keyboard navigation is used |
|
||||
| `ctrl+F` | Select the search bar to search locations |
|
||||
| `shift+M` | Set the background to a map from external sources. Toggles between the two best, available layers |
|
||||
| `shift+O` | Set the background layer to on OpenStreetMap-based map (or disable the background raster layer) |
|
||||
| `shift+P` | Set the background to aerial or satellite imagery. Toggles between the two best, available layers |
|
||||
|
@ -30,4 +19,4 @@ MapComplete supports the following keys:
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [src/UI/Base/Hotkeys.ts](https://github.com/pietervdvn/MapComplete/blob/develop/src/UI/Base/Hotkeys.ts)
|
||||
This document is autogenerated from [src/UI/Base/Hotkeys.ts](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/src/UI/Base/Hotkeys.ts)
|
||||
|
|
|
@ -85,4 +85,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/address/address.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/address/address.json)
|
||||
This document is autogenerated from [assets/layers/address/address.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/address/address.json)
|
||||
|
|
|
@ -191,4 +191,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/advertising/advertising.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/advertising/advertising.json)
|
||||
This document is autogenerated from [assets/layers/advertising/advertising.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/advertising/advertising.json)
|
||||
|
|
|
@ -162,4 +162,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/ghostsigns/ghostsigns.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/ghostsigns/ghostsigns.json)
|
||||
This document is autogenerated from [assets/themes/ghostsigns/ghostsigns.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/ghostsigns/ghostsigns.json)
|
||||
|
|
|
@ -121,4 +121,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/aerialway/aerialway.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/aerialway/aerialway.json)
|
||||
This document is autogenerated from [assets/layers/aerialway/aerialway.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/aerialway/aerialway.json)
|
||||
|
|
|
@ -71,4 +71,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/street_lighting/street_lighting.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/street_lighting/street_lighting.json)
|
||||
This document is autogenerated from [assets/themes/street_lighting/street_lighting.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/street_lighting/street_lighting.json)
|
||||
|
|
|
@ -340,4 +340,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/vending_machine/vending_machine.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/vending_machine/vending_machine.json)
|
||||
This document is autogenerated from [assets/themes/vending_machine/vending_machine.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/vending_machine/vending_machine.json)
|
||||
|
|
|
@ -106,4 +106,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/ambulancestation/ambulancestation.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/ambulancestation/ambulancestation.json)
|
||||
This document is autogenerated from [assets/layers/ambulancestation/ambulancestation.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/ambulancestation/ambulancestation.json)
|
||||
|
|
|
@ -164,4 +164,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/animal_shelter/animal_shelter.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/animal_shelter/animal_shelter.json)
|
||||
This document is autogenerated from [assets/layers/animal_shelter/animal_shelter.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/animal_shelter/animal_shelter.json)
|
||||
|
|
|
@ -383,4 +383,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/artwork/artwork.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/artwork/artwork.json)
|
||||
This document is autogenerated from [assets/layers/artwork/artwork.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/artwork/artwork.json)
|
||||
|
|
|
@ -386,4 +386,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/ghostsigns/ghostsigns.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/ghostsigns/ghostsigns.json)
|
||||
This document is autogenerated from [assets/themes/ghostsigns/ghostsigns.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/ghostsigns/ghostsigns.json)
|
||||
|
|
|
@ -89,4 +89,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/assembly_point/assembly_point.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/assembly_point/assembly_point.json)
|
||||
This document is autogenerated from [assets/layers/assembly_point/assembly_point.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/assembly_point/assembly_point.json)
|
||||
|
|
|
@ -167,4 +167,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/assisted_repair/assisted_repair.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/assisted_repair/assisted_repair.json)
|
||||
This document is autogenerated from [assets/layers/assisted_repair/assisted_repair.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/assisted_repair/assisted_repair.json)
|
||||
|
|
|
@ -168,4 +168,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/atm/atm.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/atm/atm.json)
|
||||
This document is autogenerated from [assets/layers/atm/atm.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/atm/atm.json)
|
||||
|
|
|
@ -86,4 +86,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/bank/bank.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bank/bank.json)
|
||||
This document is autogenerated from [assets/layers/bank/bank.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/bank/bank.json)
|
||||
|
|
|
@ -84,10 +84,6 @@ This tagrendering has labels
|
|||
-----|-----|----- |
|
||||
| open_now.0 | Now open | _isOpen=yes |
|
||||
|
||||
| id | question | osmTags |
|
||||
-----|-----|----- |
|
||||
| has_atm.0 | With an ATM | atm=yes |
|
||||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/atm/atm.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/atm/atm.json)
|
||||
This document is autogenerated from [assets/themes/atm/atm.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/atm/atm.json)
|
||||
|
|
|
@ -160,4 +160,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/barrier/barrier.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/barrier/barrier.json)
|
||||
This document is autogenerated from [assets/layers/barrier/barrier.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/barrier/barrier.json)
|
||||
|
|
|
@ -106,4 +106,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/bbq/bbq.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bbq/bbq.json)
|
||||
This document is autogenerated from [assets/layers/bbq/bbq.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/bbq/bbq.json)
|
||||
|
|
|
@ -80,4 +80,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/beehive/beehive.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/beehive/beehive.json)
|
||||
This document is autogenerated from [assets/layers/beehive/beehive.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/beehive/beehive.json)
|
||||
|
|
|
@ -296,4 +296,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/bench/bench.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bench/bench.json)
|
||||
This document is autogenerated from [assets/layers/bench/bench.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/bench/bench.json)
|
||||
|
|
|
@ -78,4 +78,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
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)
|
||||
This document is autogenerated from [assets/layers/bench_at_pt/bench_at_pt.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/bench_at_pt/bench_at_pt.json)
|
||||
|
|
|
@ -164,4 +164,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/cyclofix/cyclofix.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/cyclofix/cyclofix.json)
|
||||
This document is autogenerated from [assets/themes/cyclofix/cyclofix.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/cyclofix/cyclofix.json)
|
||||
|
|
|
@ -124,4 +124,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/bicycle_counter/bicycle_counter.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bicycle_counter/bicycle_counter.json)
|
||||
This document is autogenerated from [assets/layers/bicycle_counter/bicycle_counter.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/bicycle_counter/bicycle_counter.json)
|
||||
|
|
|
@ -162,4 +162,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
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)
|
||||
This document is autogenerated from [assets/layers/bicycle_library/bicycle_library.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/bicycle_library/bicycle_library.json)
|
||||
|
|
|
@ -279,4 +279,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
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)
|
||||
This document is autogenerated from [assets/layers/bicycle_rental/bicycle_rental.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/bicycle_rental/bicycle_rental.json)
|
||||
|
|
|
@ -267,4 +267,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/cyclofix/cyclofix.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/cyclofix/cyclofix.json)
|
||||
This document is autogenerated from [assets/themes/cyclofix/cyclofix.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/cyclofix/cyclofix.json)
|
||||
|
|
|
@ -163,4 +163,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
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)
|
||||
This document is autogenerated from [assets/layers/bike_cafe/bike_cafe.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/bike_cafe/bike_cafe.json)
|
||||
|
|
|
@ -121,4 +121,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
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)
|
||||
This document is autogenerated from [assets/layers/bike_cleaning/bike_cleaning.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/bike_cleaning/bike_cleaning.json)
|
||||
|
|
|
@ -235,4 +235,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
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)
|
||||
This document is autogenerated from [assets/layers/bike_parking/bike_parking.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/bike_parking/bike_parking.json)
|
||||
|
|
|
@ -252,4 +252,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
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)
|
||||
This document is autogenerated from [assets/layers/bike_repair_station/bike_repair_station.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/bike_repair_station/bike_repair_station.json)
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -124,4 +124,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
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)
|
||||
This document is autogenerated from [assets/layers/bike_themed_object/bike_themed_object.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/bike_themed_object/bike_themed_object.json)
|
||||
|
|
|
@ -88,4 +88,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/binocular/binocular.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/binocular/binocular.json)
|
||||
This document is autogenerated from [assets/layers/binocular/binocular.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/binocular/binocular.json)
|
||||
|
|
|
@ -116,4 +116,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/birdhide/birdhide.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/birdhide/birdhide.json)
|
||||
This document is autogenerated from [assets/layers/birdhide/birdhide.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/birdhide/birdhide.json)
|
||||
|
|
|
@ -138,4 +138,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/brothel/brothel.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/brothel/brothel.json)
|
||||
This document is autogenerated from [assets/layers/brothel/brothel.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/brothel/brothel.json)
|
||||
|
|
|
@ -323,4 +323,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
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)
|
||||
This document is autogenerated from [assets/layers/cafe_pub/cafe_pub.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/cafe_pub/cafe_pub.json)
|
||||
|
|
|
@ -128,4 +128,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/car_rental/car_rental.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/car_rental/car_rental.json)
|
||||
This document is autogenerated from [assets/layers/car_rental/car_rental.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/car_rental/car_rental.json)
|
||||
|
|
|
@ -169,4 +169,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/caravansites/caravansites.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/caravansites/caravansites.json)
|
||||
This document is autogenerated from [assets/layers/caravansites/caravansites.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/caravansites/caravansites.json)
|
||||
|
|
|
@ -1205,4 +1205,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/charge_point/charge_point.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/charge_point/charge_point.json)
|
||||
This document is autogenerated from [assets/layers/charge_point/charge_point.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/charge_point/charge_point.json)
|
||||
|
|
|
@ -1470,4 +1470,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/charging_station/charging_station.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/charging_station/charging_station.json)
|
||||
This document is autogenerated from [assets/layers/charging_station/charging_station.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/charging_station/charging_station.json)
|
||||
|
|
|
@ -1424,4 +1424,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/cyclofix/cyclofix.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/cyclofix/cyclofix.json)
|
||||
This document is autogenerated from [assets/themes/cyclofix/cyclofix.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/cyclofix/cyclofix.json)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
# kindergarten_childcare
|
||||
# childcare
|
||||
|
||||
Shows kindergartens and preschools. Both are grouped in one layer, as they are regularly confused with each other
|
||||
|
||||
|
@ -12,7 +12,6 @@ Shows kindergartens and preschools. Both are grouped in one layer, as they are r
|
|||
2. [Presets](#presets)
|
||||
3. [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
4. [Supported attributes](#supported-attributes)
|
||||
- [childcare-type](#childcare-type)
|
||||
- [name](#name)
|
||||
- [website](#website)
|
||||
- [email](#email)
|
||||
|
@ -35,18 +34,13 @@ Shows kindergartens and preschools. Both are grouped in one layer, as they are r
|
|||
|
||||
The following options to create new points are included:
|
||||
|
||||
- **a kindergarten** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dkindergarten' target='_blank'>kindergarten</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:isced:level' target='_blank'>isced:level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:isced:level%3D0' target='_blank'>0</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:isced:2011:level' target='_blank'>isced:2011:level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:isced:2011:level%3Dearly_childhood' target='_blank'>early_childhood</a>
|
||||
- **a childcare** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dkindergarten' target='_blank'>kindergarten</a>
|
||||
- **a childcare** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dchildcare' target='_blank'>childcare</a>
|
||||
|
||||
## Basic tags for this layer
|
||||
|
||||
Elements must match **any** of the following expressions:
|
||||
Elements must match the expression **<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dchildcare' target='_blank'>childcare</a>**
|
||||
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dchildcare' target='_blank'>childcare</a>
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dkindergarten' target='_blank'>kindergarten</a>
|
||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:isced:level:2011' target='_blank'>isced:level:2011</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:isced:level:2011%3Dearly_childhood' target='_blank'>early_childhood</a>
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22childcare%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22kindergarten%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22isced%3Alevel%3A2011%22%3D%22early_childhood%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22childcare%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
|
||||
## Supported attributes
|
||||
|
||||
|
@ -54,7 +48,6 @@ Elements must match **any** of the following expressions:
|
|||
|
||||
| attribute | type | values which are supported by this layer |
|
||||
-----|-----|----- |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/amenity#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/amenity/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [kindergarten](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dkindergarten) [childcare](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dchildcare) |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/name#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/name/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/website#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/website/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/email#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/email/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | |
|
||||
|
@ -62,13 +55,6 @@ Elements must match **any** of the following expressions:
|
|||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/opening_hours#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/opening_hours/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | |
|
||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [pnat](../SpecialInputElements.md#pnat) | |
|
||||
|
||||
### childcare-type
|
||||
|
||||
The question is `What type of facility is this?`
|
||||
|
||||
- *This is a kindergarten (also known as <i>preschool</i>) where small kids receive early education.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dkindergarten' target='_blank'>kindergarten</a>
|
||||
- *This is a childcare facility, such as a nursery or daycare where small kids are looked after. They do not offer an education and are ofter run as private businesses* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dchildcare' target='_blank'>childcare</a>
|
||||
|
||||
### name
|
||||
|
||||
The question is `What is the name of this facility?`
|
||||
|
@ -150,4 +136,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/kindergarten_childcare/kindergarten_childcare.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/kindergarten_childcare/kindergarten_childcare.json)
|
||||
This document is autogenerated from [assets/layers/childcare/childcare.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/childcare/childcare.json)
|
|
@ -119,4 +119,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/cinema/cinema.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/cinema/cinema.json)
|
||||
This document is autogenerated from [assets/layers/cinema/cinema.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/cinema/cinema.json)
|
||||
|
|
|
@ -161,4 +161,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/climbing_area/climbing_area.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing_area/climbing_area.json)
|
||||
This document is autogenerated from [assets/layers/climbing_area/climbing_area.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/climbing_area/climbing_area.json)
|
||||
|
|
|
@ -125,4 +125,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/climbing_club/climbing_club.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing_club/climbing_club.json)
|
||||
This document is autogenerated from [assets/layers/climbing_club/climbing_club.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/climbing_club/climbing_club.json)
|
||||
|
|
|
@ -367,4 +367,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/climbing_gym/climbing_gym.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing_gym/climbing_gym.json)
|
||||
This document is autogenerated from [assets/layers/climbing_gym/climbing_gym.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/climbing_gym/climbing_gym.json)
|
||||
|
|
|
@ -63,4 +63,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/climbing_opportunity/climbing_opportunity.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing_opportunity/climbing_opportunity.json)
|
||||
This document is autogenerated from [assets/layers/climbing_opportunity/climbing_opportunity.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/climbing_opportunity/climbing_opportunity.json)
|
||||
|
|
|
@ -113,4 +113,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/climbing_route/climbing_route.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing_route/climbing_route.json)
|
||||
This document is autogenerated from [assets/layers/climbing_route/climbing_route.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/climbing_route/climbing_route.json)
|
||||
|
|
|
@ -181,4 +181,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/clock/clock.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/clock/clock.json)
|
||||
This document is autogenerated from [assets/layers/clock/clock.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/clock/clock.json)
|
||||
|
|
|
@ -51,4 +51,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
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)
|
||||
This document is autogenerated from [assets/layers/crab_address/crab_address.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/crab_address/crab_address.json)
|
||||
|
|
|
@ -234,4 +234,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/crossings/crossings.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/crossings/crossings.json)
|
||||
This document is autogenerated from [assets/layers/crossings/crossings.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/crossings/crossings.json)
|
||||
|
|
|
@ -229,4 +229,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/kerbs_and_crossings/kerbs_and_crossings.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/kerbs_and_crossings/kerbs_and_crossings.json)
|
||||
This document is autogenerated from [assets/themes/kerbs_and_crossings/kerbs_and_crossings.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/kerbs_and_crossings/kerbs_and_crossings.json)
|
||||
|
|
|
@ -107,4 +107,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/etymology/etymology.json)
|
||||
This document is autogenerated from [assets/themes/etymology/etymology.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/etymology/etymology.json)
|
||||
|
|
|
@ -130,4 +130,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/cycle_highways/cycle_highways.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/cycle_highways/cycle_highways.json)
|
||||
This document is autogenerated from [assets/layers/cycle_highways/cycle_highways.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/cycle_highways/cycle_highways.json)
|
||||
|
|
|
@ -312,4 +312,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
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)
|
||||
This document is autogenerated from [assets/layers/cycleways_and_roads/cycleways_and_roads.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/cycleways_and_roads/cycleways_and_roads.json)
|
||||
|
|
|
@ -96,4 +96,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/cyclist_waiting_aid/cyclist_waiting_aid.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/cyclist_waiting_aid/cyclist_waiting_aid.json)
|
||||
This document is autogenerated from [assets/layers/cyclist_waiting_aid/cyclist_waiting_aid.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/cyclist_waiting_aid/cyclist_waiting_aid.json)
|
||||
|
|
|
@ -224,4 +224,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/defibrillator/defibrillator.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/defibrillator/defibrillator.json)
|
||||
This document is autogenerated from [assets/layers/defibrillator/defibrillator.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/defibrillator/defibrillator.json)
|
||||
|
|
|
@ -133,4 +133,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/dentist/dentist.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/dentist/dentist.json)
|
||||
This document is autogenerated from [assets/layers/dentist/dentist.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/dentist/dentist.json)
|
||||
|
|
|
@ -41,4 +41,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/direction/direction.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/direction/direction.json)
|
||||
This document is autogenerated from [assets/layers/direction/direction.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/direction/direction.json)
|
||||
|
|
|
@ -84,4 +84,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/disaster_response/disaster_response.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/disaster_response/disaster_response.json)
|
||||
This document is autogenerated from [assets/layers/disaster_response/disaster_response.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/disaster_response/disaster_response.json)
|
||||
|
|
|
@ -157,4 +157,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/doctors/doctors.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/doctors/doctors.json)
|
||||
This document is autogenerated from [assets/layers/doctors/doctors.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/doctors/doctors.json)
|
||||
|
|
73
Docs/Layers/dog_toilet.md
Normal file
73
Docs/Layers/dog_toilet.md
Normal file
|
@ -0,0 +1,73 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
# dog_toilet
|
||||
|
||||
A dog toilet is a facility designated for dogs to urinate and excrete. This can be a designated, signposted patch of grass, a sand pit or a fenced area.
|
||||
|
||||
- This layer is shown at zoomlevel **13** and higher
|
||||
|
||||
## Table of contents
|
||||
|
||||
1. [Themes using this layer](#themes-using-this-layer)
|
||||
2. [Presets](#presets)
|
||||
3. [Basic tags for this layer](#basic-tags-for-this-layer)
|
||||
4. [Supported attributes](#supported-attributes)
|
||||
- [images](#images)
|
||||
- [barrier](#barrier)
|
||||
- [leftover-questions](#leftover-questions)
|
||||
- [move-button](#move-button)
|
||||
- [lod](#lod)
|
||||
|
||||
## Themes using this layer
|
||||
|
||||
- [personal](https://mapcomplete.org/personal)
|
||||
- [pets](https://mapcomplete.org/pets)
|
||||
|
||||
## Presets
|
||||
|
||||
The following options to create new points are included:
|
||||
|
||||
- **a dog toilet** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Ddog_toilet' target='_blank'>dog_toilet</a>
|
||||
|
||||
## Basic tags for this layer
|
||||
|
||||
Elements must match the expression **<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Ddog_toilet' target='_blank'>dog_toilet</a>**
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22dog_toilet%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
|
||||
## Supported attributes
|
||||
|
||||
### images
|
||||
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
*{image_carousel()}{image_upload()}*
|
||||
|
||||
### barrier
|
||||
|
||||
The question is `Is this dog toilet fenced?`
|
||||
|
||||
- *There is a fence around this dog toilet* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dfence' target='_blank'>fence</a>
|
||||
- *There is a hedge around this dog toilet* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dhedge' target='_blank'>hedge</a>
|
||||
- *There is a barrier around this dog toilet* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dyes' target='_blank'>yes</a>
|
||||
- *There is no barrier around this dog toilet* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:not:barrier' target='_blank'>not:barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:barrier%3Dfence' target='_blank'>fence</a>
|
||||
|
||||
### leftover-questions
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
*{questions( ,)}*
|
||||
|
||||
### move-button
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
*{move_button()}*
|
||||
|
||||
### lod
|
||||
|
||||
_This tagrendering has no question and is thus read-only_
|
||||
*{linked_data_from_website()}*
|
||||
|
||||
This tagrendering has labels
|
||||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/dog_toilet/dog_toilet.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/dog_toilet/dog_toilet.json)
|
|
@ -136,4 +136,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/dogpark/dogpark.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/dogpark/dogpark.json)
|
||||
This document is autogenerated from [assets/layers/dogpark/dogpark.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/dogpark/dogpark.json)
|
||||
|
|
|
@ -249,4 +249,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
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)
|
||||
This document is autogenerated from [assets/layers/drinking_water/drinking_water.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/drinking_water/drinking_water.json)
|
||||
|
|
|
@ -131,4 +131,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/dumpstations/dumpstations.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/dumpstations/dumpstations.json)
|
||||
This document is autogenerated from [assets/layers/dumpstations/dumpstations.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/dumpstations/dumpstations.json)
|
||||
|
|
|
@ -107,4 +107,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/etymology/etymology.json)
|
||||
This document is autogenerated from [assets/themes/etymology/etymology.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/etymology/etymology.json)
|
||||
|
|
|
@ -174,4 +174,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/elevator/elevator.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/elevator/elevator.json)
|
||||
This document is autogenerated from [assets/layers/elevator/elevator.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/elevator/elevator.json)
|
||||
|
|
|
@ -252,4 +252,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/elongated_coin/elongated_coin.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/elongated_coin/elongated_coin.json)
|
||||
This document is autogenerated from [assets/layers/elongated_coin/elongated_coin.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/elongated_coin/elongated_coin.json)
|
||||
|
|
|
@ -164,4 +164,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/entrance/entrance.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/entrance/entrance.json)
|
||||
This document is autogenerated from [assets/layers/entrance/entrance.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/entrance/entrance.json)
|
||||
|
|
|
@ -106,4 +106,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/etymology/etymology.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/etymology/etymology.json)
|
||||
This document is autogenerated from [assets/layers/etymology/etymology.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/etymology/etymology.json)
|
||||
|
|
|
@ -76,4 +76,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/extinguisher/extinguisher.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/extinguisher/extinguisher.json)
|
||||
This document is autogenerated from [assets/layers/extinguisher/extinguisher.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/extinguisher/extinguisher.json)
|
||||
|
|
|
@ -134,4 +134,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/facadegardens/facadegardens.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/facadegardens/facadegardens.json)
|
||||
This document is autogenerated from [assets/themes/facadegardens/facadegardens.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/facadegardens/facadegardens.json)
|
||||
|
|
|
@ -96,4 +96,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/cyclestreets/cyclestreets.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/cyclestreets/cyclestreets.json)
|
||||
This document is autogenerated from [assets/themes/cyclestreets/cyclestreets.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/cyclestreets/cyclestreets.json)
|
||||
|
|
|
@ -108,4 +108,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
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)
|
||||
This document is autogenerated from [assets/layers/fire_station/fire_station.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/fire_station/fire_station.json)
|
||||
|
|
|
@ -95,4 +95,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/firepit/firepit.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/firepit/firepit.json)
|
||||
This document is autogenerated from [assets/layers/firepit/firepit.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/firepit/firepit.json)
|
||||
|
|
|
@ -172,4 +172,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/fitness_centre/fitness_centre.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/fitness_centre/fitness_centre.json)
|
||||
This document is autogenerated from [assets/layers/fitness_centre/fitness_centre.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/fitness_centre/fitness_centre.json)
|
||||
|
|
|
@ -132,4 +132,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/fitness_station/fitness_station.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/fitness_station/fitness_station.json)
|
||||
This document is autogenerated from [assets/layers/fitness_station/fitness_station.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/fitness_station/fitness_station.json)
|
||||
|
|
|
@ -72,4 +72,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/fixme/fixme.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/fixme/fixme.json)
|
||||
This document is autogenerated from [assets/layers/fixme/fixme.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/fixme/fixme.json)
|
||||
|
|
|
@ -624,4 +624,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/food/food.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/food/food.json)
|
||||
This document is autogenerated from [assets/layers/food/food.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/food/food.json)
|
||||
|
|
|
@ -135,4 +135,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/food_courts/food_courts.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/food_courts/food_courts.json)
|
||||
This document is autogenerated from [assets/layers/food_courts/food_courts.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/food_courts/food_courts.json)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
# dogfoodb
|
||||
# food_dog_friendly
|
||||
|
||||
This layer is based on [food](../Layers/food.md)
|
||||
|
||||
|
@ -69,10 +69,10 @@ A layer showing restaurants and fast-food amenities (with a special rendering fo
|
|||
|
||||
Elements must match **all** of the following expressions:
|
||||
|
||||
0. <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant' target='_blank'>restaurant</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe' target='_blank'>cafe</a>
|
||||
0. <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>
|
||||
1. <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed' target='_blank'>unleashed</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed' target='_blank'>leashed</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:dog' target='_blank'>dog</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes' target='_blank'>yes</a>
|
||||
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22dog%22%3D%22unleashed%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22dog%22%3D%22leashed%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22dog%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B%22dog%22%3D%22unleashed%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B%22dog%22%3D%22leashed%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B%22dog%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22fast_food%22%5D%5B%22dog%22%3D%22unleashed%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22fast_food%22%5D%5B%22dog%22%3D%22leashed%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22fast_food%22%5D%5B%22dog%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22dog%22%3D%22unleashed%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22dog%22%3D%22leashed%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22dog%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||
|
||||
## Supported attributes
|
||||
|
||||
|
@ -609,4 +609,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/pets/pets.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/pets/pets.json)
|
||||
This document is autogenerated from [assets/themes/pets/pets.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/pets/pets.json)
|
|
@ -610,4 +610,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/glutenfree/glutenfree.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/glutenfree/glutenfree.json)
|
||||
This document is autogenerated from [assets/themes/glutenfree/glutenfree.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/glutenfree/glutenfree.json)
|
||||
|
|
|
@ -610,4 +610,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/lactosefree/lactosefree.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/lactosefree/lactosefree.json)
|
||||
This document is autogenerated from [assets/themes/lactosefree/lactosefree.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/lactosefree/lactosefree.json)
|
||||
|
|
|
@ -615,4 +615,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/fritures/fritures.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/fritures/fritures.json)
|
||||
This document is autogenerated from [assets/themes/fritures/fritures.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/fritures/fritures.json)
|
||||
|
|
|
@ -118,4 +118,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
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)
|
||||
This document is autogenerated from [assets/layers/ghost_bike/ghost_bike.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/ghost_bike/ghost_bike.json)
|
||||
|
|
|
@ -113,4 +113,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/ghostsign/ghostsign.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/ghostsign/ghostsign.json)
|
||||
This document is autogenerated from [assets/layers/ghostsign/ghostsign.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/ghostsign/ghostsign.json)
|
||||
|
|
|
@ -109,4 +109,4 @@ This tagrendering has labels
|
|||
`added_by_default`
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/governments/governments.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/governments/governments.json)
|
||||
This document is autogenerated from [assets/layers/governments/governments.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/governments/governments.json)
|
||||
|
|
|
@ -89,4 +89,4 @@ This tagrendering has labels
|
|||
|
||||
|
||||
|
||||
This document is autogenerated from [assets/layers/grave/grave.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/grave/grave.json)
|
||||
This document is autogenerated from [assets/layers/grave/grave.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/grave/grave.json)
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue